diff --git a/unpacked.ttslua b/unpacked.ttslua index 5f312facc..11b05d07d 100644 --- a/unpacked.ttslua +++ b/unpacked.ttslua @@ -41,6 +41,1348 @@ local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = ( return require, loaded, register, modules end)(nil) +__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local BlessCurseManagerApi = {} + local MANAGER_GUID = "5933fb" + + -- removes all taken tokens and resets the counts + BlessCurseManagerApi.removeTakenTokensAndReset = function() + local BlessCurseManager = getObjectFromGUID(MANAGER_GUID) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10) + Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.sealedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("sealedToken", { type = type, guid = guid }) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.releasedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("releasedToken", { type = type, guid = guid }) + end + + -- broadcasts the current status for bless/curse tokens + ---@param playerColor String Color of the player to show the broadcast to + BlessCurseManagerApi.broadcastStatus = function(playerColor) + getObjectFromGUID(MANAGER_GUID).call("broadcastStatus", playerColor) + end + + -- adds Wendy's menu to the hovered card (allows sealing of tokens) + ---@param color String Color of the player to show the broadcast to + BlessCurseManagerApi.addWendysMenu = function(playerColor, hoveredObject) + getObjectFromGUID(MANAGER_GUID).call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject }) + end + + return BlessCurseManagerApi +end +end) +__bundle_register("core/MythosAreaApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local MythosAreaApi = {} + local MYTHOS_AREA_GUID = "9f334f" + + -- returns the chaos token metadata (if provided through scenario reference card) + MythosAreaApi.returnTokenData = function() + return getObjectFromGUID("9f334f").call("returnTokenData") + end + + return MythosAreaApi +end +end) +__bundle_register("core/PlayAreaApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local PlayAreaApi = { } + + local PLAY_AREA_GUID = "721ba2" + + -- Returns the current value of the investigator counter from the playmat + ---@return Integer. Number of investigators currently set on the counter + PlayAreaApi.getInvestigatorCount = function() + return getObjectFromGUID(PLAY_AREA_GUID).call("getInvestigatorCount") + end + + -- Move all contents on the play area (cards, tokens, etc) one slot in the given direction. Certain + -- fixed objects will be ignored, as will anything the player has tagged with + -- 'displacement_excluded' + ---@param playerColor Color of the player requesting the shift. Used solely to send an error + --- message in the unlikely case that the scripting zone has been deleted + PlayAreaApi.shiftContentsUp = function(playerColor) + return getObjectFromGUID(PLAY_AREA_GUID).call("shiftContentsUp", playerColor) + end + + PlayAreaApi.shiftContentsDown = function(playerColor) + return getObjectFromGUID(PLAY_AREA_GUID).call("shiftContentsDown", playerColor) + end + + PlayAreaApi.shiftContentsLeft = function(playerColor) + return getObjectFromGUID(PLAY_AREA_GUID).call("shiftContentsLeft", playerColor) + end + + PlayAreaApi.shiftContentsRight = function(playerColor) + return getObjectFromGUID(PLAY_AREA_GUID).call("shiftContentsRight", playerColor) + end + + -- Reset the play area's tracking of which cards have had tokens spawned. + PlayAreaApi.resetSpawnedCards = function() + return getObjectFromGUID(PLAY_AREA_GUID).call("resetSpawnedCards") + end + + -- Event to be called when the current scenario has changed. + ---@param scenarioName Name of the new scenario + PlayAreaApi.onScenarioChanged = function(scenarioName) + getObjectFromGUID(PLAY_AREA_GUID).call("onScenarioChanged", scenarioName) + end + + -- Sets this playmat's snap points to limit snapping to locations or not. + -- If matchTypes is false, snap points will be reset to snap all cards. + ---@param matchTypes Boolean Whether snap points should only snap for the matching card types. + PlayAreaApi.setLimitSnapsByType = function(matchCardTypes) + getObjectFromGUID(PLAY_AREA_GUID).call("setLimitSnapsByType", matchCardTypes) + end + + -- Receiver for the Global tryObjectEnterContainer event. Used to clear vector lines from dragged + -- cards before they're destroyed by entering the container + PlayAreaApi.tryObjectEnterContainer = function(container, object) + getObjectFromGUID(PLAY_AREA_GUID).call("tryObjectEnterContainer", + { container = container, object = object }) + end + + -- counts the VP on locations in the play area + PlayAreaApi.countVP = function() + return getObjectFromGUID(PLAY_AREA_GUID).call("countVP") + end + + -- highlights all locations in the play area without metadata + ---@param state Boolean True if highlighting should be enabled + PlayAreaApi.highlightMissingData = function(state) + return getObjectFromGUID(PLAY_AREA_GUID).call("highlightMissingData", state) + end + + -- highlights all locations in the play area with VP + ---@param state Boolean True if highlighting should be enabled + PlayAreaApi.highlightCountedVP = function(state) + return getObjectFromGUID(PLAY_AREA_GUID).call("highlightCountedVP", state) + end + + -- Checks if an object is in the play area (returns true or false) + PlayAreaApi.isInPlayArea = function(object) + return getObjectFromGUID(PLAY_AREA_GUID).call("isInPlayArea", object) + end + + return PlayAreaApi +end +end) +__bundle_register("core/SoundCubeApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local SoundCubeApi = {} + + -- this table links the name of a trigger effect to its index + local soundIndices = { + ["Vacuum"] = 0, + ["Deep Bell"] = 1, + ["Dark Souls"] = 2 + } + + function playTriggerEffect(index) + getObjectsWithTag("SoundCube")[1].AssetBundle.playTriggerEffect(index) + end + + -- plays the by name requested sound + ---@param soundName String Name of the sound to play + SoundCubeApi.playSoundByName = function(soundName) + playTriggerEffect(soundIndices[soundName]) + end + + return SoundCubeApi +end +end) +__bundle_register("core/token/TokenSpawnTrackerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenSpawnTracker = { } + + local SPAWN_TRACKER_GUID = "e3ffc9" + + TokenSpawnTracker.hasSpawnedTokens = function(cardGuid) + return getObjectFromGUID(SPAWN_TRACKER_GUID).call("hasSpawnedTokens", cardGuid) + end + + TokenSpawnTracker.markTokensSpawned = function(cardGuid) + return getObjectFromGUID(SPAWN_TRACKER_GUID).call("markTokensSpawned", cardGuid) + end + + TokenSpawnTracker.resetTokensSpawned = function(cardGuid) + return getObjectFromGUID(SPAWN_TRACKER_GUID).call("resetTokensSpawned", cardGuid) + end + + TokenSpawnTracker.resetAllAssetAndEvents = function() + return getObjectFromGUID(SPAWN_TRACKER_GUID).call("resetAllAssetAndEvents") + end + + TokenSpawnTracker.resetAllLocations = function() + return getObjectFromGUID(SPAWN_TRACKER_GUID).call("resetAllLocations") + end + + TokenSpawnTracker.resetAll = function() + return getObjectFromGUID(SPAWN_TRACKER_GUID).call("resetAll") + end + + return TokenSpawnTracker +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/Global") +end) +__bundle_register("core/Global", function(require, _LOADED, __bundle_register, __bundle_modules) +--------------------------------------------------------- +-- general setup +--------------------------------------------------------- + +ENCOUNTER_DECK_POS = {-3.93, 1, 5.76} +ENCOUNTER_DECK_DISCARD_POSITION = {-3.85, 1, 10.38} + +-- optionPanel data +optionPanel = {} + +-- GUID of data helper +DATA_HELPER_GUID = "708279" + +-- GUIDs that will not be interactable (e.g. parts of the table) +local NOT_INTERACTABLE = { + "6161b4", -- Decoration-Map + "721ba2", -- PlayArea + "9f334f", -- MythosArea + "463022", -- Panel behind tentacle stand + "f182ee", -- InvestigatorCount + "7bff34", -- Tentacle stand + "8646eb", -- horizontal border left + "75937e", -- horizontal border right + "612072", -- vertical border left + "975c39", -- vertical border right +} + +local chaosTokens = {} +local chaosTokensLastMat = nil +local IS_RESHUFFLING = false +local bagSearchers = {} +local MAT_COLORS = {"White", "Orange", "Green", "Red"} +local hideTitleSplashWaitFunctionId = nil +local playmatApi = require("playermat/PlaymatApi") +local tokenManager = require("core/token/TokenManager") +local playAreaAPI = require("core/PlayAreaApi") +local soundCubeApi = require("core/SoundCubeApi") +local mythosAreaApi = require("core/MythosAreaApi") +local tokenArrangerApi = require("accessories/TokenArrangerApi") +local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi") + +-- online functionality related variables +local MOD_VERSION = "3.1.0" +local SOURCE_REPO = 'https://raw.githubusercontent.com/chr1z93/loadable-objects/main' +local library, requestObj, modMeta, notificationVisible +local acknowledgedUpgradeVersions = {} + +--------------------------------------------------------- +-- data for tokens +--------------------------------------------------------- + +TOKEN_DATA = { + damage = {image = "http://cloud-3.steamusercontent.com/ugc/1758068501357115146/903D11AAE7BD5C254C8DC136E9202EE516289DEA/", scale = {0.17, 0.17, 0.17}}, + horror = {image = "http://cloud-3.steamusercontent.com/ugc/1758068501357163535/6D9E0756503664D65BDB384656AC6D4BD713F5FC/", scale = {0.17, 0.17, 0.17}}, + resource = {image = "http://cloud-3.steamusercontent.com/ugc/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/", scale = {0.17, 0.17, 0.17}}, + doom = {image = "https://i.imgur.com/EoL7yaZ.png", scale = {0.17, 0.17, 0.17}}, + clue = {image = "http://cloud-3.steamusercontent.com/ugc/1758068501357164917/1D06F1DC4D6888B6F57124BD2AFE20D0B0DA15A8/", scale = {0.15, 0.15, 0.15}} +} + +ID_URL_MAP = { + ['blue'] = {name = "Elder Sign", url = 'https://i.imgur.com/nEmqjmj.png'}, + ['p1'] = {name = "+1", url = 'https://i.imgur.com/uIx8jbY.png'}, + ['0'] = {name = "0", url = 'https://i.imgur.com/btEtVfd.png'}, + ['m1'] = {name = "-1", url = 'https://i.imgur.com/w3XbrCC.png'}, + ['m2'] = {name = "-2", url = 'https://i.imgur.com/bfTg2hb.png'}, + ['m3'] = {name = "-3", url = 'https://i.imgur.com/yfs8gHq.png'}, + ['m4'] = {name = "-4", url = 'https://i.imgur.com/qrgGQRD.png'}, + ['m5'] = {name = "-5", url = 'https://i.imgur.com/3Ym1IeG.png'}, + ['m6'] = {name = "-6", url = 'https://i.imgur.com/c9qdSzS.png'}, + ['m7'] = {name = "-7", url = 'https://i.imgur.com/4WRD42n.png'}, + ['m8'] = {name = "-8", url = 'https://i.imgur.com/9t3rPTQ.png'}, + ['skull'] = {name = "Skull", url = 'https://i.imgur.com/stbBxtx.png'}, + ['cultist'] = {name = "Cultist", url = 'https://i.imgur.com/VzhJJaH.png'}, + ['tablet'] = {name = "Tablet", url = 'https://i.imgur.com/1plY463.png'}, + ['elder'] = {name = "Elder Thing", url = 'https://i.imgur.com/ttnspKt.png'}, + ['red'] = {name = "Auto-fail", url = 'https://i.imgur.com/lns4fhz.png'}, + ['bless'] = {name = "Bless", url = 'http://cloud-3.steamusercontent.com/ugc/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/'}, + ['curse'] = {name = "Curse", url = 'http://cloud-3.steamusercontent.com/ugc/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/'}, + ['frost'] = {name = "Frost", url = 'http://cloud-3.steamusercontent.com/ugc/1858293462583104677/195F93C063A8881B805CE2FD4767A9718B27B6AE/'} +} + +--------------------------------------------------------- +-- data for chaos token stat tracker +--------------------------------------------------------- + +local MAT_GUID_TO_COLOR = { + ["Overall"] = "Overall", + ["8b081b"] = "White", + ["bd0ff4"] = "Orange", + ["383d8b"] = "Green", + ["0840d5"] = "Red" +} + +local tokenDrawingStats = { + ["Overall"] = {}, + ["8b081b"] = {}, + ["bd0ff4"] = {}, + ["383d8b"] = {}, + ["0840d5"] = {} +} + +--------------------------------------------------------- +-- general code +--------------------------------------------------------- + +-- saving state of optionPanel to restore later +function onSave() return JSON.encode({ optionPanel = optionPanel, acknowledgedUpgradeVersions = acknowledgedUpgradeVersions }) end + +function onLoad(savedData) + if savedData then + loadedData = JSON.decode(savedData) + optionPanel = loadedData.optionPanel + acknowledgedUpgradeVersions = loadedData.acknowledgedUpgradeVersions + updateOptionPanelState() + else + print("Saved state could not be found!") + end + + for _, guid in ipairs(NOT_INTERACTABLE) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.interactable = false end + end + + getModVersion() + math.randomseed(os.time()) +end + +--------------------------------------------------------- +-- encounter card drawing +--------------------------------------------------------- + +function isDeck(x) return x.tag == 'Deck' end + +function isCardOrDeck(x) return x.tag == 'Card' or x.tag == 'Deck' end + +-- Event hook for any object search. When chaos tokens are manipulated while the chaos bag +-- container is being searched, a TTS bug can cause tokens to duplicate or vanish. We lock the +-- chaos bag during search operations to avoid this. +function onObjectSearchStart(object, playerColor) + chaosbag = findChaosBag() + if object == chaosbag then + bagSearchers[playerColor] = true + end +end + +-- Event hook for any object search. When chaos tokens are manipulated while the chaos bag +-- container is being searched, a TTS bug can cause tokens to duplicate or vanish. We lock the +-- chaos bag during search operations to avoid this. +function onObjectSearchEnd(object, playerColor) + chaosbag = findChaosBag() + if object == chaosbag then + bagSearchers[playerColor] = nil + end +end + +-- Pass object enter container events to the PlayArea to clear vector lines from dragged cards. +-- This requires the try method as cards won't exist any more after they enter a deck, so the lines +-- can't be cleared. +function tryObjectEnterContainer(container, object) + playAreaAPI.tryObjectEnterContainer(container, object) + return true +end + +function drawEncountercard(params) + local position = params[1] + local rotation = params[2] + local alwaysFaceUp = params[3] + local card + local items = findInRadiusBy(ENCOUNTER_DECK_POS, 4, isCardOrDeck) + if #items > 0 then + for _, v in ipairs(items) do + if v.tag == 'Deck' then + card = v.takeObject({index = 0}) + break + end + end + -- we didn't find the deck so just pull the first thing we did find + if card == nil then card = items[1] end + actualEncounterCardDraw(card, params) + else + -- nothing here, time to reshuffle + reshuffleEncounterDeck(params) + end +end + +function actualEncounterCardDraw(card, params) + local position = params[1] + local rotation = params[2] + local alwaysFaceUp = params[3] + local faceUpRotation = 0 + if not alwaysFaceUp then + local metadata = JSON.decode(card.getGMNotes()) or {} + if metadata.hidden or getObjectFromGUID(DATA_HELPER_GUID).call('checkHiddenCard', card.getName()) then + faceUpRotation = 180 + end + end + card.setPositionSmooth(position, false, false) + card.setRotationSmooth({0, rotation.y, faceUpRotation}, false, false) +end + +function reshuffleEncounterDeck(params) + -- finishes moving the deck back and draws a card + local function move(deck) + deck.setPositionSmooth({ENCOUNTER_DECK_POS[1], ENCOUNTER_DECK_POS[2] + 2, ENCOUNTER_DECK_POS[3]}, false, true) + actualEncounterCardDraw(deck.takeObject({index=0}), params) + Wait.time(function() IS_RESHUFFLING = false end, 1) + end + -- bail out if we're mid reshuffle + if IS_RESHUFFLING then return end + local discarded = findInRadiusBy(ENCOUNTER_DECK_DISCARD_POSITION, 4, isDeck) + if #discarded > 0 then + IS_RESHUFFLING = true + local deck = discarded[1] + if not deck.is_face_down then deck.flip() end + deck.shuffle() + Wait.time(|| move(deck), 0.3) + else + printToAll("Couldn't find encounter discard pile to reshuffle.", {1, 0, 0}) + end +end + +function findInRadiusBy(pos, radius, filter) + local objList = Physics.cast({ + origin = pos, + direction = {0, 1, 0}, + type = 2, + size = {radius, radius, radius}, + max_distance = 0 + }) + + local filteredList = {} + for _, obj in ipairs(objList) do + if filter and filter(obj.hit_object) then + table.insert(filteredList, obj.hit_object) + end + end + return filteredList +end + +--------------------------------------------------------- +-- chaos token drawing +--------------------------------------------------------- + +-- checks scripting zone for chaos bag (also called by a lot of objects!) +function findChaosBag() + local chaosbag_zone = getObjectFromGUID("83ef06") + + -- error handling: scripting zone not found + if chaosbag_zone == nil then + printToAll("Zone for chaos bag detection couldn't be found.", "Red") + return + end + + for _, item in ipairs(chaosbag_zone.getObjects()) do + if item.getDescription() == "Chaos Bag" then + return item + end + end + + -- error handling: chaos bag not found + printToAll("Chaos bag couldn't be found.", "Red") +end + +function returnChaosTokens() + for _, token in pairs(chaosTokens) do + if token ~= nil then chaosbag.putObject(token) end + end + chaosTokens = {} +end + +-- Checks to see if the chaos bag can be manipulated. If a player is searching the bag when tokens +-- are drawn or replaced a TTS bug can cause those tokens to vanish. Any functions which change the +-- contents of the bag should check this method before doing so. +-- This method will broadcast a message to all players if the bag is being searched. +---@return Boolean. True if the bag is manipulated, false if it should be blocked. +function canTouchChaosTokens() + for color, searching in pairs(bagSearchers) do + if searching then + broadcastToAll("Someone is searching the chaos bag, can't touch the tokens.", "Red") + return false + end + end + return true +end + +-- called by playermats (by the "Draw chaos token" button) +function drawChaosToken(params) + if not canTouchChaosTokens() then return end + + local mat = params[1] + local tokenOffset = params[2] + local isRightClick = params[3] + chaosbag = findChaosBag() + + -- return token(s) on other playmat first + if chaosTokensLastMat ~= nil and chaosTokensLastMat ~= mat and #chaosTokens ~= 0 then + returnChaosTokens() + chaosTokensLastMat = nil + return + end + + chaosTokensLastMat = mat + + -- if we have left clicked and have no tokens OR if we have right clicked + if isRightClick or #chaosTokens == 0 then + if #chaosbag.getObjects() == 0 then return end + chaosbag.shuffle() + + -- add the token to the list, compute new position based on list length + tokenOffset[1] = tokenOffset[1] + (0.17 * #chaosTokens) + local token = chaosbag.takeObject({ + index = 0, + position = mat.positionToWorld(tokenOffset), + rotation = mat.getRotation() + }) + + -- get data for token description + local name = token.getName() + local tokenData = mythosAreaApi.returnTokenData().tokenData or {} + local specificData = tokenData[name] or {} + token.setDescription(specificData.description or "") + + -- track the chaos token (for stat tracker and future returning) + trackChaosToken(name, mat.getGUID()) + chaosTokens[#chaosTokens + 1] = token + return + else + returnChaosTokens() + end +end + +--------------------------------------------------------- +-- token spawning +--------------------------------------------------------- + +-- DEPRECATED. Use TokenManager instead. +-- Spawns a single token. +---@param params Table. Array with arguments to the method. 1 = position, 2 = type, 3 = rotation +function spawnToken(params) + return tokenManager.spawnToken(params[1], params[2], params[3]) +end + +--------------------------------------------------------- +-- chaos token stat tracker +--------------------------------------------------------- + +function trackChaosToken(tokenName, matGUID) + tokenDrawingStats["Overall"][tokenName] = (tokenDrawingStats["Overall"][tokenName] or 0) + 1 + tokenDrawingStats[matGUID][tokenName] = (tokenDrawingStats[matGUID][tokenName] or 0) + 1 +end + +-- Left-click: print stats, Right-click: reset stats +function handleStatTrackerClick(_, _, isRightClick) + if isRightClick then + for key, _ in pairs(tokenDrawingStats) do + tokenDrawingStats[key] = {} + end + else + local squidKing = "Nobody" + local maxSquid = 0 + local playerColor, playerName + + for key, personalStats in pairs(tokenDrawingStats) do + if personalStats ~= {} then + if key == "Overall" then + playerColor = "White" + playerName = "Overall" + else + playerColor = playmatApi.getPlayerColor(MAT_GUID_TO_COLOR[key]) + playerName = Player[playerColor].steam_name or playerColor + + local playerSquidCount = personalStats["Auto-fail"] or 0 + if playerSquidCount > maxSquid then + squidKing = playerName + maxSquid = playerSquidCount + end + end + + printToAll("------------------------------") + printToAll(playerName .. " Stats", playerColor) + + for tokenName, value in pairs(personalStats) do + if value then + printToAll(tokenName .. ': ' .. tostring(value)) + end + end + end + end + printToAll("------------------------------") + printToAll(squidKing .. " is an auto-fail magnet.", {255, 0, 0}) + end +end + +--------------------------------------------------------- +-- Difficulty selector script +--------------------------------------------------------- + +-- called for button creation on the difficulty selectors +---@param object object Usually "self" +---@param key string Name of the scenario +function createSetupButtons(args) + local data = getDataValue('modeData', args.key) + if data ~= nil then + local buttonParameters = {} + buttonParameters.function_owner = args.object + buttonParameters.position = {0, 0.1, -0.15} + buttonParameters.scale = {0.47, 1, 0.47} + buttonParameters.height = 200 + buttonParameters.width = 1150 + buttonParameters.color = {0.87, 0.8, 0.7} + + if data.easy ~= nil then + buttonParameters.label = "Easy" + buttonParameters.click_function = "easyClick" + args.object.createButton(buttonParameters) + buttonParameters.position[3] = buttonParameters.position[3] + 0.20 + end + + if data.normal ~= nil then + buttonParameters.label = "Standard" + buttonParameters.click_function = "normalClick" + args.object.createButton(buttonParameters) + buttonParameters.position[3] = buttonParameters.position[3] + 0.20 + end + + if data.hard ~= nil then + buttonParameters.label = "Hard" + buttonParameters.click_function = "hardClick" + args.object.createButton(buttonParameters) + buttonParameters.position[3] = buttonParameters.position[3] + 0.20 + end + + if data.expert ~= nil then + buttonParameters.label = "Expert" + buttonParameters.click_function = "expertClick" + args.object.createButton(buttonParameters) + buttonParameters.position[3] = buttonParameters.position[3] + 0.20 + end + + if data.standalone ~= nil then + buttonParameters.label = "Standalone" + buttonParameters.click_function = "standaloneClick" + args.object.createButton(buttonParameters) + end + end +end + +-- called for adding chaos tokens +---@param object object Usually "self" +---@param key string Name of the scenario +---@param mode string difficulty (e.g. "hard" or "expert") +function fillContainer(args) + local data = getDataValue('modeData', args.key) + if data == nil then return end + + local value = data[args.mode] + if value == nil or value.token == nil then return end + + local tokenList = {} + + for _, tokenId in ipairs(value.token) do + table.insert(tokenList, tokenId) + end + + if value.append ~= nil then + for _, tokenId in ipairs(value.append) do + table.insert(tokenList, tokenId) + end + end + + -- randomly choose tokens for specific Carcosa scenarios in standalone + if value.random then + local n = #value.random + if n > 0 then + for _, tokenId in ipairs(value.random[math.random(1, n)]) do + table.insert(tokenList, tokenId) + end + end + end + + setChaosBagState(tokenList) + + if value.message then + broadcastToAll(value.message) + end + + if value.warning then + broadcastToAll(value.warning, { 1, 0.5, 0.5 }) + end +end + +function getDataValue(storage, key) + local data = getObjectFromGUID(DATA_HELPER_GUID).getTable(storage) + if data ~= nil then + local value = data[key] + if value ~= nil then + local res = {} + for m, v in pairs(value) do + res[m] = v + if res[m].parent ~= nil then + local parentData = getDataValue(storage, res[m].parent) + if parentData ~= nil and parentData[m] ~= nil and parentData[m].token ~= nil then + res[m].token = parentData[m].token + end + res[m].parent = nil + end + end + return res + end + end +end + +-- respawns the chaos bag with a new state of tokens +---@param tokenList Table List of chaos token ids +function setChaosBagState(tokenList) + if not canTouchChaosTokens() then return end + + local chaosbag = findChaosBag() + local chaosbagData = chaosbag.getData() + local reserveData = getObjectFromGUID("106418").getData() + local tokenCache = {} + local containedObjects = {} + + -- create a temporary copy of the data for each chaos token + for _, objData in ipairs(reserveData.ContainedObjects) do + tokenCache[objData.Nickname] = objData + end + + -- iterate over tokenlist and insert specified tokens into new table + for _, tokenId in ipairs(tokenList) do + local tokenName = ID_URL_MAP[tokenId].name + table.insert(containedObjects, tokenCache[tokenName]) + end + + -- overwrite chaos bag content and respawn it + chaosbagData.ContainedObjects = containedObjects + chaosbag.destruct() + spawnObjectData({data = chaosbagData}) + + -- remove tokens that are still in play + for _, token in pairs(chaosTokens) do + if token ~= nil then token.destruct() end + end + chaosTokens = {} + chaosTokensLastMat = nil + + -- reset bless / curse manager + blessCurseManagerApi.removeTakenTokensAndReset() + + printToAll("Chaos bag set to chosen difficulty.", "Green") +end + +-- spawns the specified chaos token and puts it into the chaos bag +---@param id String ID of the chaos token +function spawnChaosToken(id) + if not canTouchChaosTokens() then return end + + id = id:lower() + local chaosbag = findChaosBag() + local url = ID_URL_MAP[id].url or "" + + if url ~= "" then + return spawnObject({ + type = 'Custom_Tile', + position = { 0.49, 3, 0 }, + scale = { 0.81, 1.0, 0.81 }, + rotation = {0, 270, 0}, + callback_function = function(obj) + obj.setName(ID_URL_MAP[id].name) + chaosbag.putObject(obj) + tokenArrangerApi.layout() + end + }).setCustomObject({ + type = 2, + image = url, + thickness = 0.1 + }) + end +end + +-- removes the specified chaos token from the chaos bag +---@param id String ID of the chaos token +function removeChaosToken(id) + if not canTouchChaosTokens() then return end + + local tokens = {} + local chaosbag = findChaosBag() + local name = ID_URL_MAP[id].name + + for _, v in ipairs(chaosbag.getObjects()) do + if v.name == name then table.insert(tokens, v.guid) end + end + + -- error handling: no matching token found + if #tokens == 0 then + printToAll("No " .. name .. " tokens in the chaos bag.", "Yellow") + return + end + + chaosbag.takeObject({ + guid = tokens[1], + smooth = false, + callback_function = function(obj) + obj.destruct() + tokenArrangerApi.layout() + end + }) + printToAll("Removing " .. name .. " token (in bag: " .. #tokens - 1 .. ")", "White") +end + +-- empty the chaos bag +function emptyChaosBag() + if not canTouchChaosTokens() then return end + + local chaosbag = findChaosBag() + for _, object in ipairs(chaosbag.getObjects()) do + chaosbag.takeObject({callback_function = function(item) item.destruct() end}) + end +end + +--------------------------------------------------------- +-- Content Importing and XML functions +--------------------------------------------------------- + +function onClick_refreshList() + local request = WebRequest.get(SOURCE_REPO .. '/library.json', completed_list_update) + requestObj = request + startLuaCoroutine(Global, 'downloadCoroutine') +end + +function onClick_select(player, params) + params = JSON.decode(urldecode(params)) + local url = SOURCE_REPO .. '/' .. params.url + local request = WebRequest.get(url, function (request) complete_obj_download(request, params) end ) + requestObj = request + startLuaCoroutine(Global, 'downloadCoroutine') +end + +function onClick_load() + UI.show('progress_display') + UI.hide('load_button') +end + +function onClick_toggleUi(_, title) + UI.hide('optionPanel') + UI.hide('load_ui') + + -- when same button is clicked or close window button is pressed, don't open UI + if UI.getValue('title') ~= title and title ~= 'Hidden' then + UI.setValue('title', title) + + if title == "Options" then + UI.show('optionPanel') + else + update_window_content(title) + UI.show('load_ui') + end + else + UI.setValue('title', "Hidden") + end +end + +function downloadCoroutine() + while requestObj do + UI.setAttribute('download_progress', 'percentage', requestObj.download_progress * 100) + coroutine.yield(0) + end + return 1 +end + +function update_list(objects) + local ui = UI.getXmlTable() + local update_height = find_tag_with_id(ui, 'ui_update_height') + local update_children = find_tag_with_id(update_height.children, 'ui_update_point') + + update_children.children = {} + + for _, v in ipairs(objects) do + local s = JSON.encode(v); + table.insert(update_children.children, + { tag = 'Text', + value = v.name, + attributes = { onClick = 'onClick_select(' .. urlencode(JSON.encode(v)) .. ')', alignment = 'MiddleLeft' } + }) + end + + update_height.attributes.height = #(update_children.children) * 24 + UI.setXmlTable(ui) +end + +function update_window_content(new_title) + if not library then return end + + if new_title == 'Campaigns' then + update_list(library.campaigns) + elseif new_title == 'Standalone Scenarios' then + update_list(library.scenarios) + elseif new_title == 'Investigators' then + update_list(library.investigators) + elseif new_title == 'Community Content' then + update_list(library.community) + elseif new_title == 'Extras' then + update_list(library.extras) + else + update_list({}) + end +end + +function complete_obj_download(request, params) + assert(request.is_done) + if request.is_error or request.response_code ~= 200 then + print('error: ' .. request.error) + else + if pcall(function() + local replaced_object + pcall(function() + if params.replace then + replaced_object = getObjectFromGUID(params.replace) + end + end) + local json = request.text + if replaced_object then + local pos = replaced_object.getPosition() + local rot = replaced_object.getRotation() + destroyObject(replaced_object) + Wait.frames(function() + spawnObjectJSON({json = json, position = pos, rotation = rot}) + end, 1) + else + spawnObjectJSON({json = json}) + end + end) then + print('Object loaded.') + else + print('Error loading object.') + end + end + + requestObj = nil + UI.setAttribute('download_progress', 'percentage', 100) +end + +-- the download button on the placeholder objects calls this to directly initiate a download +-- params is a table with url and guid of replacement object, which happens to match what onClick_select wants +function placeholder_download(params) + onClick_select(nil, JSON.encode(params)) +end + +function completed_list_update(request) + assert(request.is_done) + if request.is_error or request.response_code ~= 200 then + print('error: ' .. request.error) + else + local json_response = nil + if pcall(function () json_response = JSON.decode(request.text) end) then + library = json_response + update_window_content(UI.getValue('title')) + else + print('error parsing downloaded library') + end + end + + requestObj = nil + UI.setAttribute('download_progress', 'percentage', 100) +end + +function find_tag_with_id(ui, id) + for _, obj in ipairs(ui) do + if obj.attributes and obj.attributes.id and obj.attributes.id == id then return obj end + if obj.children then + local result = find_tag_with_id(obj.children, id) + if result then return result end + end + end + return nil +end + +function urlencode(str) + local str = string.gsub(str, "([^A-Za-z0-9-_.~])", + function (c) return string.format("%%%02X", string.byte(c)) end) + return str +end + +function urldecode(str) + local str = string.gsub(str, "%%(%x%x)", + function (h) return string.char(tonumber(h, 16)) end) + return str +end + +--------------------------------------------------------- +-- Option Panel related functionality +--------------------------------------------------------- + +-- called by toggling an option +function onClick_toggleOption(_, id) + local state = self.UI.getAttribute(id, "isOn") + + -- flip state (and handle stupid "False" value) + if state == "False" then + state = true + else + state = false + end + + self.UI.setAttribute(id, "isOn", state) + applyOptionPanelChange(id, state) +end + +-- sets the option panel to the correct state (corresponding to 'optionPanel') +function updateOptionPanelState() + for id, enabled in pairs(optionPanel) do + if (type(enabled) == "boolean" and enabled) + or (type(enabled) == "string" and enabled) + or (type(enabled) == "table" and #enabled ~= 0) then + self.UI.setAttribute(id, "isOn", true) + else + self.UI.setAttribute(id, "isOn", "False") + end + end +end + +-- handles the applying of option selections and calls the respective functions based +---@param id String ID of the option that was selected or deselected +---@param state Boolean State of the option (true = enabled) +function applyOptionPanelChange(id, state) + -- option: Snap tags + if id == "useSnapTags" then + playmatApi.setLimitSnapsByType(state, "All") + optionPanel[id] = state + + -- option: Draw 1 button + elseif id == "showDrawButton" then + playmatApi.showDrawButton(state, "All") + optionPanel[id] = state + + -- option: Clickable clue counters + elseif id == "useClueClickers" then + playmatApi.clickableClues(state, "All") + optionPanel[id] = state + + -- update master clue counter + getObjectFromGUID("4a3aa4").setVar("useClickableCounters", state) + + -- option: Clickable resource counters + elseif id == "useResourceCounters" then + optionPanel[id] = state + + -- option: Play area snap tags + elseif id == "playAreaSnapTags" then + playAreaAPI.setLimitSnapsByType(state) + optionPanel[id] = state + + -- option: Show Title on placing scenarios + elseif id == "showTitleSplash" then + optionPanel[id] = state + + -- option: Show token arranger + elseif id == "showTokenArranger" then + optionPanel[id] = spawnOrRemoveHelper(state, "Token Arranger", {-42.3, 1.6, -46.5}) + + -- option: Show clean up helper + elseif id == "showCleanUpHelper" then + optionPanel[id] = spawnOrRemoveHelper(state, "Clean Up Helper", {-66, 1.6, 46}) + + -- option: Show hand helper for each player + elseif id == "showHandHelper" then + for i, color in ipairs(MAT_COLORS) do + local pos = playmatApi.transformLocalPosition({0.05, 0, -1.182}, color) + local rot = playmatApi.returnRotation(color) + optionPanel[id][i] = spawnOrRemoveHelper(state, "Hand Helper", pos, rot) + end + + -- option: Show search assistant for each player + elseif id == "showSearchAssistant" then + for i, color in ipairs(MAT_COLORS) do + local pos = playmatApi.transformLocalPosition({-0.3, 0, -1.182}, color) + local rot = playmatApi.returnRotation(color) + optionPanel[id][i] = spawnOrRemoveHelper(state, "Search Assistant", pos, rot) + end + + -- option: Show chaos bag manager + elseif id == "showChaosBagManager" then + optionPanel[id] = spawnOrRemoveHelper(state, "Chaos Bag Manager", {-66, 1.6, -49.5}) + + -- option: Show attachment helper + elseif id == "showAttachmentHelper" then + optionPanel[id] = spawnOrRemoveHelper(state, "Attachment Helper", {-62, 1.4, 0}) + + -- option: Show navigation overlay + elseif id == "showNavigationOverlay" then + optionPanel[id] = spawnOrRemoveHelper(state, "jaqenZann's Navigation Overlay", {-68, 1.4, -70}) + + -- option: Show CYOA campaign guides + elseif id == "showCYOA" then + optionPanel[id] = spawnOrRemoveHelper(state, "CYOA Campaign Guides", {65, 1.6, -11}) + + -- option: Show custom playmat images + elseif id == "showCustomPlaymatImages" then + optionPanel[id] = spawnOrRemoveHelper(state, "Custom Playmat Images", {67.5, 1.6, 37}) + + -- option: Show displacement tool + elseif id == "showDisplacementTool" then + optionPanel[id] = spawnOrRemoveHelper(state, "Displacement Tool", {-57, 1.6, 46}) + end +end + +-- handler for spawn / remove functions of helper objects +---@param state Boolean Contains the state of the option: true = spawn it, false = remove it +---@param name String Name of the helper object +---@param position Vector Position of the object (where it will spawn) +---@param rotation Vector Rotation of the object for spawning (default: {0, 270, 0}) +---@return. GUID of the spawnedObj (or nil if object was removed) +function spawnOrRemoveHelper(state, name, position, rotation) + if state then + Player.getPlayers()[1].pingTable(position) + return spawnHelperObject(name, position, rotation).getGUID() + else + return removeHelperObject(name) + end +end + +-- copies the specified tool (by name) from the option panel source bag +---@param name String Name of the object that should be copied +---@param position Table Desired position of the object +function spawnHelperObject(name, position, rotation) + local sourceBag = getObjectFromGUID("830bd0") + + -- error handling for missing sourceBag + if not sourceBag then + broadcastToAll("Option panel source bag could not be found!", "Red") + return + end + + local spawnTable = {position = position} + + -- only overrride rotation if there is one provided (object's rotation used instead) + if rotation then + spawnTable.rotation = rotation + end + + for _, obj in ipairs(sourceBag.getData().ContainedObjects) do + if obj["Nickname"] == name then + spawnTable.data = obj + spawnTable.callback_function = function(spawnedObj) + Wait.time(function() spawnedObj.setLock(true) end, 2) + end + return spawnObjectData(spawnTable) + end + end +end + +-- removes the specified tool (by name) +---@param name String Object that should be removed +function removeHelperObject(name) + -- links objects name to the respective option name (to grab the GUID for removal) + local referenceTable = { + ["Token Arranger"] = "showTokenArranger", + ["Clean Up Helper"] = "showCleanUpHelper", + ["Hand Helper"] = "showHandHelper", + ["Search Assistant"] = "showSearchAssistant", + ["Chaos Bag Manager"] = "showChaosBagManager", + ["jaqenZann's Navigation Overlay"] = "showNavigationOverlay", + ["Displacement Tool"] = "showDisplacementTool", + ["Custom Playmat Images"] = "showCustomPlaymatImages", + ["Attachment Helper"] = "showAttachmentHelper", + ["CYOA Campaign Guides"] = "showCYOA" + } + + local data = optionPanel[referenceTable[name]] + + -- if there is a GUID stored, remove that object + if type(data) == "string" then + local obj = getObjectFromGUID(data) + if obj then obj.destruct() end + + -- if it is a table (e.g. for the "Hand Helper", remove all of them) + elseif type(data) == "table" then + for _, guid in pairs(data) do + local obj = getObjectFromGUID(guid) + if obj then obj.destruct() end + end + end +end + +-- loads the default options +function onClick_defaultSettings() + for id, _ in pairs(optionPanel) do + local state = false + -- override for settings that are enabled by default + if id == "useSnapTags" or id == "showTitleSplash" then + state = true + end + applyOptionPanelChange(id, state) + end + + -- clean reset of variable + optionPanel = { + playAreaSnapTags = true, + showAttachmentHelper = false, + showCleanUpHelper = false, + showChaosBagManager = false, + showCustomPlaymatImages = false, + showCYOA = false, + showDisplacementTool = false, + showDrawButton = false, + showHandHelper = {}, + showNavigationOverlay = false, + showSearchAssistant = {}, + showTitleSplash = true, + showTokenArranger = false, + useClueClickers = false, + useSnapTags = true + } + + -- update UI + updateOptionPanelState() +end + +-- splash scenario title on setup +function titleSplash(scenarioName) + if optionPanel['showTitleSplash'] then + + -- if there's any ongoing title being displayed, hide it and cancel the waiting function + if hideTitleSplashWaitFunctionId then + Wait.stop(hideTitleSplashWaitFunctionId) + hideTitleSplashWaitFunctionId = nil + UI.setAttribute('title_splash', 'active', false) + end + + -- display scenario name and set a 4 seconds (2 seconds animation and 2 seconds on screen) + -- wait timer to hide the scenario name + UI.setValue('title_splash_text', scenarioName) + UI.show('title_splash') + hideTitleSplashWaitFunctionId = Wait.time(function() + UI.hide('title_splash') + hideTitleSplashWaitFunctionId = nil + end, 4) + + soundCubeApi.playSoundByName("Deep Bell") + end +end + +--------------------------------------------------------- +-- Update notification related functionality +--------------------------------------------------------- + +-- grabs the latest mod version and release notes from GitHub (called onLoad()) +function getModVersion() + WebRequest.get(SOURCE_REPO .. '/modversion.json', compareVersion) +end + +-- compares the modversion with GitHub and possibly shows the update notification +function compareVersion(request) + if request.is_error then + log(request.error) + return + end + + -- global variable to make it accessible for other functions + modMeta = JSON.decode(request.text) + + -- stop here if on latest version + if MOD_VERSION == modMeta["latestVersion"] then return end + + -- stop here if "don't show again" was clicked for this version before + if acknowledgedUpgradeVersions[modMeta["latestVersion"]] then return end + + updateNotificationLoading() + + -- delay to avoid lagging during onLoad() + Wait.time(function() UI.show("FinnIcon") end, 1) +end + +-- updates the XML update notification based on the mod metadata +function updateNotificationLoading() + -- grab data + local highlights = modMeta["releaseHighlights"] + + -- concatenate the release highlights + local highlightText = "• " .. highlights[1] + for i, entry in pairs(highlights) do + if i ~= 1 then + highlightText = highlightText .. "\n• " .. entry + end + end + + -- update the XML UI + UI.setValue("notificationHeader", "New version available: ".. modMeta["latestVersion"]) + UI.setValue("releaseHighlightText", highlightText) + UI.setAttribute("highlightRow", "preferredHeight", 20*#highlights) + UI.setAttribute("updateNotification", "height", 20*#highlights + 125) +end + +-- triggered by clicking on the Finn Icon +function onClick_FinnIcon() + if notificationVisible then + UI.hide("updateNotification") + notificationVisible = false + else + UI.show("updateNotification") + notificationVisible = true + end +end + +-- close / don't show again buttons on the update notification +function onClick_notification(_, parameter) + if parameter == "dontShowAgain" then + -- this variable tracks if "don't show again" was pressed for a version + acknowledgedUpgradeVersions[modMeta["latestVersion"]] = true + end + UI.hide("FinnIcon") + UI.hide("updateNotification") +end +end) +__bundle_register("accessories/TokenArrangerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenArrangerApi = {} + + -- local function to call the token arranger, if it is on the table + ---@param functionName String Name of the function to cal + ---@param argument Variant Parameter to pass + local function callIfExistent(functionName, argument) + local tokenArranger = getObjectsWithTag("TokenArranger")[1] + if tokenArranger ~= nil then + tokenArranger.call(functionName, argument) + end + end + + -- updates the token modifiers with the provided data + ---@param tokenData Table Contains the chaos token metadata + TokenArrangerApi.onTokenDataChanged = function(fullData) + callIfExistent("onTokenDataChanged", fullData) + end + + -- deletes already laid out tokens + TokenArrangerApi.deleteCopiedTokens = function() + callIfExistent("deleteCopiedTokens") + end + + -- updates the laid out tokens + TokenArrangerApi.layout = function() + Wait.time(function() callIfExistent("layout") end, 0.1) + end + + return TokenArrangerApi +end +end) __bundle_register("core/token/TokenManager", function(require, _LOADED, __bundle_register, __bundle_modules) do local tokenSpawnTracker = require("core/token/TokenSpawnTrackerApi") @@ -554,6 +1896,31 @@ do end end + -- Returns the color of the player's hand that is seated next to the playermat + ---@param matColor String Color of the playermat + PlaymatApi.getPlayerColor = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getVar("playerColor") + end + + -- Returns the color of the playermat that owns the playercolor's hand + ---@param handColor String Color of the playermat + PlaymatApi.getMatColor = function(handColor) + local matColors = {"White", "Orange", "Green", "Red"} + for i, mat in ipairs(internal.getMatForColor("All")) do + local color = mat.getVar("playerColor") + if color == handColor then return matColors[i] end + end + return "NOT_FOUND" + end + + -- Returns if there is the card "Dream-Enhancing Serum" on the requested playermat + ---@param matColor String Color of the playermat + PlaymatApi.isDES = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getVar("isDES") + end + -- Returns the draw deck of the requested playmat ---@param matColor String Color of the playermat PlaymatApi.getDrawDeck = function(matColor) @@ -569,6 +1936,36 @@ do return mat.call("returnGlobalDiscardPosition") end + -- Transforms a local position into a global position + ---@param localPos Table Local position to be transformed + ---@param matColor String Color of the playermat + PlaymatApi.transformLocalPosition = function(localPos, matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.positionToWorld(localPos) + end + + -- Returns the rotation of the requested playmat + ---@param matColor String Color of the playermat + PlaymatApi.returnRotation = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getRotation() + end + + -- Triggers the Upkeep for the requested playmat + ---@param matColor String Color of the playermat + ---@param playerColor String Color of the calling player (for messages) + PlaymatApi.doUpkeepFromHotkey = function(matColor, playerColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.call("doUpkeepFromHotkey", playerColor) + end + + -- Returns the active investigator id + ---@param matColor String Color of the playermat + PlaymatApi.returnInvestigatorId = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getVar("activeInvestigatorId") + end + -- Sets the requested playermat's snap points to limit snapping to matching card types or not. If -- matchTypes is true, the main card slot snap points will only snap assets, while the -- investigator area point will only snap Investigators. If matchTypes is false, snap points will @@ -622,6 +2019,20 @@ do return count end + -- Adds the specified amount of resources to the requested playermat's resource counter + PlaymatApi.gainResources = function(amount, matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("gainResources", amount) + end + end + + -- Discard a non-hidden card from the corresponding player's hand + PlaymatApi.doDiscardOne = function(matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("doDiscardOne") + end + end + -- Convenience function to look up a mat's object by color, or get all mats. ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also -- accepts "All" as a special value which will return all four mats. @@ -645,1136 +2056,4 @@ do return PlaymatApi end end) -__bundle_register("core/token/TokenSpawnTrackerApi", function(require, _LOADED, __bundle_register, __bundle_modules) -do - local TokenSpawnTracker = { } - - local SPAWN_TRACKER_GUID = "e3ffc9" - - TokenSpawnTracker.hasSpawnedTokens = function(cardGuid) - return getObjectFromGUID(SPAWN_TRACKER_GUID).call("hasSpawnedTokens", cardGuid) - end - - TokenSpawnTracker.markTokensSpawned = function(cardGuid) - return getObjectFromGUID(SPAWN_TRACKER_GUID).call("markTokensSpawned", cardGuid) - end - - TokenSpawnTracker.resetTokensSpawned = function(cardGuid) - return getObjectFromGUID(SPAWN_TRACKER_GUID).call("resetTokensSpawned", cardGuid) - end - - TokenSpawnTracker.resetAllAssetAndEvents = function() - return getObjectFromGUID(SPAWN_TRACKER_GUID).call("resetAllAssetAndEvents") - end - - TokenSpawnTracker.resetAllLocations = function() - return getObjectFromGUID(SPAWN_TRACKER_GUID).call("resetAllLocations") - end - - TokenSpawnTracker.resetAll = function() - return getObjectFromGUID(SPAWN_TRACKER_GUID).call("resetAll") - end - - return TokenSpawnTracker -end -end) -__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) -require("core/Global") -end) -__bundle_register("core/Global", function(require, _LOADED, __bundle_register, __bundle_modules) ---------------------------------------------------------- --- general setup ---------------------------------------------------------- - -ENCOUNTER_DECK_POS = {-3.93, 1, 5.76} -ENCOUNTER_DECK_DISCARD_POSITION = {-3.85, 1, 10.38} - --- optionPanel data -optionPanel = {} - --- GUID of data helper -DATA_HELPER_GUID = "708279" - --- GUID of fan-made accessories bag (also just called "barrel") -BARREL_GUID = "aa8b38" - --- GUIDs that will not be interactable (e.g. parts of the table) -local NOT_INTERACTABLE = { - "6161b4", -- Decoration-Map - "721ba2", -- PlayArea - "9f334f", -- MythosArea - "463022", -- Panel behind tentacle stand - "f182ee", -- InvestigatorCount - "7bff34", -- Tentacle stand - "8646eb", -- horizontal border left - "75937e", -- horizontal border right - "612072", -- vertical border left - "975c39", -- vertical border right -} - -local chaosTokens = {} -local chaosTokensLastMat = nil -local IS_RESHUFFLING = false -local bagSearchers = {} -local hideTitleSplashWaitFunctionId = nil -local playmatAPI = require("playermat/PlaymatApi") -local tokenManager = require("core/token/TokenManager") -local playAreaAPI = require("core/PlayAreaApi") - ---------------------------------------------------------- --- data for tokens ---------------------------------------------------------- - -TOKEN_DATA = { - damage = {image = "http://cloud-3.steamusercontent.com/ugc/1758068501357115146/903D11AAE7BD5C254C8DC136E9202EE516289DEA/", scale = {0.17, 0.17, 0.17}}, - horror = {image = "http://cloud-3.steamusercontent.com/ugc/1758068501357163535/6D9E0756503664D65BDB384656AC6D4BD713F5FC/", scale = {0.17, 0.17, 0.17}}, - resource = {image = "http://cloud-3.steamusercontent.com/ugc/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/", scale = {0.17, 0.17, 0.17}}, - doom = {image = "https://i.imgur.com/EoL7yaZ.png", scale = {0.17, 0.17, 0.17}}, - clue = {image = "http://cloud-3.steamusercontent.com/ugc/1758068501357164917/1D06F1DC4D6888B6F57124BD2AFE20D0B0DA15A8/", scale = {0.15, 0.15, 0.15}} -} - -IMAGE_TOKEN_MAP = { - ["https://i.imgur.com/nEmqjmj.png"] = "Elder Sign", - ["https://i.imgur.com/uIx8jbY.png"] = "+1", - ["https://i.imgur.com/btEtVfd.png"] = "0", - ["https://i.imgur.com/w3XbrCC.png"] = "-1", - ["https://i.imgur.com/bfTg2hb.png"] = "-2", - ["https://i.imgur.com/yfs8gHq.png"] = "-3", - ["https://i.imgur.com/qrgGQRD.png"] = "-4", - ["https://i.imgur.com/3Ym1IeG.png"] = "-5", - ["https://i.imgur.com/c9qdSzS.png"] = "-6", - ["https://i.imgur.com/4WRD42n.png"] = "-7", - ["https://i.imgur.com/9t3rPTQ.png"] = "-8", - ["https://i.imgur.com/stbBxtx.png"] = "Skull", - ["https://i.imgur.com/VzhJJaH.png"] = "Cultist", - ["https://i.imgur.com/1plY463.png"] = "Tablet", - ["https://i.imgur.com/ttnspKt.png"] = "Elder Thing", - ["https://i.imgur.com/lns4fhz.png"] = "Auto-fail", - ["http://cloud-3.steamusercontent.com/ugc/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/"] = "Bless", - ["http://cloud-3.steamusercontent.com/ugc/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/"] = "Curse", - ["http://cloud-3.steamusercontent.com/ugc/1858293462583104677/195F93C063A8881B805CE2FD4767A9718B27B6AE/"] = "Frost" -} - ---------------------------------------------------------- --- data for chaos token stat tracker ---------------------------------------------------------- - -local maxSquid = 0 - -MAT_GUID_TO_COLOUR = { - ["8b081b"] = "White", - ["bd0ff4"] = "Orange", - ["383d8b"] = "Green", - ["0840d5"] = "Red" -} - -local personalStats = { - ["8b081b"] = {}, - ["bd0ff4"] = {}, - ["383d8b"] = {}, - ["0840d5"] = {} -} - -local overallStats = { - -- cultist - ["https://i.imgur.com/VzhJJaH.png"] = 0, - -- skull - ["https://i.imgur.com/stbBxtx.png"] = 0, - -- tablet - ["https://i.imgur.com/1plY463.png"] = 0, - -- curse - ["http://cloud-3.steamusercontent.com/ugc/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/"] = 0, - -- tentacle - ["https://i.imgur.com/lns4fhz.png"] = 0, - -- minus eight - ["https://i.imgur.com/9t3rPTQ.png"] = 0, - -- minus seven - ["https://i.imgur.com/4WRD42n.png"] = 0, - -- minus six - ["https://i.imgur.com/c9qdSzS.png"] = 0, - -- minus five - ["https://i.imgur.com/3Ym1IeG.png"] = 0, - -- minus four - ["https://i.imgur.com/qrgGQRD.png"] = 0, - -- minus three - ["https://i.imgur.com/yfs8gHq.png"] = 0, - -- minus two - ["https://i.imgur.com/bfTg2hb.png"] = 0, - -- minus one - ["https://i.imgur.com/w3XbrCC.png"] = 0, - -- zero - ["https://i.imgur.com/btEtVfd.png"] = 0, - -- plus one - ["https://i.imgur.com/uIx8jbY.png"] = 0, - -- elder thing - ["https://i.imgur.com/ttnspKt.png"] = 0, - -- bless - ["http://cloud-3.steamusercontent.com/ugc/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/"] = 0, - -- elder sign - ["https://i.imgur.com/nEmqjmj.png"] = 0, - -- frost - ["http://cloud-3.steamusercontent.com/ugc/1858293462583104677/195F93C063A8881B805CE2FD4767A9718B27B6AE/"] = 0, -} - ---------------------------------------------------------- --- general code ---------------------------------------------------------- - --- saving state of optionPanel to restore later -function onSave() return JSON.encode({ optionPanel = optionPanel }) end - -function onLoad(savedData) - if savedData then - loadedData = JSON.decode(savedData) - optionPanel = loadedData.optionPanel - -- hack to disable on load - playmatAPI.clickableClues(false, "All") - else - print("Saved state could not be found!") - end - - for _, guid in ipairs(NOT_INTERACTABLE) do - local obj = getObjectFromGUID(guid) - if obj ~= nil then obj.interactable = false end - end - - math.randomseed(os.time()) -end - ---------------------------------------------------------- --- encounter card drawing ---------------------------------------------------------- - -function isDeck(x) return x.tag == 'Deck' end - -function isCardOrDeck(x) return x.tag == 'Card' or x.tag == 'Deck' end - --- Event hook for any object search. When chaos tokens are manipulated while the chaos bag --- container is being searched, a TTS bug can cause tokens to duplicate or vanish. We lock the --- chaos bag during search operations to avoid this. -function onObjectSearchStart(object, playerColor) - chaosbag = findChaosBag() - if object == chaosbag then - bagSearchers[playerColor] = true - end -end - --- Event hook for any object search. When chaos tokens are manipulated while the chaos bag --- container is being searched, a TTS bug can cause tokens to duplicate or vanish. We lock the --- chaos bag during search operations to avoid this. -function onObjectSearchEnd(object, playerColor) - chaosbag = findChaosBag() - if object == chaosbag then - bagSearchers[playerColor] = nil - end -end - --- Pass object enter container events to the PlayArea to clear vector lines from dragged cards. --- This requires the try method as cards won't exist any more after they enter a deck, so the lines --- can't be cleared. -function tryObjectEnterContainer(container, object) - playAreaAPI.tryObjectEnterContainer(container, object) - return true -end - -function drawEncountercard(color) --[[ Parameter Player color ]] - local card - local items = findInRadiusBy(ENCOUNTER_DECK_POS, 4, isCardOrDeck) - if #items > 0 then - for _, v in ipairs(items) do - if v.tag == 'Deck' then - v.deal(1, color) - return - end - end - -- we didn't find the deck so just pull the first thing we did find - items[1].deal(1, color) - else - -- nothing here, time to reshuffle - reshuffleEncounterDeck(color) - end -end - -function actualEncounterCardDraw(card, params) - local position = params[1] - local rotation = params[2] - local alwaysFaceUp = params[3] - local faceUpRotation = 0 - if not alwaysFaceUp then - if getObjectFromGUID(DATA_HELPER_GUID).call('checkHiddenCard', card.getName()) then - faceUpRotation = 180 - end - end - card.setPositionSmooth(position, false, false) - card.setRotationSmooth({0, rotation.y, faceUpRotation}, false, false) -end - -function reshuffleEncounterDeck(color) - -- finishes moving the deck back and draws a card - local function move(deck) - deck.setPositionSmooth({ENCOUNTER_DECK_POS[1], ENCOUNTER_DECK_POS[2] + 2, ENCOUNTER_DECK_POS[3]}, false, true) - deck.deal(1, color) - Wait.time(function() IS_RESHUFFLING = false end, 1) - end - -- bail out if we're mid reshuffle - if IS_RESHUFFLING then return end - local discarded = findInRadiusBy(ENCOUNTER_DECK_DISCARD_POSITION, 4, isDeck) - if #discarded > 0 then - IS_RESHUFFLING = true - local deck = discarded[1] - if not deck.is_face_down then deck.flip() end - deck.shuffle() - Wait.time(|| move(deck), 0.3) - else - printToAll("Couldn't find encounter discard pile to reshuffle.", {1, 0, 0}) - end -end - -function findInRadiusBy(pos, radius, filter) - local objList = Physics.cast({ - origin = pos, - direction = {0, 1, 0}, - type = 2, - size = {radius, radius, radius}, - max_distance = 0 - }) - - local filteredList = {} - for _, obj in ipairs(objList) do - if filter and filter(obj.hit_object) then - table.insert(filteredList, obj.hit_object) - end - end - return filteredList -end - ---------------------------------------------------------- --- chaos token drawing ---------------------------------------------------------- - --- checks scripting zone for chaos bag -function findChaosBag() - for _, item in ipairs(getObjectFromGUID("83ef06").getObjects()) do - if item.getDescription() == "Chaos Bag" then - return item - end - end -end - -function returnChaosTokens() - for _, token in pairs(chaosTokens) do - if token ~= nil then chaosbag.putObject(token) end - end - chaosTokens = {} -end - --- Checks to see if the chaos bag can be manipulated. If a player is searching the bag when tokens --- are drawn or replaced a TTS bug can cause those tokens to vanish. Any functions which change the --- contents of the bag should check this method before doing so. --- This method will broadcast a message to all players if the bag is being searched. --- @return Boolean. True if the bag is manipulated, false if it should be blocked. -function canTouchChaosTokens() - for color, searching in pairs(bagSearchers) do - if searching then - broadcastToAll("Someone is searching the chaos bag, can't touch the tokens", "Red") - return false - end - end - - return true -end - -function drawChaostoken(params) - if not canTouchChaosTokens() then - return - end - - local mat = params[1] - local tokenOffset = params[2] - local isRightClick = params[3] - chaosbag = findChaosBag() - - -- return token(s) on other playmat first - if chaosTokensLastMat ~= nil and chaosTokensLastMat ~= mat and #chaosTokens ~= 0 then - returnChaosTokens() - chaosTokensLastMat = nil - return - end - - chaosTokensLastMat = mat - -- if we have left clicked and have no tokens OR if we have right clicked - if isRightClick or #chaosTokens == 0 then - if #chaosbag.getObjects() == 0 then return end - chaosbag.shuffle() - - -- add the token to the list, compute new position based on list length - tokenOffset[1] = tokenOffset[1] + (0.17 * #chaosTokens) - local token = chaosbag.takeObject({ - index = 0, - position = mat.positionToWorld(tokenOffset), - rotation = mat.getRotation(), - callback_function = function(obj) trackChaosToken(obj, mat.getGUID()) end - }) - chaosTokens[#chaosTokens + 1] = token - return - else - returnChaosTokens() - end -end - ---------------------------------------------------------- --- token spawning ---------------------------------------------------------- - --- DEPRECATED. Use TokenManager instead. --- Spawns a single token. ----@param params Table. Array with arguments to the method. 1 = position, 2 = type, 3 = rotation -function spawnToken(params) - return tokenManager.spawnToken(params[1], params[2], params[3]) -end - ---------------------------------------------------------- --- chaos token stat tracker ---------------------------------------------------------- - -function trackChaosToken(token, matGUID) - local image = token.getCustomObject().image - overallStats[image] = (overallStats[image] or 0) + 1 - personalStats[matGUID][image] = (personalStats[matGUID][image] or 0) + 1 -end - -function handleStatTrackerClick(_, _, isRightClick) - if isRightClick then - resetChaosTokenStats() - else - printChaosTokenStats() - end -end - -function resetChaosTokenStats() - for key, _ in pairs(overallStats) do - overallStats[key] = 0 - end - for playerKey, _ in pairs(personalStats) do - for key, value in pairs(overallStats) do - personalStats[playerKey][key] = value - end - end -end - -function printChaosTokenStats() - local squidKing = "Nobody" - printToAll("") - printToAll("Overall Stats") - printToAll("------------------------------") - printNonZeroTokenPairs(overallStats) - printToAll("") - printToAll("Individual Stats") - printToAll("------------------------------") - for matGUID, _ in pairs(personalStats) do - local playerColour = MAT_GUID_TO_COLOUR[matGUID] - local playerSquidCount = personalStats[matGUID]["https://i.imgur.com/lns4fhz.png"] or 0 - local playerName = playerColour - if Player[playerColour].seated then - playerName = Player[playerColour].steam_name - end - - printToAll(playerName .. " Stats", playerColour) - printNonZeroTokenPairs(personalStats[matGUID]) - - if playerSquidCount > maxSquid then - squidKing = playerName - maxSquid = playerSquidCount - end - end - printToAll(squidKing .. " is an auto-fail magnet.", {255, 0, 0}) -end - -function printNonZeroTokenPairs(theTable) - for key, value in pairs(theTable) do - if value ~= 0 then - printToAll(IMAGE_TOKEN_MAP[key] .. ': ' .. tostring(value)) - end - end -end - ---------------------------------------------------------- --- Difficulty selector script ---------------------------------------------------------- - --- called for button creation on the difficulty selectors ----@param object object Usually "self" ----@param key string Name of the scenario -function createSetupButtons(args) - local data = getDataValue('modeData', args.key) - if data ~= nil then - local buttonParameters = {} - buttonParameters.function_owner = args.object - buttonParameters.position = {0, 0.1, -0.15} - buttonParameters.scale = {0.47, 1, 0.47} - buttonParameters.height = 200 - buttonParameters.width = 1150 - buttonParameters.color = {0.87, 0.8, 0.7} - - if data.easy ~= nil then - buttonParameters.label = "Easy" - buttonParameters.click_function = "easyClick" - args.object.createButton(buttonParameters) - buttonParameters.position[3] = buttonParameters.position[3] + 0.20 - end - - if data.normal ~= nil then - buttonParameters.label = "Standard" - buttonParameters.click_function = "normalClick" - args.object.createButton(buttonParameters) - buttonParameters.position[3] = buttonParameters.position[3] + 0.20 - end - - if data.hard ~= nil then - buttonParameters.label = "Hard" - buttonParameters.click_function = "hardClick" - args.object.createButton(buttonParameters) - buttonParameters.position[3] = buttonParameters.position[3] + 0.20 - end - - if data.expert ~= nil then - buttonParameters.label = "Expert" - buttonParameters.click_function = "expertClick" - args.object.createButton(buttonParameters) - buttonParameters.position[3] = buttonParameters.position[3] + 0.20 - end - - if data.standalone ~= nil then - buttonParameters.label = "Standalone" - buttonParameters.click_function = "standaloneClick" - args.object.createButton(buttonParameters) - end - end -end - --- called for adding chaos tokens ----@param object object Usually "self" ----@param key string Name of the scenario ----@param mode string diffculty (e.g. "hard" or "expert") -function fillContainer(args) - chaosbag = findChaosBag() - - if chaosbag ~= nil then - local data = getDataValue('modeData', args.key) - if data == nil then return end - - local value = data[args.mode] - if value == nil or value.token == nil then return end - - local pos = chaosbag.getPosition() - if args.object ~= nil then - pos = args.object.getPosition() - end - - -- empty the chaos bag - for _, item in ipairs(chaosbag.getObjects()) do - destroyObject(chaosbag.takeObject({})) - end - - for _, token in ipairs(value.token) do - local obj = spawnChaosToken(token, pos) - if obj ~= nil then - chaosbag.putObject(obj) - end - end - - if value.append ~= nil then - for _, token in ipairs(value.append) do - local obj = spawnChaosToken(token, pos) - if obj ~= nil then - chaosbag.putObject(obj) - end - end - end - - -- randomly choose tokens for specific Carcosa scenarios in standalone - if value.random then - local n = #value.random - if n > 0 then - for _, token in ipairs(value.random[math.random(1, n)]) do - local obj = spawnChaosToken(token, pos) - if obj ~= nil then - chaosbag.putObject(obj) - end - end - end - end - - if value.message then - broadcastToAll(value.message) - end - - if value.warning then - broadcastToAll(value.warning, { 1, 0.5, 0.5 }) - end - end -end - -function getDataValue(storage, key) - local data = getObjectFromGUID(DATA_HELPER_GUID).getTable(storage) - if data ~= nil then - local value = data[key] - if value ~= nil then - local res = {} - for m, v in pairs(value) do - res[m] = v - if res[m].parent ~= nil then - local parentData = getDataValue(storage, res[m].parent) - if parentData ~= nil and parentData[m] ~= nil and parentData[m].token ~= nil then - res[m].token = parentData[m].token - end - res[m].parent = nil - end - end - return res - end - end -end - -function spawnChaosToken(id, pos) - local url = getChaosTokenImageURL(id) - if url ~= '' then - local obj = spawnObject({ - type = 'Custom_Tile', - position = {pos.x, pos.y + 3, pos.z}, - rotation = {0, 260, 0} - }) - obj.setCustomObject({ - type = 2, - image = url, - thickness = 0.1 - }) - obj.scale {0.81, 1, 0.81} - obj.setName(getTokenName({ url=url })) - return obj - end -end - --- chaos bag needs this for renaming chaos tokens -function getTokenName(params) - local name = IMAGE_TOKEN_MAP[params.url] - if name == nil then name = "" end - return name -end - --- returns the image url for a chaos token (identified by the "id") -function getChaosTokenImageURL(id) - if id == 'p1' then return 'https://i.imgur.com/uIx8jbY.png' end - if id == '0' then return 'https://i.imgur.com/btEtVfd.png' end - if id == 'm1' then return 'https://i.imgur.com/w3XbrCC.png' end - if id == 'm2' then return 'https://i.imgur.com/bfTg2hb.png' end - if id == 'm3' then return 'https://i.imgur.com/yfs8gHq.png' end - if id == 'm4' then return 'https://i.imgur.com/qrgGQRD.png' end - if id == 'm5' then return 'https://i.imgur.com/3Ym1IeG.png' end - if id == 'm6' then return 'https://i.imgur.com/c9qdSzS.png' end - if id == 'm7' then return 'https://i.imgur.com/4WRD42n.png' end - if id == 'm8' then return 'https://i.imgur.com/9t3rPTQ.png' end - if id == 'skull' then return 'https://i.imgur.com/stbBxtx.png' end - if id == 'cultist' then return 'https://i.imgur.com/VzhJJaH.png' end - if id == 'tablet' then return 'https://i.imgur.com/1plY463.png' end - if id == 'elder' then return 'https://i.imgur.com/ttnspKt.png' end - if id == 'red' then return 'https://i.imgur.com/lns4fhz.png' end - if id == 'blue' then return 'https://i.imgur.com/nEmqjmj.png' end - if id == 'frost' then return 'http://cloud-3.steamusercontent.com/ugc/1858293462583104677/195F93C063A8881B805CE2FD4767A9718B27B6AE/' end - return '' -end - ---------------------------------------------------------- --- Content Importing and XML functions ---------------------------------------------------------- - -local source_repo = 'https://raw.githubusercontent.com/chr1z93/loadable-objects/main' -local library = nil -local request_obj - -function onClick_refreshList() - local request = WebRequest.get(source_repo .. '/library.json', completed_list_update) - request_obj = request - startLuaCoroutine(Global, 'downloadCoroutine') -end - -function onClick_select(player, params) - params = JSON.decode(urldecode(params)) - local url = source_repo .. '/' .. params.url - local request = WebRequest.get(url, function (request) complete_obj_download(request, params) end ) - request_obj = request - startLuaCoroutine(Global, 'downloadCoroutine') -end - -function onClick_load() - UI.show('progress_display') - UI.hide('load_button') -end - -function onClick_toggleUi(_, title) - UI.hide('optionPanel') - UI.hide('load_ui') - - -- when same button is clicked or close window button is pressed, don't open UI - if UI.getValue('title') ~= title and title ~= 'Hidden' then - UI.setValue('title', title) - - if title == "Options" then - UI.show('optionPanel') - else - update_window_content(title) - UI.show('load_ui') - end - else - UI.setValue('title', "Hidden") - end -end - -function downloadCoroutine() - while request_obj do - UI.setAttribute('download_progress', 'percentage', request_obj.download_progress * 100) - coroutine.yield(0) - end - return 1 -end - -function update_list(objects) - local ui = UI.getXmlTable() - local update_height = find_tag_with_id(ui, 'ui_update_height') - local update_children = find_tag_with_id(update_height.children, 'ui_update_point') - - update_children.children = {} - - for _, v in ipairs(objects) do - local s = JSON.encode(v); - table.insert(update_children.children, - { tag = 'Text', - value = v.name, - attributes = { onClick = 'onClick_select(' .. urlencode(JSON.encode(v)) .. ')', alignment = 'MiddleLeft' } - }) - end - - update_height.attributes.height = #(update_children.children) * 24 - UI.setXmlTable(ui) -end - -function update_window_content(new_title) - if not library then return end - - if new_title == 'Campaigns' then - update_list(library.campaigns) - elseif new_title == 'Standalone Scenarios' then - update_list(library.scenarios) - elseif new_title == 'Investigators' then - update_list(library.investigators) - elseif new_title == 'Community Content' then - update_list(library.community) - elseif new_title == 'Extras' then - update_list(library.extras) - else - update_list({}) - end -end - -function complete_obj_download(request, params) - assert(request.is_done) - if request.is_error or request.response_code ~= 200 then - print('error: ' .. request.error) - else - if pcall(function() - local replaced_object - pcall(function() - if params.replace then - replaced_object = getObjectFromGUID(params.replace) - end - end) - local json = request.text - if replaced_object then - local pos = replaced_object.getPosition() - local rot = replaced_object.getRotation() - destroyObject(replaced_object) - Wait.frames(function() - spawnObjectJSON({json = json, position = pos, rotation = rot}) - end, 1) - else - spawnObjectJSON({json = json}) - end - end) then - print('Object loaded.') - else - print('Error loading object.') - end - end - - request_obj = nil - UI.setAttribute('download_progress', 'percentage', 100) -end - --- the download button on the placeholder objects calls this to directly initiate a download --- params is a table with url and guid of replacement object, which happens to match what onClick_select wants -function placeholder_download(params) - onClick_select(nil, JSON.encode(params)) -end - -function completed_list_update(request) - assert(request.is_done) - if request.is_error or request.response_code ~= 200 then - print('error: ' .. request.error) - else - local json_response = nil - if pcall(function () json_response = JSON.decode(request.text) end) then - library = json_response - update_window_content(UI.getValue('title')) - else - print('error parsing downloaded library') - end - end - - request_obj = nil - UI.setAttribute('download_progress', 'percentage', 100) -end - -function find_tag_with_id(ui, id) - for _, obj in ipairs(ui) do - if obj.attributes and obj.attributes.id and obj.attributes.id == id then return obj end - if obj.children then - local result = find_tag_with_id(obj.children, id) - if result then return result end - end - end - return nil -end - -function urlencode(str) - local str = string.gsub(str, "([^A-Za-z0-9-_.~])", - function (c) return string.format("%%%02X", string.byte(c)) end) - return str -end - -function urldecode(str) - local str = string.gsub(str, "%%(%x%x)", - function (h) return string.char(tonumber(h, 16)) end) - return str -end - ---------------------------------------------------------- --- Option Panel related functionality ---------------------------------------------------------- - --- called by toggling an option -function onClick_toggleOption(_, id) - local state = self.UI.getAttribute(id, "isOn") - - -- flip state (and handle stupid "False" value) - if state == "False" then - state = true - else - state = false - end - - self.UI.setAttribute(id, "isOn", state) - applyOptionPanelChange(id, state) -end - --- sets the option panel to the correct state (corresponding to 'optionPanel') -function updateOptionPanelState() - for id, enabled in pairs(optionPanel) do - if (type(enabled) == "boolean" and enabled) - or (type(enabled) == "string" and enabled) - or (type(enabled) == "table" and #enabled ~= 0) then - self.UI.setAttribute(id, "isOn", true) - else - self.UI.setAttribute(id, "isOn", "False") - end - end -end - --- handles the applying of option selections and calls the respective functions based ----@param id String ID of the option that was selected or deselected ----@param state Boolean State of the option (true = enabled) -function applyOptionPanelChange(id, state) - -- option: Snap tags - if id == "useSnapTags" then - playmatAPI.setLimitSnapsByType(state, "All") - optionPanel[id] = state - - -- option: Draw 1 button - elseif id == "showDrawButton" then - playmatAPI.showDrawButton(state, "All") - optionPanel[id] = state - - -- option: Clickable clue counters - elseif id == "useClueClickers" then - playmatAPI.clickableClues(state, "All") - optionPanel[id] = state - - -- update master clue counter - getObjectFromGUID("4a3aa4").setVar("useClickableCounters", state) - - -- option: Clickable resource counters - elseif id == "useResourceCounters" then - optionPanel[id] = state - - -- option: Play area snap tags - elseif id == "playAreaSnapTags" then - playAreaAPI.setLimitSnapsByType(state) - optionPanel[id] = state - - -- option: Show Title on placing scenarios - elseif id == "showTitleSplash" then - optionPanel[id] = state - - -- option: Show token arranger - elseif id == "showTokenArranger" then - -- delete previously pulled out tokens - for _, token in ipairs(getObjectsWithTag("to_be_deleted")) do token.destruct() end - - optionPanel[id] = spawnOrRemoveHelper(state, "Token Arranger", {-42.3, 1.6, -46.5}) - - -- option: Show clean up helper - elseif id == "showCleanUpHelper" then - optionPanel[id] = spawnOrRemoveHelper(state, "Clean Up Helper", {-66, 1.6, 46}) - - -- option: Show hand helper for each player - elseif id == "showHandHelper" then - optionPanel[id][1] = spawnOrRemoveHelper(state, "Hand Helper", {-50.85, 1.6, 7.32}, {0, 270, 0}, "White") - optionPanel[id][2] = spawnOrRemoveHelper(state, "Hand Helper", {-50.85, 1.6, -24.88}, {0, 270, 0}, "Orange") - optionPanel[id][3] = spawnOrRemoveHelper(state, "Hand Helper", {-39.13, 1.6, 22.45}, {0, 000, 0}, "Green") - optionPanel[id][4] = spawnOrRemoveHelper(state, "Hand Helper", {-21.57, 1.6, -22.45}, {0, 180, 0}, "Red") - - -- option: Show search assistant for each player - elseif id == "showSearchAssistant" then - optionPanel[id][1] = spawnOrRemoveHelper(state, "Search Assistant", {-50.85, 1.6, 10.25}, {0, 270, 0}) - optionPanel[id][2] = spawnOrRemoveHelper(state, "Search Assistant", {-50.85, 1.6, -21.95}, {0, 270, 0}) - optionPanel[id][3] = spawnOrRemoveHelper(state, "Search Assistant", {-36.20, 1.6, 22.45}, {0, 000, 0}) - optionPanel[id][4] = spawnOrRemoveHelper(state, "Search Assistant", {-24.50, 1.6, -22.45}, {0, 180, 0}) - - -- option: Show chaos bag manager - elseif id == "showChaosBagManager" then - optionPanel[id] = spawnOrRemoveHelper(state, "Chaos Bag Manager", {-66, 1.6, -49.5}) - - -- option: Show attachment helper - elseif id == "showAttachmentHelper" then - optionPanel[id] = spawnOrRemoveHelper(state, "Attachment Helper", {-64, 1.4, 0}) - - -- option: Show navigation overlay - elseif id == "showNavigationOverlay" then - optionPanel[id] = spawnOrRemoveHelper(state, "jaqenZann's Navigation Overlay", {-11.7, 1.6, -15}) - - -- option: Show CYOA campaign guides - elseif id == "showCYOA" then - optionPanel[id] = spawnOrRemoveHelper(state, "CYOA Campaign Guides", {65, 1.6, -11}) - - -- option: Show custom playmat images - elseif id == "showCustomPlaymatImages" then - optionPanel[id] = spawnOrRemoveHelper(state, "Custom Playmat Images", {67.5, 1.6, 37}) - - -- option: Show displacement tool - elseif id == "showDisplacementTool" then - optionPanel[id] = spawnOrRemoveHelper(state, "Displacement Tool", {-57, 1.6, 46}) - end -end - --- handler for spawn / remove functions of helper objects ----@param state Boolean Contains the state of the option: true = spawn it, false = remove it ----@param name String Name of the helper object ----@param position Vector Position of the object (where it will spawn) ----@param rotation Vector Rotation of the object for spawning (default: {0, 270, 0}) ----@param color String This is only needed for correctly setting the color of the "Hand Helper" ----@return. GUID of the spawnedObj (or nil if object was removed) -function spawnOrRemoveHelper(state, name, position, rotation, color) - if state then - Player.getPlayers()[1].pingTable(position) - return spawnHelperObject(name, position, rotation, color).getGUID() - else - return removeHelperObject(name) - end -end - --- copies the specified tool (by name) from the barrel ----@param name String Name of the object that should be copied ----@param position Table Desired position of the object -function spawnHelperObject(name, position, rotation, color) - local barrel = getObjectFromGUID(BARREL_GUID) - - -- error handling for missing barrel - if not barrel then - broadcastToAll("'Barrel' with fan-made accessories could not be found!", "Red") - return - end - - local spawnTable = { - position = position, - callback_function = function(object) - if name == "Hand Helper" then - Wait.time(function() object.call("externalColorChange", color) end, 0.1) - elseif name == "Token Arranger" then - Wait.time(function() object.call("layout") end, 0.1) - end - end - } - - -- only overrride rotation if there is one provided (object's rotation used instead) - if rotation then - spawnTable.rotation = rotation - end - - for _, obj in ipairs(barrel.getData().ContainedObjects) do - if obj["Nickname"] == name then - spawnTable.data = obj - return spawnObjectData(spawnTable) - end - end -end - --- removes the specified tool (by name) ----@param name String Object that should be removed -function removeHelperObject(name) - -- links objects name to the respective option name (to grab the GUID for removal) - local referenceTable = { - ["Token Arranger"] = "showTokenArranger", - ["Clean Up Helper"] = "showCleanUpHelper", - ["Hand Helper"] = "showHandHelper", - ["Search Assistant"] = "showSearchAssistant", - ["Chaos Bag Manager"] = "showChaosBagManager", - ["jaqenZann's Navigation Overlay"] = "showNavigationOverlay", - ["Displacement Tool"] = "showDisplacementTool", - ["Custom Playmat Images"] = "showCustomPlaymatImages", - ["Attachment Helper"] = "showAttachmentHelper", - ["CYOA Campaign Guides"] = "showCYOA" - } - - local data = optionPanel[referenceTable[name]] - - -- if there is a GUID stored, remove that object - if type(data) == "string" then - local obj = getObjectFromGUID(data) - if obj then obj.destruct() end - - -- if it is a table (e.g. for the "Hand Helper", remove all of them) - elseif type(data) == "table" then - for _, guid in pairs(data) do - local obj = getObjectFromGUID(guid) - if obj then obj.destruct() end - end - end -end - --- loads the default options -function onClick_defaultSettings() - for id, _ in pairs(optionPanel) do - local state = false - -- override for settings that are enabled by default - if id == "useSnapTags" or id == "showTitleSplash" then - state = true - end - applyOptionPanelChange(id, state) - end - - -- clean reset of variable - optionPanel = { - playAreaSnapTags = true, - showAttachmentHelper = false, - showCleanUpHelper = false, - showChaosBagManager = false, - showCustomPlaymatImages = false, - showCYOA = false, - showDisplacementTool = false, - showDrawButton = false, - showHandHelper = {}, - showNavigationOverlay = false, - showSearchAssistant = {}, - showTitleSplash = true, - showTokenArranger = false, - useClueClickers = false, - useSnapTags = true - } - - -- update UI - updateOptionPanelState() -end - --- splash scenario title on setup -function titleSplash(scenarioName) - if optionPanel['showTitleSplash'] then - - -- if there's any ongoing title being displayed, hide it and cancel the waiting function - if hideTitleSplashWaitFunctionId then - Wait.stop(hideTitleSplashWaitFunctionId) - hideTitleSplashWaitFunctionId = nil - UI.setAttribute('title_splash', 'active', false) - end - - -- display scenario name and set a 4 seconds (2 seconds animation and 2 seconds on screen) - -- wait timer to hide the scenario name - UI.setValue('title_splash_text', scenarioName) - UI.show('title_splash') - hideTitleSplashWaitFunctionId = Wait.time(function() - UI.hide('title_splash') - hideTitleSplashWaitFunctionId = nil - end, 4) - end -end -end) -__bundle_register("core/PlayAreaApi", function(require, _LOADED, __bundle_register, __bundle_modules) -do - local PlayAreaApi = { } - - local PLAY_AREA_GUID = "721ba2" - - -- Returns the current value of the investigator counter from the playmat - ---@return Integer. Number of investigators currently set on the counter - PlayAreaApi.getInvestigatorCount = function() - return getObjectFromGUID(PLAY_AREA_GUID).call("getInvestigatorCount") - end - - -- Move all contents on the play area (cards, tokens, etc) one slot in the given direction. Certain - -- fixed objects will be ignored, as will anything the player has tagged with - -- 'displacement_excluded' - ---@param playerColor Color of the player requesting the shift. Used solely to send an error - --- message in the unlikely case that the scripting zone has been deleted - PlayAreaApi.shiftContentsUp = function(playerColor) - return getObjectFromGUID(PLAY_AREA_GUID).call("shiftContentsUp", playerColor) - end - - PlayAreaApi.shiftContentsDown = function(playerColor) - return getObjectFromGUID(PLAY_AREA_GUID).call("shiftContentsDown", playerColor) - end - - PlayAreaApi.shiftContentsLeft = function(playerColor) - return getObjectFromGUID(PLAY_AREA_GUID).call("shiftContentsLeft", playerColor) - end - - PlayAreaApi.shiftContentsRight = function(playerColor) - return getObjectFromGUID(PLAY_AREA_GUID).call("shiftContentsRight", playerColor) - end - - -- Reset the play area's tracking of which cards have had tokens spawned. - PlayAreaApi.resetSpawnedCards = function() - return getObjectFromGUID(PLAY_AREA_GUID).call("resetSpawnedCards") - end - - -- Event to be called when the current scenario has changed. - ---@param scenarioName Name of the new scenario - PlayAreaApi.onScenarioChanged = function(scenarioName) - getObjectFromGUID(PLAY_AREA_GUID).call("onScenarioChanged", scenarioName) - end - - -- Sets this playmat's snap points to limit snapping to locations or not. - -- If matchTypes is false, snap points will be reset to snap all cards. - ---@param matchTypes Boolean Whether snap points should only snap for the matching card types. - PlayAreaApi.setLimitSnapsByType = function(matchCardTypes) - getObjectFromGUID(PLAY_AREA_GUID).call("setLimitSnapsByType", matchCardTypes) - end - - -- Receiver for the Global tryObjectEnterContainer event. Used to clear vector lines from dragged - -- cards before they're destroyed by entering the container - PlayAreaApi.tryObjectEnterContainer = function(container, object) - getObjectFromGUID(PLAY_AREA_GUID).call("tryObjectEnterContainer", - { container = container, object = object }) - end - - return PlayAreaApi -end -end) return __bundle_require("__root") diff --git a/unpacked.xml b/unpacked.xml index d41be3201..d13dcaf88 100644 --- a/unpacked.xml +++ b/unpacked.xml @@ -99,16 +99,14 @@ - - + @@ -146,7 +145,7 @@ outline="grey" showAnimation="SlideIn_Right" hideAnimation="SlideOut_Right" - animationDuration="0.1" /> + animationDuration="0.2" /> - + - Token Arranger - See the contents of the chaos bag at a glance! This tool displays a sorted table of the tokens to allow easier guessing of your odds. + Attachment Helper + Provides a card-sized bag for cards that are attached to other cards (e.g. Backpack). - - - - - - - - - Clean Up Helper - Useful for campaign-play: It resets play areas to allow continuous gameplay in the same savegame. - - - - - - - - - - - - Hand Helper - Never count your hand cards again! This tool does that for you and additionally enables easy discarding of random cards. - - - - - - - - - - - - Search Assistant - Quickly search 3, 6, 9 or the top X cards of your deck! - - - - + @@ -401,45 +358,17 @@ - + - Attachment Helper - Provides a card-sized bag for cards that are attached to other cards (e.g. Backpack). + Clean Up Helper + Useful for campaign-play: It resets play areas to allow continuous gameplay in the same savegame. - - - - - - - - - Navigation Overlay - This enables an overlay for quickly moving the camera to various points on the table. - - - - - - - - - - - - CYOA Campaign Guides - Displays in a "Choose Your Own Adventure" style redesigned campaign guides. - - - - + @@ -457,6 +386,20 @@ + + + + + CYOA Campaign Guides + Displays in a "Choose Your Own Adventure" style redesigned campaign guides. + + + + + + + @@ -470,6 +413,64 @@ onValueChanged="onClick_toggleOption(showDisplacementTool)"/> + + + + + + Hand Helper + Never count your hand cards again! This tool does that for you and additionally enables easy discarding of random cards. + + + + + + + + + + + + Navigation Overlay + This enables an overlay for quickly moving the camera to various points on the table. + + + + + + + + + + + + + + Search Assistant + Quickly search 3, 6, 9 or the top X cards of your deck! + + + + + + + + + + + + Token Arranger + See the contents of the chaos bag at a glance! This tool displays a sorted table of the tokens to allow easier guessing of your odds. + + + + + + @@ -491,4 +492,86 @@ + + + + + + + + + + + + + + + Placeholder + + + + + + + + + + Placeholder + + + + + + + + + Visit the usual place to receive this update. + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/unpacked.yaml b/unpacked.yaml index 919ee3e50..d7afce9ce 100644 --- a/unpacked.yaml +++ b/unpacked.yaml @@ -11,7 +11,7 @@ CameraStates: Rotation: x: 64.34372 y: 90.3332 - z: 0 + z: 0.0 Zoomed: false - AbsolutePosition: x: -47.7179832 @@ -25,8 +25,16 @@ CameraStates: Rotation: x: 64.99999 y: 89.99999 - z: 0 + z: 0.0 Zoomed: false +- null +- null +- null +- null +- null +- null +- null +- null ComponentTags: labels: - displayed: import_configuration_provider @@ -35,10 +43,6 @@ ComponentTags: normalized: allcardshotfix - displayed: LinkedPhaseTracker normalized: linkedphasetracker - - displayed: token_list_provider - normalized: token_list_provider - - displayed: token_image_provider - normalized: token_image_provider - displayed: chaosBag normalized: chaosBag - displayed: displacement_excluded @@ -53,8 +57,8 @@ ComponentTags: normalized: scenariocard - displayed: Location normalized: location - - displayed: to_be_deleted - normalized: to_be_deleted + - displayed: tempToken + normalized: temptoken - displayed: Minicard normalized: minicard - displayed: DoomCounter_ignore @@ -67,6 +71,10 @@ ComponentTags: normalized: arkham_setup_memory_object - displayed: ActionToken normalized: actiontoken + - displayed: LargeBox + normalized: largebox + - displayed: SoundCube + normalized: soundcube CustomUIAssets: - Name: refresh Type: 0 @@ -191,30 +199,18 @@ CustomUIAssets: - Name: TitleGradient Type: 0 URL: https://i.imgur.com/Mdjm349.png -Date: Fri Jan 27 20:00:38 UTC 2023 +- Name: FinnIcon + Type: 0 + URL: http://cloud-3.steamusercontent.com/ugc/2037357792052848566/5DA900C430E97D3DFF2C9B8A3DB1CB2271791FC7/ +Date: 4/20/2023 8:03:20 PM DecalPallet: - ImageURL: http://cloud-3.steamusercontent.com/ugc/1474319121424323663/BC5570ECF747F1B30224461B576E8B0FE7FA5F33/ Name: Achivement Checkmark Size: 0.1 - ImageURL: https://i.imgur.com/saWedQ0.png Name: Victory Display - Size: 15 -Decals: -- CustomDecal: - ImageURL: https://i.imgur.com/saWedQ0.png - Name: Victory Display - Size: 15 - Transform: - posX: -1.76003075 - posY: 1.491499 - posZ: 28.6174583 - rotX: 90 - rotY: 89.6667938 - rotZ: 0 - scaleX: 15 - scaleY: 15 - scaleZ: 15 -EpochTime: 1674849638 + Size: 15.0 +EpochTime: 1682039000 GameComplexity: '' GameMode: Arkham Horror LCG - Super Complete Edition GameType: '' @@ -222,21 +218,21 @@ Gravity: 0.5 Grid: BothSnapping: false Color: - b: 0 - g: 0 - r: 0 + b: 0.0 + g: 0.0 + r: 0.0 Lines: false Offset: false Opacity: 0.75 PosOffset: - x: 0 - y: 1 - z: 0 + x: 0.0 + y: 1.0 + z: 0.0 Snapping: false ThickLines: false Type: 0 - xSize: 2 - ySize: 2 + xSize: 2.0 + ySize: 2.0 Hands: DisableUnused: false Enable: true @@ -259,13 +255,13 @@ Lighting: LightColor: b: 0.8902 g: 0.9804 - r: 1 + r: 1.0 LightIntensity: 0.54 - LutContribution: 1 + LutContribution: 1.0 LutIndex: 0 - ReflectionIntensity: 1 + ReflectionIntensity: 1.0 LuaScript: !include 'unpacked.ttslua' -LuaScriptState: '{"optionPanel":{"playAreaSnapTags":true,"showAttachmentHelper":false,"showChaosBagManager":false,"showCleanUpHelper":false,"showCustomPlaymatImages":false,"showCYOA":false,"showDisplacementTool":false,"showDrawButton":false,"showHandHelper":[],"showNavigationOverlay":false,"showSearchAssistant":[],"showTitleSplash":true,"showTokenArranger":false,"useClueClickers":false,"useSnapTags":true}}' +LuaScriptState: '{"acknowledgedUpgradeVersions":[],"optionPanel":{"playAreaSnapTags":true,"showAttachmentHelper":false,"showChaosBagManager":false,"showCleanUpHelper":false,"showCustomPlaymatImages":false,"showCYOA":false,"showDisplacementTool":false,"showDrawButton":false,"showHandHelper":[],"showNavigationOverlay":false,"showSearchAssistant":[],"showTitleSplash":true,"showTokenArranger":false,"useClueClickers":false,"useSnapTags":true}}' MusicPlayer: AudioLibrary: - Item1: http://cloud-3.steamusercontent.com/ugc/784110538847453001/4481D1CC5684FCF04AB143954DEFE09E94BF5CEB/ @@ -376,7 +372,7 @@ ObjectStates: - !include 'unpacked/Custom_Model_Bag Trash 70b9f6.yaml' - !include 'unpacked/Custom_Model_Infinite_Bag Resource tokens 0168ae.yaml' - !include 'unpacked/Custom_Model_Infinite_Bag Horror tokens ae1a4e.yaml' -- !include 'unpacked/Custom_Model_Infinite_Bag Damage Tokens b0ef6c.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Damage tokens b0ef6c.yaml' - !include 'unpacked/Custom_Model_Bag Trash 4b8594.yaml' - !include 'unpacked/Custom_Model_Bag Trash 5f896a.yaml' - !include 'unpacked/Custom_Model_Bag Trash 147e80.yaml' @@ -387,12 +383,12 @@ ObjectStates: - !include 'unpacked/Custom_Model_Infinite_Bag Clue tokens 3b2550.yaml' - !include 'unpacked/Custom_Model_Infinite_Bag Horror tokens 7bd2a0.yaml' - !include 'unpacked/Custom_Model_Infinite_Bag Doom tokens 16fcd6.yaml' -- !include 'unpacked/Custom_Model_Infinite_Bag Damage Tokens 93f4a0.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Damage tokens 93f4a0.yaml' - !include 'unpacked/Custom_Model_Infinite_Bag Resource tokens fd617a.yaml' - !include 'unpacked/Custom_Model_Infinite_Bag Clue tokens 31fa39.yaml' - !include 'unpacked/Custom_Model_Infinite_Bag Horror tokens c3ecf4.yaml' - !include 'unpacked/Custom_Model_Infinite_Bag Doom tokens 47ffc3.yaml' -- !include 'unpacked/Custom_Model_Infinite_Bag Damage Tokens 480bda.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Damage tokens 480bda.yaml' - !include 'unpacked/Custom_Model_Infinite_Bag Resource tokens 9fadf9.yaml' - !include 'unpacked/Custom_Model_Infinite_Bag Connection markers 170f10.yaml' - !include 'unpacked/FogOfWarTrigger 3aab97.yaml' @@ -414,13 +410,11 @@ ObjectStates: - !include 'unpacked/Custom_Model_Bag Bless tokens afa06b.yaml' - !include 'unpacked/Custom_Model_Bag Curse tokens bd0253.yaml' - !include 'unpacked/Custom_Tile Token Remover 0a5a29.yaml' -- !include 'unpacked/Checker_white Token Spawner 36b4ee.yaml' +- !include 'unpacked/Checker_white Token Spawn Tool 36b4ee.yaml' - !include 'unpacked/Custom_Model_Bag Official StandaloneChallenge Scenarios 0ef5c8.yaml' - !include 'unpacked/Deck Tarot Deck 77f1e5.yaml' - !include 'unpacked/Bag Tarot Deck (Scripted) a230f9.yaml' - !include 'unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38.yaml' -- !include 'unpacked/Checker_black UI Builder ddd2eb.yaml' -- !include 'unpacked/Checker_black Command Manager a0b1de.yaml' - !include 'unpacked/Custom_Model CoreNight of the Zealot 64a613.yaml' - !include 'unpacked/Custom_Model The Dunwich Legacy 2898f6.yaml' - !include 'unpacked/Custom_Model The Path to Carcosa aca04c.yaml' @@ -445,22 +439,22 @@ ObjectStates: - !include 'unpacked/Custom_Token Other Doom in Play 652ff3.yaml' - !include 'unpacked/Custom_Tile Playermat 1 White 8b081b.yaml' - !include 'unpacked/Custom_Tile Playermat 2 Orange bd0ff4.yaml' -- !include 'unpacked/Custom_Tile Neutral 637e17.yaml' -- !include 'unpacked/Custom_Tile Neutral e003fe.yaml' -- !include 'unpacked/Custom_Tile Neutral 8a496e.yaml' -- !include 'unpacked/Custom_Tile Neutral e1ab8d.yaml' -- !include 'unpacked/Custom_Tile Neutral 9312d8.yaml' -- !include 'unpacked/Custom_Tile Neutral bfcaf4.yaml' -- !include 'unpacked/Custom_Tile Neutral a1e2a3.yaml' -- !include 'unpacked/Custom_Tile Neutral 460250.yaml' -- !include 'unpacked/Custom_Tile Neutral 7ffb43.yaml' -- !include 'unpacked/Custom_Tile Neutral d7910b.yaml' -- !include 'unpacked/Custom_Tile Neutral b8409d.yaml' -- !include 'unpacked/Custom_Tile Neutral 719ff4.yaml' -- !include 'unpacked/Custom_Tile Neutral 49bf4b.yaml' -- !include 'unpacked/Custom_Tile Neutral 26a0a0.yaml' -- !include 'unpacked/Custom_Tile Neutral a7c0f0.yaml' -- !include 'unpacked/Custom_Tile Neutral bf7cc9.yaml' +- !include 'unpacked/Custom_Tile Neutral 2691e1.yaml' +- !include 'unpacked/Custom_Tile Neutral 748245.yaml' +- !include 'unpacked/Custom_Tile Neutral 271b17.yaml' +- !include 'unpacked/Custom_Tile Neutral 5bafdf.yaml' +- !include 'unpacked/Custom_Tile Neutral 012577.yaml' +- !include 'unpacked/Custom_Tile Neutral 04765b.yaml' +- !include 'unpacked/Custom_Tile Neutral b71036.yaml' +- !include 'unpacked/Custom_Tile Neutral 1cb302.yaml' +- !include 'unpacked/Custom_Tile Neutral bbc5d4.yaml' +- !include 'unpacked/Custom_Tile Neutral 429bb3.yaml' +- !include 'unpacked/Custom_Tile Neutral 183dbe.yaml' +- !include 'unpacked/Custom_Tile Neutral b80db6.yaml' +- !include 'unpacked/Custom_Tile Neutral af1927.yaml' +- !include 'unpacked/Custom_Tile Neutral 0329cc.yaml' +- !include 'unpacked/Custom_Tile Neutral 5bec40.yaml' +- !include 'unpacked/Custom_Tile Neutral 5825ca.yaml' - !include 'unpacked/Custom_Token Lead Investigator acaa93.yaml' - !include 'unpacked/Custom_Tile ArkhamDB Deck Importer a28140.yaml' - !include 'unpacked/Checker_white Configuration 03804b.yaml' @@ -492,15 +486,23 @@ ObjectStates: - !include 'unpacked/Custom_Model Decoration - Ammo 0a3b03.yaml' - !include 'unpacked/Custom_Model Decoration - Ammo b43845.yaml' - !include 'unpacked/Custom_Model Decoration - Ammo d35ee9.yaml' -- !include 'unpacked/Notecard Arkham SCE 3.0.0 - 1272023 - Page 1 f873a8.yaml' -PlayArea: 1 +- !include 'unpacked/Custom_Token Victory Display 6ccd6d.yaml' +- !include 'unpacked/Custom_Tile Campaign Overview e03c01.yaml' +- !include 'unpacked/Bag OptionPanel Source 830bd0.yaml' +- !include 'unpacked/Custom_Assetbundle SoundCube 3c988f.yaml' +- !include 'unpacked/go_game_piece_white Game Key Handler fce69c.yaml' +- !include 'unpacked/3DText d628cc.yaml' +- !include 'unpacked/Custom_Model_Bag The Colour Out of Oz be7d21.yaml' +- !include 'unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b.yaml' +- !include 'unpacked/Notecard Arkham SCE 3.1.0 - 4202023 - Page 1 e1b8df.yaml' +PlayArea: 1.0 PlayerCounts: - 0 - 0 PlayingTime: - 0 - 0 -SaveName: Arkham SCE - 3.0.0 +SaveName: Arkham SCE - 3.1.0 Sky: Sky_Museum SkyURL: https://i.imgur.com/GkQqaOF.jpg SnapPoints: @@ -509,9 +511,9 @@ SnapPoints: y: 1.59 z: 10.38 Rotation: - x: 0 - y: 270 - z: 0 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -2.94 y: 1.58 @@ -625,885 +627,93 @@ SnapPoints: y: 1.48 z: -32.23 - Position: - x: 37.42 - y: 1.28 - z: 62.56 -- Position: - x: 37.42 - y: 1.28 - z: 67.16 -- Position: - x: 37.42 - y: 1.28 - z: 71.76 -- Position: - x: 37.42 - y: 1.28 - z: 74.06 -- Position: - x: 37.42 - y: 1.28 - z: 78.66 -- Position: - x: 37.42 - y: 1.29 - z: 80.96 -- Position: - x: 37.42 - y: 1.29 - z: 85.56 -- Position: - x: 37.42 - y: 1.29 - z: 90.16 -- Position: - x: 37.42 - y: 1.29 - z: 87.86 -- Position: - x: 37.42 - y: 1.29 - z: 83.26 -- Position: - x: 37.42 - y: 1.28 - z: 76.36 -- Position: - x: 37.42 - y: 1.28 - z: 69.46 -- Position: - x: 33.86 - y: 1.28 - z: 69.45 -- Position: - x: 33.86 - y: 1.28 - z: 80.95 -- Position: - x: 37.42 - y: 1.28 - z: 57.96 -- Position: - x: 33.87 - y: 1.28 - z: 57.95 -- Position: - x: 37.42 - y: 1.28 - z: 64.86 -- Position: - x: 37.42 - y: 1.28 - z: 53.36 -- Position: - x: 33.87 - y: 1.28 - z: 53.35 -- Position: - x: 33.87 - y: 1.27 - z: 51.06 -- Position: - x: 37.4 - y: 1.28 - z: 51.07 -- Position: - x: 37.4 - y: 1.28 - z: 48.76 -- Position: - x: 33.87 - y: 1.27 - z: 48.75 -- Position: - x: 33.86 - y: 1.28 - z: 76.35 -- Position: - x: 45.98 - y: 1.29 - z: 92.45 -- Position: - x: 45.98 - y: 1.29 - z: 90.15 -- Position: - x: 45.98 - y: 1.29 - z: 87.85 -- Position: - x: 45.98 - y: 1.29 - z: 85.55 -- Position: - x: 45.98 - y: 1.29 - z: 83.25 -- Position: - x: 45.98 - y: 1.29 - z: 80.95 -- Position: - x: 45.98 - y: 1.29 - z: 78.65 -- Position: - x: 45.98 - y: 1.29 - z: 76.35 -- Position: - x: 45.98 - y: 1.29 - z: 74.05 -- Position: - x: 45.98 - y: 1.29 - z: 71.75 -- Position: - x: 45.98 - y: 1.28 - z: 69.45 -- Position: - x: 45.98 - y: 1.28 - z: 67.15 -- Position: - x: 45.98 - y: 1.28 - z: 64.85 -- Position: - x: 45.98 - y: 1.28 - z: 62.55 -- Position: - x: 45.98 - y: 1.28 - z: 60.25 -- Position: - x: 45.98 - y: 1.28 - z: 57.95 -- Position: - x: 45.98 - y: 1.28 - z: 55.65 -- Position: - x: 45.98 - y: 1.28 - z: 53.35 -- Position: - x: 45.96 - y: 1.28 - z: 51.06 -- Position: - x: 45.96 - y: 1.28 - z: 48.76 -- Position: - x: 45.64 - y: 1.29 - z: -47.41 -- Position: - x: 45.64 - y: 1.29 - z: -49.71 -- Position: - x: 45.64 - y: 1.29 - z: -52.01 -- Position: - x: 45.64 - y: 1.29 - z: -54.31 -- Position: - x: 45.64 - y: 1.29 - z: -56.61 -- Position: - x: 45.64 - y: 1.29 - z: -58.91 -- Position: - x: 45.64 - y: 1.29 - z: -61.21 -- Position: - x: 45.64 - y: 1.29 - z: -63.51 -- Position: - x: 45.64 - y: 1.29 - z: -65.81 -- Position: - x: 45.64 - y: 1.29 - z: -68.11 -- Position: - x: 45.64 - y: 1.28 - z: -70.41 -- Position: - x: 45.64 - y: 1.28 - z: -72.71 -- Position: - x: 45.64 - y: 1.28 - z: -75.01 -- Position: - x: 45.64 - y: 1.28 - z: -77.31 -- Position: - x: 45.64 - y: 1.28 - z: -79.61 -- Position: - x: 45.64 - y: 1.28 - z: -81.91 -- Position: - x: 45.64 - y: 1.28 - z: -84.21 -- Position: - x: 45.64 - y: 1.28 - z: -86.51 -- Position: - x: 45.62 - y: 1.28 - z: -88.8 -- Position: - x: 45.62 - y: 1.28 - z: -91.11 -- Position: - x: 32.98 - y: 1.29 - z: -47.41 -- Position: - x: 32.98 - y: 1.29 - z: -52.01 -- Position: - x: 32.98 - y: 1.28 - z: -56.61 -- Position: - x: 32.98 - y: 1.28 - z: -65.81 -- Position: - x: 32.98 - y: 1.28 - z: -72.71 -- Position: - x: 32.98 - y: 1.28 - z: -79.61 -- Position: - x: 32.98 - y: 1.28 - z: -86.51 -- Position: - x: 36.61 - y: 1.28 - z: -88.8 -- Position: - x: 36.62 - y: 1.28 - z: -84.21 -- Position: - x: 36.62 - y: 1.28 - z: -63.51 -- Position: - x: 36.62 - y: 1.29 - z: -56.61 -- Position: - x: 36.62 - y: 1.29 - z: -49.71 -- Position: - x: 40.29 - y: 1.28 - z: -65.82 -- Position: - x: 40.27 - y: 1.28 - z: -88.81 -- Position: - x: 40.29 - y: 1.28 - z: -81.92 -- Position: - x: 40.29 - y: 1.28 - z: -72.72 -- Position: - x: 40.29 - y: 1.28 - z: -68.12 -- Position: - x: 40.29 - y: 1.28 - z: -63.52 -- Position: - x: 40.29 - y: 1.29 - z: -54.32 -- Position: - x: 40.29 - y: 1.29 - z: -49.72 -- Position: - x: 40.29 - y: 1.29 - z: -47.42 -- Position: - x: 40.29 - y: 1.29 - z: -52.02 -- Position: - x: 40.29 - y: 1.29 - z: -56.62 -- Position: - x: 40.29 - y: 1.29 - z: -58.92 -- Position: - x: 40.29 - y: 1.28 - z: -61.22 -- Position: - x: 40.29 - y: 1.28 - z: -70.42 -- Position: - x: 36.62 - y: 1.28 - z: -75.01 -- Position: - x: 40.29 - y: 1.28 - z: -77.32 -- Position: - x: 40.29 - y: 1.28 - z: -75.02 -- Position: - x: 36.62 - y: 1.28 - z: -77.31 -- Position: - x: 40.29 - y: 1.28 - z: -79.62 -- Position: - x: 36.62 - y: 1.28 - z: -79.61 -- Position: - x: 36.62 - y: 1.28 - z: -81.91 -- Position: - x: 40.29 - y: 1.28 - z: -84.22 -- Position: - x: 40.29 - y: 1.28 - z: -86.52 -- Position: - x: 36.62 - y: 1.28 - z: -86.51 -- Position: - x: 36.61 - y: 1.28 - z: -91.1 -- Position: - x: 40.27 - y: 1.28 - z: -91.12 -- Position: - x: 32.97 - y: 1.27 - z: -91.1 -- Position: - x: 32.97 - y: 1.27 - z: -88.8 -- Position: - x: 32.98 - y: 1.28 - z: -84.21 -- Position: - x: 32.98 - y: 1.28 - z: -81.91 -- Position: - x: 32.98 - y: 1.28 - z: -77.31 -- Position: - x: 32.98 - y: 1.28 - z: -75.01 -- Position: - x: 32.98 - y: 1.28 - z: -70.41 -- Position: - x: 32.98 - y: 1.28 - z: -68.11 -- Position: - x: 36.62 - y: 1.28 - z: -68.11 -- Position: - x: 36.62 - y: 1.28 - z: -65.81 -- Position: - x: 36.62 - y: 1.28 - z: -70.41 -- Position: - x: 36.62 - y: 1.28 - z: -72.71 -- Position: - x: 32.98 - y: 1.28 - z: -63.51 -- Position: - x: 32.98 - y: 1.28 - z: -61.21 -- Position: - x: 32.98 - y: 1.28 - z: -58.91 -- Position: - x: 36.62 - y: 1.28 - z: -58.91 -- Position: - x: 36.62 - y: 1.28 - z: -61.21 -- Position: - x: 36.62 - y: 1.29 - z: -54.31 -- Position: - x: 32.98 - y: 1.28 - z: -54.31 -- Position: - x: 36.62 - y: 1.29 - z: -52.01 -- Position: - x: 32.98 - y: 1.29 - z: -49.71 -- Position: - x: 36.62 - y: 1.29 - z: -47.41 -- Position: - x: 29.34 - y: 1.29 - z: -47.41 -- Position: - x: 29.34 - y: 1.28 - z: -49.71 -- Position: - x: 29.34 - y: 1.28 - z: -52.01 -- Position: - x: 29.34 - y: 1.28 - z: -54.31 -- Position: - x: 29.34 - y: 1.28 - z: -56.61 -- Position: - x: 29.34 - y: 1.28 - z: -58.91 -- Position: - x: 29.34 - y: 1.28 - z: -61.21 -- Position: - x: 29.34 - y: 1.28 - z: -63.51 -- Position: - x: 29.34 - y: 1.28 - z: -68.11 -- Position: - x: 29.34 - y: 1.28 - z: -65.81 -- Position: - x: 29.34 - y: 1.28 - z: -70.41 -- Position: - x: 29.34 - y: 1.28 - z: -72.71 -- Position: - x: 29.34 - y: 1.28 - z: -75.01 -- Position: - x: 29.34 - y: 1.28 - z: -77.31 -- Position: - x: 29.34 - y: 1.28 - z: -79.61 -- Position: - x: 29.34 - y: 1.28 - z: -81.91 -- Position: - x: 29.34 - y: 1.27 - z: -84.21 -- Position: - x: 29.34 - y: 1.27 - z: -86.51 -- Position: - x: 29.32 - y: 1.27 - z: -88.8 -- Position: - x: 29.32 - y: 1.27 - z: -91.1 -- Position: - x: 30.31 - y: 1.29 - z: 92.45 -- Position: - x: 30.31 - y: 1.29 - z: 90.15 -- Position: - x: 30.31 - y: 1.28 - z: 87.85 -- Position: - x: 30.31 - y: 1.28 - z: 85.55 -- Position: - x: 30.31 - y: 1.28 - z: 83.25 -- Position: - x: 30.31 - y: 1.28 - z: 78.65 -- Position: - x: 30.31 - y: 1.28 - z: 80.95 -- Position: - x: 30.31 - y: 1.28 - z: 76.35 -- Position: - x: 30.31 - y: 1.28 - z: 74.05 -- Position: - x: 30.31 - y: 1.28 - z: 71.75 -- Position: - x: 30.31 - y: 1.28 - z: 67.15 -- Position: - x: 30.31 - y: 1.28 - z: 64.85 -- Position: - x: 30.31 - y: 1.28 - z: 62.55 -- Position: - x: 30.31 - y: 1.28 - z: 60.25 -- Position: - x: 30.31 - y: 1.28 - z: 57.95 -- Position: - x: 30.31 - y: 1.27 - z: 55.65 -- Position: - x: 30.31 - y: 1.27 - z: 53.37 -- Position: - x: 30.31 - y: 1.27 - z: 51.06 -- Position: - x: 30.31 - y: 1.27 - z: 48.75 -- Position: - x: 30.31 - y: 1.28 - z: 69.45 -- Position: - x: -29.18 - y: 1.26 - z: 95.8 -- Position: - x: 58.44 - y: 1.39 - z: -27.88 -- Position: - x: 58.48 - y: 1.4 - z: -14.35 -- Position: - x: 58.49 - y: 1.4 - z: 0.12 -- Position: - x: 58.53 - y: 1.4 - z: 14.47 -- Position: - x: 58.53 - y: 1.41 - z: 28.52 -- Position: - x: 66.98 - y: 1.4 - z: 28.53 -- Position: - x: 66.99 - y: 1.39 - z: 14.5 -- Position: - x: 66.99 - y: 1.39 - z: 0.14 -- Position: - x: 66.99 - y: 1.38 - z: -14.34 -- Position: - x: 66.9 - y: 1.38 - z: -27.91 -- Position: - x: -42.71 - y: 1.25 - z: 85.61 -- Position: - x: -42.71 - y: 1.25 - z: 83.31 -- Position: - x: -42.71 - y: 1.25 - z: 81.01 -- Position: - x: -42.71 - y: 1.25 - z: 78.71 -- Position: - x: -42.71 - y: 1.25 - z: 76.41 -- Position: - x: -42.71 - y: 1.25 - z: 74.11 -- Position: - x: -42.71 - y: 1.25 - z: 71.81 -- Position: - x: -42.71 - y: 1.25 - z: 69.51 -- Position: - x: -42.71 - y: 1.25 - z: 67.21 -- Position: - x: -42.71 - y: 1.25 - z: 64.91 -- Position: - x: -42.71 - y: 1.25 - z: 62.61 -- Position: - x: -42.71 - y: 1.25 - z: 60.31 -- Position: - x: -42.71 - y: 1.25 - z: 58.01 -- Position: - x: -42.71 - y: 1.25 - z: 55.71 -- Position: - x: -42.71 - y: 1.25 - z: 53.41 -- Position: - x: -42.71 - y: 1.25 - z: 51.11 -- Position: - x: -45.11 - y: 1.25 - z: 65.42 -- Position: - x: -45.11 - y: 1.25 - z: 64.49 -- Position: - x: -46.04 - y: 1.25 - z: 64.49 -- Position: - x: -46.04 - y: 1.25 - z: 65.42 -- Position: - x: 29.09 - y: 1.45 - z: 14.5 -- Position: - x: -31.0 - y: 1.65 - z: 24.81 -- Position: - x: -62.57 - y: 1.57 - z: 0.0 -- Position: - x: 45.34 + x: 65.0 y: 1.48 - z: -55 + z: -55.0 - Position: - x: 65 + x: 65.0 y: 1.48 - z: -71 + z: -71.0 - Position: - x: 65 + x: 65.0 y: 1.48 - z: -87 + z: -87.0 - Position: - x: 52 + x: 52.0 y: 1.48 - z: -87 + z: -87.0 - Position: - x: 52 + x: 52.0 y: 1.48 - z: -71 + z: -71.0 - Position: - x: 52 + x: 52.0 y: 1.48 - z: -55 + z: -55.0 - Position: - x: 39 + x: 39.0 y: 1.48 - z: -55 + z: -55.0 - Position: - x: 39 + x: 39.0 y: 1.48 - z: -71 + z: -71.0 - Position: - x: 39 + x: 39.0 y: 1.48 - z: -87 + z: -87.0 - Position: - x: 26 + x: 26.0 y: 1.48 - z: -87 + z: -87.0 - Position: - x: 26 + x: 26.0 y: 1.48 - z: -71 + z: -71.0 - Position: - x: 26 + x: 26.0 y: 1.48 - z: -55 + z: -55.0 - Position: - x: 13 + x: 13.0 y: 1.48 - z: -55 + z: -55.0 - Position: - x: 13 + x: 13.0 y: 1.48 - z: -71 + z: -71.0 - Position: - x: 0 + x: 0.0 y: 1.48 - z: -55 + z: -55.0 - Position: - x: 0 + x: 0.0 y: 1.48 - z: -71 -- Position: - x: 0 - y: 1.48 - z: -87 + z: -71.0 - Position: x: 1.6 y: 1.58 z: -13.75 Rotation: - x: 0 - y: 315 - z: 0 -- Position: - x: -27 - y: 1.48 - z: -71 + x: 0.0 + y: 315.0 + z: 0.0 - Position: x: -56.24 y: 1.49 z: -80.19 Rotation: - x: 0 - y: 135 - z: 180 + x: 0.0 + y: 135.0 + z: 180.0 +- Position: + x: 6.5 + y: 1.48 + z: -87.0 +- Position: + x: -27.0 + y: 1.48 + z: -56.16 TabStates: '10': body: "Created by Whimsical\n\nAnything that passes over the remover that isn't diff --git a/unpacked/Checker_black UI Builder ddd2eb.yaml b/unpacked/3DText d628cc.yaml similarity index 50% rename from unpacked/Checker_black UI Builder ddd2eb.yaml rename to unpacked/3DText d628cc.yaml index 4346f3a5b..c814cf27a 100644 --- a/unpacked/Checker_black UI Builder ddd2eb.yaml +++ b/unpacked/3DText d628cc.yaml @@ -1,16 +1,16 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 - r: 0 + b: 1.0 + g: 1.0 + r: 1.0 Description: '' DragSelectable: true GMNotes: '' -GUID: ddd2eb +GUID: d628cc Grid: true GridProjection: false Hands: false @@ -18,23 +18,30 @@ HideWhenFaceDown: false IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: true -LuaScript: !include 'Checker_black UI Builder ddd2eb.ttslua' +LuaScript: '' LuaScriptState: '' MeasureMovement: false -Name: Checker_black -Nickname: UI Builder +Name: 3DText +Nickname: '' Snap: true Sticky: true +Text: + Text: Featured Fan Content + colorstate: + b: 1.0 + g: 1.0 + r: 1.0 + fontSize: 84 Tooltip: true Transform: - posX: 77.06 - posY: 1.3 - posZ: 8.94 - rotX: 0 - rotY: 270 - rotZ: 180 - scaleX: 0.25 - scaleY: 0.25 - scaleZ: 0.25 + posX: -19.57 + posY: 1.7 + posZ: -83.39 + rotX: 90.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07.yaml b/unpacked/Bag All Player Cards 15bb07.yaml index 23b67b2bf..66f069966 100644 --- a/unpacked/Bag All Player Cards 15bb07.yaml +++ b/unpacked/Bag All Player Cards 15bb07.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 0 - g: 0.36652 - r: 0.70588 + b: 0.0 + g: 0.366520882 + r: 0.7058823 ContainedObjects: - !include 'Bag All Player Cards 15bb07/Card Charlie Kane 4deeff.yaml' - !include 'Bag All Player Cards 15bb07/Card Finn Edwards dd40c0.yaml' @@ -1471,7 +1471,7 @@ ContainedObjects: - !include 'Bag All Player Cards 15bb07/CardCustom Pocket Multi Tool Upgrade Sheet d706e7.yaml' - !include 'Bag All Player Cards 15bb07/CardCustom Makeshift Trap Upgrade Sheet 64dfce.yaml' -- !include 'Bag All Player Cards 15bb07/CardCustom Living Link Upgrade Sheet 19a05b.yaml' +- !include 'Bag All Player Cards 15bb07/CardCustom Living Ink Upgrade Sheet 19a05b.yaml' - !include 'Bag All Player Cards 15bb07/CardCustom Hyperphysical Shotcaster Upgrade Sheet a4eec2.yaml' - !include 'Bag All Player Cards 15bb07/CardCustom Hunter''s Armor Upgrade Sheet d2d01b.yaml' @@ -1526,6 +1526,8 @@ ContainedObjects: - !include 'Bag All Player Cards 15bb07/Card Paradimensional Understanding 3c3dfa.yaml' - !include 'Bag All Player Cards 15bb07/Card Inspector Flint 8247a5.yaml' - !include 'Bag All Player Cards 15bb07/Card Agent Ari Quinn d61c6a.yaml' +- !include 'Bag All Player Cards 15bb07/Card Deck of Possibilities fefdfa.yaml' +- !include "Bag All Player Cards 15bb07/Card Isamara Ordo\xF1ez 860cd7.yaml" Description: '' DragSelectable: true GMNotes: '' @@ -1548,14 +1550,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 77.89 - posY: 1.04 + posX: 78.0 + posY: 0.96 posZ: 27.03 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card .18 Derringer (2) f8a977.yaml b/unpacked/Bag All Player Cards 15bb07/Card .18 Derringer (2) f8a977.yaml index a192b066a..9766bb702 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .18 Derringer (2) f8a977.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .18 Derringer (2) f8a977.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550820 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.0 posY: 3.87 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card .18 Derringer 101a41.yaml b/unpacked/Bag All Player Cards 15bb07/Card .18 Derringer 101a41.yaml index 5b3f36870..0bf3d7da1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .18 Derringer 101a41.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .18 Derringer 101a41.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550803 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 8.97 posY: 4.76 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card .25 Automatic (2) 4425b5.yaml b/unpacked/Bag All Player Cards 15bb07/Card .25 Automatic (2) 4425b5.yaml index cafc4e4e9..e607f531c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .25 Automatic (2) 4425b5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .25 Automatic (2) 4425b5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 589404 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.13 posY: 5.59 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card .25 Automatic a5087b.yaml b/unpacked/Bag All Player Cards 15bb07/Card .25 Automatic a5087b.yaml index 048ba6b37..e3c193094 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .25 Automatic a5087b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .25 Automatic a5087b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587219 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.04 posY: 3.91 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card .32 Colt (2) c026c9.yaml b/unpacked/Bag All Player Cards 15bb07/Card .32 Colt (2) c026c9.yaml index 873eb0f52..0f9c48fad 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .32 Colt (2) c026c9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .32 Colt (2) c026c9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 440922 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.14 posY: 3.73 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card .32 Colt b0f851.yaml b/unpacked/Bag All Player Cards 15bb07/Card .32 Colt b0f851.yaml index 388e7f63b..d54e35927 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .32 Colt b0f851.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .32 Colt b0f851.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226328 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.97 posY: 3.76 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card .35 Winchester (Taboo) 41e560.yaml b/unpacked/Bag All Player Cards 15bb07/Card .35 Winchester (Taboo) 41e560.yaml index f9b677be9..e9fdf1dc2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .35 Winchester (Taboo) 41e560.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .35 Winchester (Taboo) 41e560.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450624 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.13 posY: 5.1 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card .35 Winchester c32e40.yaml b/unpacked/Bag All Player Cards 15bb07/Card .35 Winchester c32e40.yaml index d6176feef..0c61f5833 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .35 Winchester c32e40.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .35 Winchester c32e40.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 583200 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.15 posY: 4.16 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card .41 Derringer (2) f57af7.yaml b/unpacked/Bag All Player Cards 15bb07/Card .41 Derringer (2) f57af7.yaml index f3dcb29f8..c7e6777cb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .41 Derringer (2) f57af7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .41 Derringer (2) f57af7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315248 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card .41 Derringer fe2db3.yaml b/unpacked/Bag All Player Cards 15bb07/Card .41 Derringer fe2db3.yaml index f90512310..20c31f776 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .41 Derringer fe2db3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .41 Derringer fe2db3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368628 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card .45 Automatic (2) fe0cc0.yaml b/unpacked/Bag All Player Cards 15bb07/Card .45 Automatic (2) fe0cc0.yaml index 64879b8aa..36a14fc4c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .45 Automatic (2) fe0cc0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .45 Automatic (2) fe0cc0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226347 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.14 posY: 3.68 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card .45 Automatic 12660b.yaml b/unpacked/Bag All Player Cards 15bb07/Card .45 Automatic 12660b.yaml index ed2799fd8..b5ba86330 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .45 Automatic 12660b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .45 Automatic 12660b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226330 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 19.45 posY: 3.37 posZ: -56.62 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson (3) b492cb.yaml b/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson (3) b492cb.yaml index f2c4745e8..edb62c464 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson (3) b492cb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson (3) b492cb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 292813 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.16 posY: 3.9 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson (3) d4dbc7.yaml b/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson (3) d4dbc7.yaml index 1a82fa0d3..b8706eafb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson (3) d4dbc7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson (3) d4dbc7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 292915 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.03 posY: 3.85 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson 2c6509.yaml b/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson 2c6509.yaml index 71318b3f1..97a06799a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson 2c6509.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson 2c6509.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 277608 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 8.97 posY: 5.35 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card 21 or Bust 5210c2.yaml b/unpacked/Bag All Player Cards 15bb07/Card 21 or Bust 5210c2.yaml index 76cedead8..b5537ba0d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card 21 or Bust 5210c2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card 21 or Bust 5210c2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379038 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 2.07 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card A Chance Encounter (2) 0edef1.yaml b/unpacked/Bag All Player Cards 15bb07/Card A Chance Encounter (2) 0edef1.yaml index 40b0ee5b7..747b77a40 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card A Chance Encounter (2) 0edef1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card A Chance Encounter (2) 0edef1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368844 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.0 posY: 3.71 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card A Chance Encounter 3f3488.yaml b/unpacked/Bag All Player Cards 15bb07/Card A Chance Encounter 3f3488.yaml index 5bfe01079..d16596508 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card A Chance Encounter 3f3488.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card A Chance Encounter 3f3488.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368812 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.01 posY: 3.72 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card A Glimmer of Hope f21109.yaml b/unpacked/Bag All Player Cards 15bb07/Card A Glimmer of Hope f21109.yaml index e30ef6c4f..84300eb3f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card A Glimmer of Hope f21109.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card A Glimmer of Hope f21109.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 447733 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.04 posY: 3.93 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card A Test of Will (1) 4cfcc7.yaml b/unpacked/Bag All Player Cards 15bb07/Card A Test of Will (1) 4cfcc7.yaml index caa0ce63a..42721c7b2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card A Test of Will (1) 4cfcc7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card A Test of Will (1) 4cfcc7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368837 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 78.51 posY: 1.06 posZ: 27.14 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card A Test of Will (2) 71a760.yaml b/unpacked/Bag All Player Cards 15bb07/Card A Test of Will (2) 71a760.yaml index fd33ac1c4..45288313b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card A Test of Will (2) 71a760.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card A Test of Will (2) 71a760.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550821 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 78.51 posY: 1.06 posZ: 27.14 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card A Test of Will 48e516.yaml b/unpacked/Bag All Player Cards 15bb07/Card A Test of Will 48e516.yaml index 2f87b3d7c..0842db0ac 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card A Test of Will 48e516.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card A Test of Will 48e516.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550811 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 78.51 posY: 1.06 posZ: 27.14 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card A Watchful Peace (3) (Taboo) 125f13.yaml b/unpacked/Bag All Player Cards 15bb07/Card A Watchful Peace (3) (Taboo) 125f13.yaml index d6fab2e1f..de9c60ee8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card A Watchful Peace (3) (Taboo) 125f13.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card A Watchful Peace (3) (Taboo) 125f13.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 585500 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.12 posY: 3.88 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card A Watchful Peace (3) 176836.yaml b/unpacked/Bag All Player Cards 15bb07/Card A Watchful Peace (3) 176836.yaml index 75241b83d..b42eb58c7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card A Watchful Peace (3) 176836.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card A Watchful Peace (3) 176836.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449608 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.71 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 35a7e9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 35a7e9.yaml index 90f6b3e60..458cd569a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 35a7e9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 35a7e9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587214 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 47.53 posY: 1.99 posZ: -99.22 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 79b4af.yaml b/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 79b4af.yaml index 96dcf7be9..98f09551d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 79b4af.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 79b4af.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 375129 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 8.99 posY: 3.79 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 89fe92.yaml b/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 89fe92.yaml index 0089876ae..e08068e1a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 89fe92.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 89fe92.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 536002 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 78.69 posY: 3.33 posZ: 7.65 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Abbess Allegria Di Biase a4b514.yaml b/unpacked/Bag All Player Cards 15bb07/Card Abbess Allegria Di Biase a4b514.yaml index 1c66da840..12acac6ff 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Abbess Allegria Di Biase a4b514.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Abbess Allegria Di Biase a4b514.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 4000 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 5.18 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Abigail Foreman (4) 97e9ce.yaml b/unpacked/Bag All Player Cards 15bb07/Card Abigail Foreman (4) 97e9ce.yaml index 8c0139c71..3364741a3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Abigail Foreman (4) 97e9ce.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Abigail Foreman (4) 97e9ce.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 448839 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 5.55 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Able Bodied 051742.yaml b/unpacked/Bag All Player Cards 15bb07/Card Able Bodied 051742.yaml index 7dac27a3e..8c75901db 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Able Bodied 051742.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Able Bodied 051742.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 274606 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.79 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Abyssal Tome (2) a2d392.yaml b/unpacked/Bag All Player Cards 15bb07/Card Abyssal Tome (2) a2d392.yaml index 5286cd2a7..2a5ee4118 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Abyssal Tome (2) a2d392.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Abyssal Tome (2) a2d392.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232107 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.1 posY: 3.68 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Accursed Fate 85e7d9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Accursed Fate 85e7d9.yaml index 4954a3c94..c639988ab 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Accursed Fate 85e7d9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Accursed Fate 85e7d9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 537608 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 8.97 posY: 4.21 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Accursed Follower ef91a9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Accursed Follower ef91a9.yaml index 2b74907f1..10a1b0c48 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Accursed Follower ef91a9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Accursed Follower ef91a9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 583332 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.01 posY: 3.74 posZ: -16.7 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ace in the Hole (3) (Taboo) e5d5f0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ace in the Hole (3) (Taboo) e5d5f0.yaml index 8e853715d..fc3f602c7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ace in the Hole (3) (Taboo) e5d5f0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ace in the Hole (3) (Taboo) e5d5f0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450617 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.9 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ace in the Hole (3) 074858.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ace in the Hole (3) 074858.yaml index a4bb33fe7..680ba41b6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ace in the Hole (3) 074858.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ace in the Hole (3) 074858.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315252 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 4.01 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ace of Rods (1) 52a677.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ace of Rods (1) 52a677.yaml index 28b127452..bf3c82896 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ace of Rods (1) 52a677.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ace of Rods (1) 52a677.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 318703 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 5.27 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ace of Swords (1) c4d436.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ace of Swords (1) c4d436.yaml index a707b6a4e..3351add06 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ace of Swords (1) c4d436.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ace of Swords (1) c4d436.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 431009 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.18 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Across Space and Time fb943f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Across Space and Time fb943f.yaml index 67b953529..6e3c0c27c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Across Space and Time fb943f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Across Space and Time fb943f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232941 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.04 posY: 3.93 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Act of Desperation 0bea17.yaml b/unpacked/Bag All Player Cards 15bb07/Card Act of Desperation 0bea17.yaml index ebf1bc3a4..16f44906c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Act of Desperation 0bea17.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Act of Desperation 0bea17.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 274607 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.02 posY: 4.0 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Adaptable (1) 731d2a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Adaptable (1) 731d2a.yaml index 6cce4b6e4..9fd4a33f2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Adaptable (1) 731d2a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Adaptable (1) 731d2a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315232 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.68 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Against All Odds (2) c077bf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Against All Odds (2) c077bf.yaml index c0e7890d1..7cdfddb2c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Against All Odds (2) c077bf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Against All Odds (2) c077bf.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368850 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.7 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Agency Backup (5) d6eda3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Agency Backup (5) d6eda3.yaml index 77b34caf6..7bf69e34b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Agency Backup (5) d6eda3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Agency Backup (5) d6eda3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378618 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.22 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Agent Ari Quinn d61c6a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Agent Ari Quinn d61c6a.yaml index b45136859..3a40a7e7b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Agent Ari Quinn d61c6a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Agent Ari Quinn d61c6a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 588601 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 79.04 posY: 3.3 posZ: 23.05 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Agent Fletcher 95b0cf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Agent Fletcher 95b0cf.yaml index 4abc5a57d..cef2dd61a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Agent Fletcher 95b0cf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Agent Fletcher 95b0cf.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379006 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 17.48 posY: 2.21 posZ: 60.19 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel Back) 909f30.yaml b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel Back) 909f30.yaml index 6c2206155..c9e22fa24 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel Back) 909f30.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel Back) 909f30.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 535906 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.52 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel Front) 02db0a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel Front) 02db0a.yaml index d73fece71..acd1b6440 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel Front) 02db0a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel Front) 02db0a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 535905 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 87.05 posY: 2.12 posZ: -78.51 - rotX: 355 - rotY: 180 - rotZ: 0 + rotX: 355.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel) 01b6ef.yaml b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel) 01b6ef.yaml index 6b8d71a71..d64221fdd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel) 01b6ef.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel) 01b6ef.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 535904 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.29 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker 25e2db.yaml b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker 25e2db.yaml index 0933319ec..210a84888 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker 25e2db.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker 25e2db.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 535603 ColorDiffuse: @@ -41,9 +41,9 @@ Snap: true States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587403 ColorDiffuse: @@ -90,10 +90,10 @@ States: posY: 1.29860592 posZ: 57.949 rotX: -6.936822e-09 - rotY: 180 + rotY: 180.0 rotZ: 4.08641867e-08 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' @@ -106,11 +106,11 @@ Transform: posX: 26.93 posY: 3.69 posZ: -13.24 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker e53693.yaml b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker e53693.yaml index f36d3d1db..071310146 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker e53693.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker e53693.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 258803 ColorDiffuse: @@ -39,9 +39,9 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587103 ColorDiffuse: @@ -88,7 +88,7 @@ States: rotY: 270.0102 rotZ: 2.00479718e-07 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' @@ -100,11 +100,11 @@ Transform: posX: 26.57 posY: 3.69 posZ: -3.13 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Akachi Onyele 452ed8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Akachi Onyele 452ed8.yaml index f64b8f86f..3d309286c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Akachi Onyele 452ed8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Akachi Onyele 452ed8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 271013 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.88 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Akachi Onyele 6a9578.yaml b/unpacked/Bag All Player Cards 15bb07/Card Akachi Onyele 6a9578.yaml index 804d2545a..2291663bb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Akachi Onyele 6a9578.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Akachi Onyele 6a9578.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 259813 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.68 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Alchemical Distillation 502a4d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Alchemical Distillation 502a4d.yaml index 76dc3da0c..7e26c7020 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Alchemical Distillation 502a4d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Alchemical Distillation 502a4d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379033 ColorDiffuse: @@ -64,11 +64,11 @@ Transform: posX: 16.67 posY: 3.34 posZ: 65.93 - rotX: 357 - rotY: 270 - rotZ: 356 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 357.0 + rotY: 270.0 + rotZ: 356.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Alchemical Transmutation (2) 283e54.yaml b/unpacked/Bag All Player Cards 15bb07/Card Alchemical Transmutation (2) 283e54.yaml index a3ee24e61..b103f6f2f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Alchemical Transmutation (2) 283e54.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Alchemical Transmutation (2) 283e54.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 444020 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.16 posY: 3.97 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Alchemical Transmutation 54832d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Alchemical Transmutation 54832d.yaml index 236dd00e1..1d00a828e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Alchemical Transmutation 54832d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Alchemical Transmutation 54832d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230320 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.05 posY: 3.72 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Alejandro Vela c49b4b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Alejandro Vela c49b4b.yaml index dc5dbf517..e4d28e0f2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Alejandro Vela c49b4b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Alejandro Vela c49b4b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 235600 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.69 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Alice Luxley ae20e0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Alice Luxley ae20e0.yaml index 074468f43..dedb13c0a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Alice Luxley ae20e0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Alice Luxley ae20e0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 278010 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.68 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card All In (5) (Taboo) ff1dfe.yaml b/unpacked/Bag All Player Cards 15bb07/Card All In (5) (Taboo) ff1dfe.yaml index 83075f77e..5d52e8c48 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card All In (5) (Taboo) ff1dfe.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card All In (5) (Taboo) ff1dfe.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450620 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.12 posY: 4.01 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card All In (5) 7d3a27.yaml b/unpacked/Bag All Player Cards 15bb07/Card All In (5) 7d3a27.yaml index fc8f83672..573ccd937 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card All In (5) 7d3a27.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card All In (5) 7d3a27.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 265502 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.71 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Alter Fate (1) 9e4e11.yaml b/unpacked/Bag All Player Cards 15bb07/Card Alter Fate (1) 9e4e11.yaml index f5d0bfd24..8b1304a6f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Alter Fate (1) 9e4e11.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Alter Fate (1) 9e4e11.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545208 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.01 posY: 3.67 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Alter Fate (3) 83c86b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Alter Fate (3) 83c86b.yaml index 83f0ef045..0116bbd56 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Alter Fate (3) 83c86b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Alter Fate (3) 83c86b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368856 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 2.81 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Alyssa Graham 53867b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Alyssa Graham 53867b.yaml index 9ab835972..925599af1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Alyssa Graham 53867b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Alyssa Graham 53867b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230330 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.03 posY: 3.85 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Amanda Sharpe 05b950.yaml b/unpacked/Bag All Player Cards 15bb07/Card Amanda Sharpe 05b950.yaml index 8574e641f..ddc0a5e90 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Amanda Sharpe 05b950.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Amanda Sharpe 05b950.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449600 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 18.45 posY: 1.85 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Amanda Sharpe 155746.yaml b/unpacked/Bag All Player Cards 15bb07/Card Amanda Sharpe 155746.yaml index 84c55d76e..46fb0b5a4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Amanda Sharpe 155746.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Amanda Sharpe 155746.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 553201 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.89 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ambush (1) a1fd61.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ambush (1) a1fd61.yaml index 4231c2c93..f39874e86 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ambush (1) a1fd61.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ambush (1) a1fd61.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226338 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.12 posY: 4.07 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Amina Zidane 458edc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Amina Zidane 458edc.yaml index 1c434e73f..098d59728 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Amina Zidane 458edc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Amina Zidane 458edc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 846103 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 78.27 posY: 1.06 posZ: 26.81 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Amina Zidane 4c2a3d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Amina Zidane 4c2a3d.yaml index abb7a3ab8..8e53eaaaa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Amina Zidane 4c2a3d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Amina Zidane 4c2a3d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 843403 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.65 posY: 3.32 posZ: 36.17 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Amnesia 2210c1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Amnesia 2210c1.yaml index 83a0cb977..2396a45d8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Amnesia 2210c1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Amnesia 2210c1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 527400 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 78.78 posY: 3.32 posZ: 26.97 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Analysis 80285f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Analysis 80285f.yaml index b04cb1e49..95eafae5d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Analysis 80285f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Analysis 80285f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379042 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.67 posY: 3.38 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Analytical Mind 7b6ab5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Analytical Mind 7b6ab5.yaml index 306caa016..98cb0fa85 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Analytical Mind 7b6ab5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Analytical Mind 7b6ab5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 374532 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.58 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Anatomical Diagrams a8e495.yaml b/unpacked/Bag All Player Cards 15bb07/Card Anatomical Diagrams a8e495.yaml index 15a8f27bf..267d1434f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Anatomical Diagrams a8e495.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Anatomical Diagrams a8e495.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368409 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.01 posY: 3.85 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ancestral Knowledge (3) 7b7d14.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ancestral Knowledge (3) 7b7d14.yaml index 39ebc35be..97dbc35d0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ancestral Knowledge (3) 7b7d14.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ancestral Knowledge (3) 7b7d14.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 589202 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.51 posY: 1.06 posZ: 27.14 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ancient Ankh 0ce113.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ancient Ankh 0ce113.yaml index 9a5650cd3..d6728e0ea 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ancient Ankh 0ce113.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ancient Ankh 0ce113.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 454741 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.15 posY: 3.99 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (1) 9bc46e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (1) 9bc46e.yaml index b8d40f22c..f9a0ced4c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (1) 9bc46e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (1) 9bc46e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430639 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.16 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 3289b0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 3289b0.yaml index 8bec39923..3eb881338 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 3289b0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 3289b0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545203 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.09 posY: 3.72 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 863f91.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 863f91.yaml index fd76ebeff..c695a73c4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 863f91.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 863f91.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 262202 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 4.33 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 9c56d3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 9c56d3.yaml index 5ec88a330..ff381b6ff 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 9c56d3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 9c56d3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 262201 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.11 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Angered Spirits d8705c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Angered Spirits d8705c.yaml index 329762d5b..b2887c873 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Angered Spirits d8705c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Angered Spirits d8705c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 374717 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.16 posY: 3.43 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Anna Kaslow (4) 03a4de.yaml b/unpacked/Bag All Player Cards 15bb07/Card Anna Kaslow (4) 03a4de.yaml index e628b9a01..405025c44 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Anna Kaslow (4) 03a4de.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Anna Kaslow (4) 03a4de.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 373910 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.98 posY: 3.99 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Another Day, Another Dollar (3) 006d44.yaml b/unpacked/Bag All Player Cards 15bb07/Card Another Day, Another Dollar (3) 006d44.yaml index 2e57ff183..0b9dd68c0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Another Day, Another Dollar (3) 006d44.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Another Day, Another Dollar (3) 006d44.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378017 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.75 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Antiquary (3) 452db2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Antiquary (3) 452db2.yaml index e224a82b3..9dddf35a7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Antiquary (3) 452db2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Antiquary (3) 452db2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378962 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.18 posY: 2.94 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Anything You Can Do, Better 2c563c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Anything You Can Do, Better 2c563c.yaml index 27826ef89..3fb06d69a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Anything You Can Do, Better 2c563c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Anything You Can Do, Better 2c563c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538600 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.81 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Anyu 1bf025.yaml b/unpacked/Bag All Player Cards 15bb07/Card Anyu 1bf025.yaml index 300c76cb0..4f68edb0b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Anyu 1bf025.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Anyu 1bf025.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 452308 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.59 posY: 3.33 posZ: 7.55 - rotX: 0 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Aquinnah (1) 9393ec.yaml b/unpacked/Bag All Player Cards 15bb07/Card Aquinnah (1) 9393ec.yaml index 5acf9de85..3815dba28 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Aquinnah (1) 9393ec.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Aquinnah (1) 9393ec.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368841 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Aquinnah (3) fb9dbb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Aquinnah (3) fb9dbb.yaml index fe852356d..83d4d32f2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Aquinnah (3) fb9dbb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Aquinnah (3) fb9dbb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368861 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arbiter of Fates 4fbdb2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arbiter of Fates 4fbdb2.yaml index d5ef125c3..d279944c3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arbiter of Fates 4fbdb2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arbiter of Fates 4fbdb2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538700 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.03 posY: 3.88 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arcane Enlightenment e69708.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arcane Enlightenment e69708.yaml index b02a7b044..5e78f3491 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arcane Enlightenment e69708.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arcane Enlightenment e69708.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538803 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.72 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arcane Initiate (3) 65b30d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arcane Initiate (3) 65b30d.yaml index ef3d4e986..5ed907780 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arcane Initiate (3) 65b30d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arcane Initiate (3) 65b30d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230349 ColorDiffuse: @@ -49,11 +49,11 @@ Transform: posX: 8.98 posY: 3.75 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arcane Initiate 7307c4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arcane Initiate 7307c4.yaml index f6f941d8c..c1f4dd0fa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arcane Initiate 7307c4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arcane Initiate 7307c4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230318 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 32.98 posY: 3.33 posZ: -47.41 - rotX: 1 - rotY: 270 - rotZ: 2 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arcane Insight (4) 536b52.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arcane Insight (4) 536b52.yaml index f6b403bf1..fc643d8c4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arcane Insight (4) 536b52.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arcane Insight (4) 536b52.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430659 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.13 posY: 4.88 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arcane Research e425d0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arcane Research e425d0.yaml index 935d87f1e..55e1e232d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arcane Research e425d0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arcane Research e425d0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230315 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 5.03 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies (2) 644af9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies (2) 644af9.yaml index a88eb68a3..c94e7dde3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies (2) 644af9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies (2) 644af9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230340 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.1 posY: 3.71 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies (4) ca23d4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies (4) ca23d4.yaml index 9142deb07..5b54b8de8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies (4) ca23d4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies (4) ca23d4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538726 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.06 posY: 3.92 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies 9e4505.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies 9e4505.yaml index 92fd24618..08f83ab4b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies 9e4505.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies 9e4505.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230324 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 32.98 posY: 3.33 posZ: -47.41 - rotX: 1 - rotY: 270 - rotZ: 2 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) 3d35aa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) 3d35aa.yaml index f10f7a694..a6e9be0ed 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) 3d35aa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) 3d35aa.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430653 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.08 posY: 3.69 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) 66d5a3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) 66d5a3.yaml index 21e514d67..8afd91177 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) 66d5a3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) 66d5a3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 441024 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.1 posY: 3.73 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) a14a11.yaml b/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) a14a11.yaml index fbc2203c1..1b5fe37dc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) a14a11.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) a14a11.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430652 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.13 posY: 4.53 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs cbfc12.yaml b/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs cbfc12.yaml index b41d556a2..146fd106b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs cbfc12.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs cbfc12.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368420 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.75 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 098132.yaml b/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 098132.yaml index 4712109fa..1b8e49592 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 098132.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 098132.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379034 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.2 posY: 2.07 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 1fdf4c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 1fdf4c.yaml index 865f0c536..bd8ea317f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 1fdf4c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 1fdf4c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379031 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.2 posY: 2.16 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 4b1b99.yaml b/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 4b1b99.yaml index ba70eb64f..7144f7bd9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 4b1b99.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 4b1b99.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379033 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.2 posY: 2.06 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 88ff66.yaml b/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 88ff66.yaml index 12671802e..97632a42b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 88ff66.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 88ff66.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379032 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.2 posY: 2.08 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits 8023f5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits 8023f5.yaml index 128bb0dd3..b49aa24d7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits 8023f5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits 8023f5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379023 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.13 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ariadne's Twine (3) 27f6aa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ariadne's Twine (3) 27f6aa.yaml index 181b1197d..650dbb3f7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ariadne's Twine (3) 27f6aa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ariadne's Twine (3) 27f6aa.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 589303 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.13 posY: 5.45 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arm Injury 8f1420.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arm Injury 8f1420.yaml index db4664cf0..3708cca60 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arm Injury 8f1420.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arm Injury 8f1420.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378917 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.19 posY: 2.33 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Armageddon (4) 32e5a4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Armageddon (4) 32e5a4.yaml index ceec04a1e..73e8e2030 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Armageddon (4) 32e5a4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Armageddon (4) 32e5a4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 579606 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 8.98 posY: 4.06 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Armageddon 3feff1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Armageddon 3feff1.yaml index 7b62b93e3..f46d1d0f6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Armageddon 3feff1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Armageddon 3feff1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 553109 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.16 posY: 3.39 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Armor of Ardennes (5) f7a9ab.yaml b/unpacked/Bag All Player Cards 15bb07/Card Armor of Ardennes (5) f7a9ab.yaml index 8c3691992..1c1f06e8f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Armor of Ardennes (5) f7a9ab.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Armor of Ardennes (5) f7a9ab.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226360 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.04 posY: 3.9 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arrogance b2e5b0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arrogance b2e5b0.yaml index f7c35a2a0..226934022 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arrogance b2e5b0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arrogance b2e5b0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538601 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 4.05 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Art Student 07a8f0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Art Student 07a8f0.yaml index d3e76087f..2d30187b1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Art Student 07a8f0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Art Student 07a8f0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368428 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.68 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card As you wish 4b891d.yaml b/unpacked/Bag All Player Cards 15bb07/Card As you wish 4b891d.yaml index 93538ea32..213b44532 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card As you wish 4b891d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card As you wish 4b891d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587700 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 19.08 posY: 2.21 posZ: 59.52 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ashcan Pete 5294c3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ashcan Pete 5294c3.yaml index bef1c985c..2102669d1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ashcan Pete 5294c3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ashcan Pete 5294c3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449806 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.81 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ashcan Pete b8fd86.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ashcan Pete b8fd86.yaml index e3321af88..88ade019d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ashcan Pete b8fd86.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ashcan Pete b8fd86.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 258909 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 2.17 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Astounding Revelation 7686cb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Astounding Revelation 7686cb.yaml index 31410d1fc..40a399e9a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Astounding Revelation 7686cb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Astounding Revelation 7686cb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 441025 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.03 posY: 3.85 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Astral Mirror (2) b5d894.yaml b/unpacked/Bag All Player Cards 15bb07/Card Astral Mirror (2) b5d894.yaml index c884de414..cc6957af4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Astral Mirror (2) b5d894.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Astral Mirror (2) b5d894.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379115 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.74 posY: 3.35 posZ: 65.49 - rotX: 359 - rotY: 270 - rotZ: 3 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 3.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Astral Travel 31d087.yaml b/unpacked/Bag All Player Cards 15bb07/Card Astral Travel 31d087.yaml index d3cce696f..c412b9882 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Astral Travel 31d087.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Astral Travel 31d087.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230312 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.09 posY: 3.71 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Astronomical Atlas (3) 804397.yaml b/unpacked/Bag All Player Cards 15bb07/Card Astronomical Atlas (3) 804397.yaml index b800a1027..3ee37cb46 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Astronomical Atlas (3) 804397.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Astronomical Atlas (3) 804397.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379057 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.51 posY: 1.06 posZ: 27.14 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card At a Crossroads (1) 48e90b.yaml b/unpacked/Bag All Player Cards 15bb07/Card At a Crossroads (1) 48e90b.yaml index ac4570d74..8542e3410 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card At a Crossroads (1) 48e90b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card At a Crossroads (1) 48e90b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379133 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Atychiphobia a3bc7a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Atychiphobia a3bc7a.yaml index 823dce37a..29791b056 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Atychiphobia a3bc7a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Atychiphobia a3bc7a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550802 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.0 posY: 3.87 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Augur cf9ca8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Augur cf9ca8.yaml index c0dfb5e0a..3b2a6746f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Augur cf9ca8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Augur cf9ca8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 440626 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.22 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card August Lindquist 83b588.yaml b/unpacked/Bag All Player Cards 15bb07/Card August Lindquist 83b588.yaml index 1e6110d78..251337628 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card August Lindquist 83b588.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card August Lindquist 83b588.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 312509 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.08 posY: 3.72 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Awakened Mantle e81861.yaml b/unpacked/Bag All Player Cards 15bb07/Card Awakened Mantle e81861.yaml index 63de74abd..5e20775cd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Awakened Mantle e81861.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Awakened Mantle e81861.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 451113 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.76 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Azure Flame (3) c5fb42.yaml b/unpacked/Bag All Player Cards 15bb07/Card Azure Flame (3) c5fb42.yaml index d1394d086..06b833559 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Azure Flame (3) c5fb42.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Azure Flame (3) c5fb42.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538723 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.07 posY: 3.88 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Azure Flame (5) 0ee874.yaml b/unpacked/Bag All Player Cards 15bb07/Card Azure Flame (5) 0ee874.yaml index b6e2668e4..a6720ae65 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Azure Flame (5) 0ee874.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Azure Flame (5) 0ee874.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538728 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.16 posY: 3.95 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Azure Flame 17319c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Azure Flame 17319c.yaml index ac518b689..931514a66 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Azure Flame 17319c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Azure Flame 17319c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538705 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.14 posY: 3.74 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Backpack (2) 389a34.yaml b/unpacked/Bag All Player Cards 15bb07/Card Backpack (2) 389a34.yaml index e122c73b1..97445efc0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Backpack (2) 389a34.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Backpack (2) 389a34.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545210 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.1 posY: 3.68 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Backpack f59085.yaml b/unpacked/Bag All Player Cards 15bb07/Card Backpack f59085.yaml index c4d8917e1..02a4aa736 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Backpack f59085.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Backpack f59085.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368517 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.02 posY: 4.04 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Backstab (3) 7baf75.yaml b/unpacked/Bag All Player Cards 15bb07/Card Backstab (3) 7baf75.yaml index a79efc6b2..a64f4e368 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Backstab (3) 7baf75.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Backstab (3) 7baf75.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538627 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.68 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Backstab cdfd9f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Backstab cdfd9f.yaml index bdc0e94fe..a3f57f7bb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Backstab cdfd9f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Backstab cdfd9f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368716 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bait and Switch (3) f9a232.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bait and Switch (3) f9a232.yaml index 5a012a93f..f4d38f55f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bait and Switch (3) f9a232.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bait and Switch (3) f9a232.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 590302 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.16 posY: 3.88 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bait and Switch 2c2d9a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bait and Switch 2c2d9a.yaml index bc98df85b..5b28fd8ce 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bait and Switch 2c2d9a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bait and Switch 2c2d9a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368809 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.78 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bandages b460e1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bandages b460e1.yaml index 7f11fb04d..b8e4aa1a8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bandages b460e1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bandages b460e1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378902 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.18 posY: 2.91 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bandolier (2) e8b7ad.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bandolier (2) e8b7ad.yaml index a243f0db6..edfc91ac0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bandolier (2) e8b7ad.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bandolier (2) e8b7ad.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 314204 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.16 posY: 3.96 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bandolier 82775a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bandolier 82775a.yaml index eb4382a7f..1d1965159 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bandolier 82775a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bandolier 82775a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226325 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.08 posY: 3.73 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bangle of Jinxes (1) a65852.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bangle of Jinxes (1) a65852.yaml index 3f369351a..191026143 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bangle of Jinxes (1) a65852.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bangle of Jinxes (1) a65852.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378904 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.18 posY: 2.92 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Banish (1) a00fca.yaml b/unpacked/Bag All Player Cards 15bb07/Card Banish (1) a00fca.yaml index c92588a13..234dba10f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Banish (1) a00fca.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Banish (1) a00fca.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 277509 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.16 posY: 3.52 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Baron Samedi 16ad5d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Baron Samedi 16ad5d.yaml index d2f3acdb8..5f5c08a85 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Baron Samedi 16ad5d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Baron Samedi 16ad5d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 527552 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.69 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Barricade (3) 3689dd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Barricade (3) 3689dd.yaml index 472884e92..685593665 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Barricade (3) 3689dd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Barricade (3) 3689dd.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 580901 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.11 posY: 3.67 posZ: -56.75 - rotX: 333 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 333.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Barricade edb554.yaml b/unpacked/Bag All Player Cards 15bb07/Card Barricade edb554.yaml index 4dc3de74f..35d093c40 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Barricade edb554.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Barricade edb554.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368404 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.66 posY: 3.38 posZ: -57.02 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat (2) 567525.yaml b/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat (2) 567525.yaml index de7a5f505..33c0c7b8e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat (2) 567525.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat (2) 567525.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379137 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat 14d8ff.yaml b/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat 14d8ff.yaml index 2a93c60d1..b79b607a3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat 14d8ff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat 14d8ff.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587211 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.81 posY: 3.33 posZ: 7.67 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat 48e103.yaml b/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat 48e103.yaml index b9a804a0a..5c0a282d0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat 48e103.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat 48e103.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368830 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.04 posY: 3.91 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bauta 9c9196.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bauta 9c9196.yaml index 7b93de7d8..d86a3231a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bauta 9c9196.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bauta 9c9196.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 295601 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.01 posY: 3.67 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bear Trap 74840a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bear Trap 74840a.yaml index 5da0dcba5..ffab106f8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bear Trap 74840a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bear Trap 74840a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 454100 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 5.29 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Beat Cop (2) 7001be.yaml b/unpacked/Bag All Player Cards 15bb07/Card Beat Cop (2) 7001be.yaml index 05841f0b1..619720c5b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Beat Cop (2) 7001be.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Beat Cop (2) 7001be.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226348 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 81.46 posY: 2.32 posZ: 6.07 - rotX: 0 - rotY: 270 - rotZ: 3 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Beat Cop 7d4749.yaml b/unpacked/Bag All Player Cards 15bb07/Card Beat Cop 7d4749.yaml index 672e3963a..a92d74790 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Beat Cop 7d4749.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Beat Cop 7d4749.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226331 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 77.85 posY: 4.47 posZ: 27.06 - rotX: 302 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 302.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Becky 587589.yaml b/unpacked/Bag All Player Cards 15bb07/Card Becky 587589.yaml index 039f99247..9dd3dfb67 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Becky 587589.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Becky 587589.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 581200 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.04 posY: 3.9 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Belly of the Beast dffa9d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Belly of the Beast dffa9d.yaml index 009f4b268..65b7d6a65 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Belly of the Beast dffa9d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Belly of the Beast dffa9d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 277911 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.16 posY: 3.89 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Beloved b4666d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Beloved b4666d.yaml index cd15213f4..dd3a50a28 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Beloved b4666d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Beloved b4666d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587030 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.67 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Beretta M1918 (4) 91da6b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Beretta M1918 (4) 91da6b.yaml index c2c05790a..2c7a0e041 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Beretta M1918 (4) 91da6b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Beretta M1918 (4) 91da6b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538629 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 8.98 posY: 4.03 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bestow Resolve (2) 39e14a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bestow Resolve (2) 39e14a.yaml index 16cc80248..100149f8d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bestow Resolve (2) 39e14a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bestow Resolve (2) 39e14a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379025 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 17.02 posY: 3.35 posZ: 65.98 - rotX: 358 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bind Monster (2) ba1460.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bind Monster (2) ba1460.yaml index ebc029a9a..5ef06a0f2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bind Monster (2) ba1460.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bind Monster (2) ba1460.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230347 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 4.85 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Binder's Jar (1) c72750.yaml b/unpacked/Bag All Player Cards 15bb07/Card Binder's Jar (1) c72750.yaml index 5b4faf7f7..815e924a3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Binder's Jar (1) c72750.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Binder's Jar (1) c72750.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379113 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.67 posY: 3.37 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bizarre Diagnosis 2423d4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bizarre Diagnosis 2423d4.yaml index 789c91b0a..f30f2e59b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bizarre Diagnosis 2423d4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bizarre Diagnosis 2423d4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379039 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 358 - rotY: 270 - rotZ: 357 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 357.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Black Market (2) (Taboo) 8e4d23.yaml b/unpacked/Bag All Player Cards 15bb07/Card Black Market (2) (Taboo) 8e4d23.yaml index 8eec13188..b364c8c13 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Black Market (2) (Taboo) 8e4d23.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Black Market (2) (Taboo) 8e4d23.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558215 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 21.61 posY: 4.32 posZ: -54.31 - rotX: 0 - rotY: 270 - rotZ: 3 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Black Market (2) 20da53.yaml b/unpacked/Bag All Player Cards 15bb07/Card Black Market (2) 20da53.yaml index 565a9aa7c..6455881c1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Black Market (2) 20da53.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Black Market (2) 20da53.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379045 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.19 posY: 2.22 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blackjack (2) 37a2b5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blackjack (2) 37a2b5.yaml index 1b98b28f2..a08f271c9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blackjack (2) 37a2b5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blackjack (2) 37a2b5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 314105 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.98 posY: 3.71 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blackjack 097dcc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blackjack 097dcc.yaml index 00e9344d1..93fe2d030 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blackjack 097dcc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blackjack 097dcc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226321 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.08 posY: 3.73 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blade of Ark'at e89f48.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blade of Ark'at e89f48.yaml index 0c97904df..05d4ca876 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blade of Ark'at e89f48.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blade of Ark'at e89f48.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 582629 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.74 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blessed Blade cf4571.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blessed Blade cf4571.yaml index 7b239e2cb..c7dd60201 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blessed Blade cf4571.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blessed Blade cf4571.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 581612 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.04 posY: 3.91 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blessing of Isis (3) 205385.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blessing of Isis (3) 205385.yaml index 63d1862d3..f54519180 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blessing of Isis (3) 205385.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blessing of Isis (3) 205385.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 580801 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 5.2 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blinding Light (2) 8254d4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blinding Light (2) 8254d4.yaml index 9d5cf05ee..a1becea24 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blinding Light (2) 8254d4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blinding Light (2) 8254d4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230342 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 34.13 posY: 3.38 posZ: -45.55 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blinding Light 30f860.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blinding Light 30f860.yaml index afd585575..e61722070 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blinding Light 30f860.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blinding Light 30f860.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230311 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 33.83 posY: 3.38 posZ: -45.84 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blood Eclipse (1) 5efc92.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blood Eclipse (1) 5efc92.yaml index 7e80c2ab9..bf5ab2059 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blood Eclipse (1) 5efc92.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blood Eclipse (1) 5efc92.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545200 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.06 posY: 3.87 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blood Eclipse (3) 53d765.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blood Eclipse (3) 53d765.yaml index f14dc51e0..6c4ee83b4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blood Eclipse (3) 53d765.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blood Eclipse (3) 53d765.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 314000 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 4.18 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blood Pact (3) 64e131.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blood Pact (3) 64e131.yaml index 3f12d2500..32a0ea569 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blood Pact (3) 64e131.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blood Pact (3) 64e131.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230348 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.85 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blood Pact fc709b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blood Pact fc709b.yaml index 76591595a..97cf96877 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blood Pact fc709b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blood Pact fc709b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232106 ColorDiffuse: @@ -43,14 +43,14 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9 + posX: 9.0 posY: 3.81 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blood Will Have Blood (2) e81f1e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blood Will Have Blood (2) e81f1e.yaml index 196f169c3..2b3035747 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blood Will Have Blood (2) e81f1e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blood Will Have Blood (2) e81f1e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378908 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.18 posY: 2.93 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blood-Rite eafd12.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blood-Rite eafd12.yaml index 9f5be9961..aabf65b5f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blood-Rite eafd12.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blood-Rite eafd12.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 591621 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.15 posY: 4.06 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bloodlust aafc17.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bloodlust aafc17.yaml index 5327979d2..0b44c3366 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bloodlust aafc17.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bloodlust aafc17.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 440925 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.15 posY: 3.99 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bloodstained Dagger d71f11.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bloodstained Dagger d71f11.yaml index 13117fd63..48c3d0613 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bloodstained Dagger d71f11.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bloodstained Dagger d71f11.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 274100 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.9 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blur (1) 5be76d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blur (1) 5be76d.yaml index 7d66aebc0..934d67374 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blur (1) 5be76d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blur (1) 5be76d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378947 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.99 posY: 3.76 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blur (4) 5ade28.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blur (4) 5ade28.yaml index f8c2808cf..1503d7951 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blur (4) 5ade28.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blur (4) 5ade28.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378949 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 8.97 posY: 4.34 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bob Jenkins 419b0c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bob Jenkins 419b0c.yaml index 2307b6870..31e1a2818 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bob Jenkins 419b0c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bob Jenkins 419b0c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379504 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.92 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bob Jenkins aa1c23.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bob Jenkins aa1c23.yaml index b58905d7d..9cd3b1aa7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bob Jenkins aa1c23.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bob Jenkins aa1c23.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379200 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 2.16 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bolas d4b254.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bolas d4b254.yaml index b87148f8e..45908906b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bolas d4b254.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bolas d4b254.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379018 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 11.77 posY: 2.2 posZ: 49.52 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bonesaw 4b371d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bonesaw 4b371d.yaml index 7e3991ff7..804d7df35 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bonesaw 4b371d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bonesaw 4b371d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587702 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 17.43 posY: 2.21 posZ: 59.48 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bonnie Walsh 634e9e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bonnie Walsh 634e9e.yaml index 50afd9d23..63cf35093 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bonnie Walsh 634e9e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bonnie Walsh 634e9e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379012 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 10.4 posY: 2.2 posZ: 46.18 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Book of Psalms cc1ef3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Book of Psalms cc1ef3.yaml index 0bf09a292..fc168bfdd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Book of Psalms cc1ef3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Book of Psalms cc1ef3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 588011 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.11 posY: 3.84 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Book of Shadows (1) 35166c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Book of Shadows (1) 35166c.yaml index 1ce8d5822..214892d9f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Book of Shadows (1) 35166c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Book of Shadows (1) 35166c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230336 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.03 posY: 3.69 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Book of Shadows (3) 296dc8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Book of Shadows (3) 296dc8.yaml index bd8767887..632eef395 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Book of Shadows (3) 296dc8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Book of Shadows (3) 296dc8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230354 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 32.98 posY: 3.63 posZ: -47.41 - rotX: 349 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 349.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Borrowed Time (3) 0db666.yaml b/unpacked/Bag All Player Cards 15bb07/Card Borrowed Time (3) 0db666.yaml index 54242534d..409c93d74 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Borrowed Time (3) 0db666.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Borrowed Time (3) 0db666.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315253 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.17 posY: 3.11 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bought in Blood 275dc3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bought in Blood 275dc3.yaml index 027549283..dcf2f0884 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bought in Blood 275dc3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bought in Blood 275dc3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 377141 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.1 posY: 3.74 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bounty Contracts 4d9b32.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bounty Contracts 4d9b32.yaml index d7facf07f..dd88d3747 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bounty Contracts 4d9b32.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bounty Contracts 4d9b32.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 582204 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.04 posY: 3.91 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Boxing Gloves (3) 54293e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Boxing Gloves (3) 54293e.yaml index 23e5598b0..156873580 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Boxing Gloves (3) 54293e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Boxing Gloves (3) 54293e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545325 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 3.0 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Boxing Gloves db4a43.yaml b/unpacked/Bag All Player Cards 15bb07/Card Boxing Gloves db4a43.yaml index 69a8898ec..82328a317 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Boxing Gloves db4a43.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Boxing Gloves db4a43.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545303 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.12 posY: 4.07 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Brand of Cthugha (1) 0fff60.yaml b/unpacked/Bag All Player Cards 15bb07/Card Brand of Cthugha (1) 0fff60.yaml index 591f17516..d2c38395b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Brand of Cthugha (1) 0fff60.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Brand of Cthugha (1) 0fff60.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378928 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.19 posY: 2.53 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Brand of Cthugha (4) 200b64.yaml b/unpacked/Bag All Player Cards 15bb07/Card Brand of Cthugha (4) 200b64.yaml index e838539c3..aae6bd0e7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Brand of Cthugha (4) 200b64.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Brand of Cthugha (4) 200b64.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378930 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.19 posY: 2.52 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Breach the Door 74969c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Breach the Door 74969c.yaml index 58722051c..51329c9d4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Breach the Door 74969c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Breach the Door 74969c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379019 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 11.58 posY: 2.2 posZ: 52.95 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Breaking and Entering (2) 3411dd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Breaking and Entering (2) 3411dd.yaml index 9159c9010..aa5838994 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Breaking and Entering (2) 3411dd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Breaking and Entering (2) 3411dd.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379067 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.67 posY: 3.39 posZ: 65.93 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Breaking and Entering 31cfbf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Breaking and Entering 31cfbf.yaml index dac66c728..9534f3914 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Breaking and Entering 31cfbf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Breaking and Entering 31cfbf.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 553106 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.9 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Brother Xavier (1) 3c9617.yaml b/unpacked/Bag All Player Cards 15bb07/Card Brother Xavier (1) 3c9617.yaml index 64d99ab7a..784d69698 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Brother Xavier (1) 3c9617.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Brother Xavier (1) 3c9617.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226340 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.07 posY: 3.76 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bruiser (3) 8ec9cb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bruiser (3) 8ec9cb.yaml index 1fc8abbd8..9ebefea06 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bruiser (3) 8ec9cb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bruiser (3) 8ec9cb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378960 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.18 posY: 2.91 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Brute Force (1) fb9b7e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Brute Force (1) fb9b7e.yaml index c0a0e7413..096f2455a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Brute Force (1) fb9b7e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Brute Force (1) fb9b7e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 380230 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.82 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bulletproof Vest (3) c4cf62.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bulletproof Vest (3) c4cf62.yaml index 5ab2c12f2..aea3aabe2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bulletproof Vest (3) c4cf62.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bulletproof Vest (3) c4cf62.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368521 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Burden of Destiny 45c19e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Burden of Destiny 45c19e.yaml index ddf2f5a0d..bddbe8625 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Burden of Destiny 45c19e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Burden of Destiny 45c19e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379007 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.2 posY: 2.6 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Burden of Leadership 22e624.yaml b/unpacked/Bag All Player Cards 15bb07/Card Burden of Leadership 22e624.yaml index 9a2d085c5..ed34c28a4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Burden of Leadership 22e624.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Burden of Leadership 22e624.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379013 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 11.29 posY: 2.2 posZ: 45.06 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Burglary (2) 2aeb8a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Burglary (2) 2aeb8a.yaml index 1c137e69c..2aaf42fe8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Burglary (2) 2aeb8a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Burglary (2) 2aeb8a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 447631 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.98 posY: 4.06 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Burglary 5d04a1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Burglary 5d04a1.yaml index cce9284ca..e2e5444ef 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Burglary 5d04a1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Burglary 5d04a1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587206 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.81 posY: 3.32 posZ: 7.67 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Burglary bc3451.yaml b/unpacked/Bag All Player Cards 15bb07/Card Burglary bc3451.yaml index b3abbaaca..f65464d5d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Burglary bc3451.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Burglary bc3451.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368622 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.75 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Buried Secrets 28080d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Buried Secrets 28080d.yaml index d67996b83..d093e516a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Buried Secrets 28080d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Buried Secrets 28080d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379006 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.2 posY: 2.67 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Burn After Reading (1) eedd0b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Burn After Reading (1) eedd0b.yaml index 1dde1b39b..86f5555e4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Burn After Reading (1) eedd0b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Burn After Reading (1) eedd0b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378905 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.18 posY: 2.9 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Burning the Midnight Oil 0d29be.yaml b/unpacked/Bag All Player Cards 15bb07/Card Burning the Midnight Oil 0d29be.yaml index ccac8690c..2c21cd7d8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Burning the Midnight Oil 0d29be.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Burning the Midnight Oil 0d29be.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538812 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 4.33 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bury Them Deep e6efe6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bury Them Deep e6efe6.yaml index fa23b090a..9ac8a0190 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bury Them Deep e6efe6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bury Them Deep e6efe6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 431818 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.11 posY: 3.76 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Butterfly Effect (1) 22fc6c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Butterfly Effect (1) 22fc6c.yaml index 594390a2c..f697507ed 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Butterfly Effect (1) 22fc6c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Butterfly Effect (1) 22fc6c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232108 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.04 posY: 3.78 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Butterfly Swords (2) 5779d3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Butterfly Swords (2) 5779d3.yaml index 9d8db9d86..f7b500793 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Butterfly Swords (2) 5779d3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Butterfly Swords (2) 5779d3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379015 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.99 posY: 3.82 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Butterfly Swords (5) 0a312f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Butterfly Swords (5) 0a312f.yaml index 75eec1cf0..d5c49d8b2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Butterfly Swords (5) 0a312f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Butterfly Swords (5) 0a312f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379020 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.26 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Calculated Risk dfbed9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Calculated Risk dfbed9.yaml index 08ce304d6..42429ed71 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Calculated Risk dfbed9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Calculated Risk dfbed9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379063 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.67 posY: 3.38 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Call for Backup (2) 1d1901.yaml b/unpacked/Bag All Player Cards 15bb07/Card Call for Backup (2) 1d1901.yaml index 88b5a6a90..9d709e499 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Call for Backup (2) 1d1901.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Call for Backup (2) 1d1901.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378916 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.21 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Call of the Unknown 86feae.yaml b/unpacked/Bag All Player Cards 15bb07/Card Call of the Unknown 86feae.yaml index 55d140ab2..794950531 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Call of the Unknown 86feae.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Call of the Unknown 86feae.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 377244 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.13 posY: 5.51 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Called by the Mists e628de.yaml b/unpacked/Bag All Player Cards 15bb07/Card Called by the Mists e628de.yaml index d705c5bed..9bd0c9b6e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Called by the Mists e628de.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Called by the Mists e628de.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550801 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.05 posY: 3.89 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Calling in Favors 9b9e8b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Calling in Favors 9b9e8b.yaml index 9d77395ec..d141d8392 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Calling in Favors 9b9e8b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Calling in Favors 9b9e8b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368510 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.15 posY: 4.11 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Calvin Wright 510d45.yaml b/unpacked/Bag All Player Cards 15bb07/Card Calvin Wright 510d45.yaml index 9955d0e73..e4270e427 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Calvin Wright 510d45.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Calvin Wright 510d45.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 261820 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.65 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Calvin Wright b02a1e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Calvin Wright b02a1e.yaml index 156a4baf1..d8773f461 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Calvin Wright b02a1e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Calvin Wright b02a1e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 271720 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 18.45 posY: 1.94 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Captivating Discovery 498bc8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Captivating Discovery 498bc8.yaml index c5cd2f72f..43665e88a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Captivating Discovery 498bc8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Captivating Discovery 498bc8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379400 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.67 posY: 3.39 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern 30614e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern 30614e.yaml index 2f01839ce..4f7ddbe61 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern 30614e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern 30614e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 273302 ColorDiffuse: @@ -39,9 +39,9 @@ Snap: true States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 273306 ColorDiffuse: @@ -88,7 +88,7 @@ States: rotY: 269.9983 rotZ: -5.466912e-07 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' @@ -100,11 +100,11 @@ Transform: posX: 26.57 posY: 3.69 posZ: -12.2 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern b03b12.yaml b/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern b03b12.yaml index efae00ff4..97c106152 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern b03b12.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern b03b12.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 273521 ColorDiffuse: @@ -41,9 +41,9 @@ Snap: true States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 273527 ColorDiffuse: @@ -93,7 +93,7 @@ States: rotY: 179.900131 rotZ: -3.31672339e-07 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' @@ -106,11 +106,11 @@ Transform: posX: 26.93 posY: 3.69 posZ: -18.47 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Carson Sinclair c0f76c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Carson Sinclair c0f76c.yaml index 1a0afa9c1..a66dd0876 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Carson Sinclair c0f76c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Carson Sinclair c0f76c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 846200 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 16.36 posY: 2.21 posZ: 55.07 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Carson Sinclair dc96d1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Carson Sinclair dc96d1.yaml index fd650c3ee..e39226247 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Carson Sinclair dc96d1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Carson Sinclair dc96d1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 843400 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 22.9 posY: 2.21 posZ: 52.02 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cat Burglar (1) 2fe723.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cat Burglar (1) 2fe723.yaml index 4307b29b9..932d11257 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cat Burglar (1) 2fe723.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cat Burglar (1) 2fe723.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315239 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Caught Red-Handed ecd087.yaml b/unpacked/Bag All Player Cards 15bb07/Card Caught Red-Handed ecd087.yaml index 52d526558..c7041179b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Caught Red-Handed ecd087.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Caught Red-Handed ecd087.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 376840 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.93 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Celaeno Fragments d287bc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Celaeno Fragments d287bc.yaml index 164603d6b..2d80dc21a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Celaeno Fragments d287bc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Celaeno Fragments d287bc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538804 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.02 posY: 4.06 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ceremonial Sickle (4) 4a6a9f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ceremonial Sickle (4) 4a6a9f.yaml index 8999b4667..f38c9346b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ceremonial Sickle (4) 4a6a9f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ceremonial Sickle (4) 4a6a9f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379120 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.74 posY: 3.36 posZ: 65.49 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ceremonial Sickle b5e78c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ceremonial Sickle b5e78c.yaml index 54386a457..ca94cf2b5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ceremonial Sickle b5e78c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ceremonial Sickle b5e78c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379106 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.67 posY: 3.38 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Chainsaw (4) d40f4e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Chainsaw (4) d40f4e.yaml index 8c674b5f9..bea9568c3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Chainsaw (4) d40f4e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Chainsaw (4) d40f4e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550827 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.14 posY: 3.83 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Charisma (3) 9e6c55.yaml b/unpacked/Bag All Player Cards 15bb07/Card Charisma (3) 9e6c55.yaml index 29a2e684f..9799bc1cc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Charisma (3) 9e6c55.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Charisma (3) 9e6c55.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 292524 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 32.89 posY: 2.3 posZ: -77.65 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Charles Ross, Esq. 4a2a36.yaml b/unpacked/Bag All Player Cards 15bb07/Card Charles Ross, Esq. 4a2a36.yaml index c1b4369fe..993b4f3cd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Charles Ross, Esq. 4a2a36.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Charles Ross, Esq. 4a2a36.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368430 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.98 posY: 4.09 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Charlie Kane 4deeff.yaml b/unpacked/Bag All Player Cards 15bb07/Card Charlie Kane 4deeff.yaml index 7ba3c8130..b2db25d72 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Charlie Kane 4deeff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Charlie Kane 4deeff.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 846105 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 14.5 posY: 2.21 posZ: 57.18 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Charlie Kane 95fb5e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Charlie Kane 95fb5e.yaml index f3c7f5b48..4fb4edf9b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Charlie Kane 95fb5e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Charlie Kane 95fb5e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 843405 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.49 posY: 2.21 posZ: 52.58 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Charon's Obol (1) 1dbc95.yaml b/unpacked/Bag All Player Cards 15bb07/Card Charon's Obol (1) 1dbc95.yaml index afd4208f7..98f9a634f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Charon's Obol (1) 1dbc95.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Charon's Obol (1) 1dbc95.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315233 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.75 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cheap Shot (2) 0b963c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cheap Shot (2) 0b963c.yaml index 0d3739302..2a8d031d9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cheap Shot (2) 0b963c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cheap Shot (2) 0b963c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538621 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.12 posY: 4.07 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cheap Shot b8c93a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cheap Shot b8c93a.yaml index 2a98bb0fa..7a9b94401 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cheap Shot b8c93a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cheap Shot b8c93a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368715 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 4.6 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cheat Death (5) 3add54.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cheat Death (5) 3add54.yaml index 9a020b880..b7b79611e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cheat Death (5) 3add54.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cheat Death (5) 3add54.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315261 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.67 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cheat the System (1) f6d572.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cheat the System (1) f6d572.yaml index 2a8cff945..06564850d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cheat the System (1) f6d572.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cheat the System (1) f6d572.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379040 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.19 posY: 2.33 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cherished Keepsake (1) 5a2b49.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cherished Keepsake (1) 5a2b49.yaml index f6495812c..965899d18 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cherished Keepsake (1) 5a2b49.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cherished Keepsake (1) 5a2b49.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550818 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.08 posY: 3.77 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cherished Keepsake 215cec.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cherished Keepsake 215cec.yaml index 9dedc805e..ac190d8a3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cherished Keepsake 215cec.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cherished Keepsake 215cec.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368821 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.17 posY: 3.03 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Chicago Typewriter (4) ecfa42.yaml b/unpacked/Bag All Player Cards 15bb07/Card Chicago Typewriter (4) ecfa42.yaml index 786501caa..baa11028d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Chicago Typewriter (4) ecfa42.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Chicago Typewriter (4) ecfa42.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315260 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.15 posY: 3.67 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Chronophobia eeb330.yaml b/unpacked/Bag All Player Cards 15bb07/Card Chronophobia eeb330.yaml index 22dae9557..95b40ffe2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Chronophobia eeb330.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Chronophobia eeb330.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 431207 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.68 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Chuck Fergus (2) ea31c2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Chuck Fergus (2) ea31c2.yaml index 2f2c9add7..082e0468c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Chuck Fergus (2) ea31c2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Chuck Fergus (2) ea31c2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379065 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.67 posY: 3.39 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Chuck Fergus (5) 0e72b6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Chuck Fergus (5) 0e72b6.yaml index a309ef96e..2663db020 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Chuck Fergus (5) 0e72b6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Chuck Fergus (5) 0e72b6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538630 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 5.22 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance (3) f5d382.yaml b/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance (3) f5d382.yaml index 0b9c786d7..9fc48a535 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance (3) f5d382.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance (3) f5d382.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538724 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.11 posY: 3.76 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance (5) e21200.yaml b/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance (5) e21200.yaml index 44f8290a6..5ac2a37e6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance (5) e21200.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance (5) e21200.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538729 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.05 posY: 3.89 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance b67371.yaml b/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance b67371.yaml index 05f81b678..06c9b5c1b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance b67371.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance b67371.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538706 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.97 posY: 4.14 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Clarity of Mind (3) a53344.yaml b/unpacked/Bag All Player Cards 15bb07/Card Clarity of Mind (3) a53344.yaml index 314e47598..b4093f4de 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Clarity of Mind (3) a53344.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Clarity of Mind (3) a53344.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 313603 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.04 posY: 3.91 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Clarity of Mind 8e57b8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Clarity of Mind 8e57b8.yaml index f1c6b0ff8..dcff1e4f3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Clarity of Mind 8e57b8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Clarity of Mind 8e57b8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230322 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.12 posY: 3.92 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Clasp of Black Onyx f295d9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Clasp of Black Onyx f295d9.yaml index 8eb9121f3..7fd73b971 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Clasp of Black Onyx f295d9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Clasp of Black Onyx f295d9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232332 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.87 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Claypool's Furs c1f999.yaml b/unpacked/Bag All Player Cards 15bb07/Card Claypool's Furs c1f999.yaml index 5ced7c5a5..62116f595 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Claypool's Furs c1f999.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Claypool's Furs c1f999.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 452300 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 79.14 posY: 3.33 posZ: 8.17 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Clean Sneak (4) 537171.yaml b/unpacked/Bag All Player Cards 15bb07/Card Clean Sneak (4) 537171.yaml index 701d48f8b..04060ebb2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Clean Sneak (4) 537171.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Clean Sneak (4) 537171.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379102 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.67 posY: 3.37 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Clean Them Out 3319be.yaml b/unpacked/Bag All Player Cards 15bb07/Card Clean Them Out 3319be.yaml index f071f9b8d..faa095008 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Clean Them Out 3319be.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Clean Them Out 3319be.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545309 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.68 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cloak of the Outer Realm e4ab48.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cloak of the Outer Realm e4ab48.yaml index aa42ca9d7..018816ce7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cloak of the Outer Realm e4ab48.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cloak of the Outer Realm e4ab48.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587926 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.13 posY: 4.43 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Close Call (2) 6aae86.yaml b/unpacked/Bag All Player Cards 15bb07/Card Close Call (2) 6aae86.yaml index cf064af59..e8b3a73d4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Close Call (2) 6aae86.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Close Call (2) 6aae86.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368848 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Close the Circle (1) d02825.yaml b/unpacked/Bag All Player Cards 15bb07/Card Close the Circle (1) d02825.yaml index 8bb5a5858..05c39d4c2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Close the Circle (1) d02825.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Close the Circle (1) d02825.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379052 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.19 posY: 2.32 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Collected Works of Poe d6f719.yaml b/unpacked/Bag All Player Cards 15bb07/Card Collected Works of Poe d6f719.yaml index 38cacd478..f068f8389 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Collected Works of Poe d6f719.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Collected Works of Poe d6f719.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 452301 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 78.94 posY: 3.32 posZ: 8.21 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Colt Vest Pocket (2) 8dda2d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Colt Vest Pocket (2) 8dda2d.yaml index 8c43117df..69b70e9e7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Colt Vest Pocket (2) 8dda2d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Colt Vest Pocket (2) 8dda2d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545205 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 8.97 posY: 4.49 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Colt Vest Pocket 5a305e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Colt Vest Pocket 5a305e.yaml index 2e8aae269..5019b1a75 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Colt Vest Pocket 5a305e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Colt Vest Pocket 5a305e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 276101 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.14 posY: 3.72 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Combat Training (1) bd3ecc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Combat Training (1) bd3ecc.yaml index 3f66b2119..62e250eb4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Combat Training (1) bd3ecc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Combat Training (1) bd3ecc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226335 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.17 posY: 3.2 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Combat Training (3) 36efa2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Combat Training (3) 36efa2.yaml index 8a61db632..b6340bd07 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Combat Training (3) 36efa2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Combat Training (3) 36efa2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379017 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.27 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Connect the Dots 13413d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Connect the Dots 13413d.yaml index df5341556..6568e9942 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Connect the Dots 13413d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Connect the Dots 13413d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430809 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.06 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Contraband (2) 620b6e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Contraband (2) 620b6e.yaml index 0c9b7b703..e5d53a584 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Contraband (2) 620b6e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Contraband (2) 620b6e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315304 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 4.6 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Contraband b4ad29.yaml b/unpacked/Bag All Player Cards 15bb07/Card Contraband b4ad29.yaml index 39d4b736e..ecc76ab3b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Contraband b4ad29.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Contraband b4ad29.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368717 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.17 posY: 2.93 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cookie's Custom .32 34e723.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cookie's Custom .32 34e723.yaml index e90799daa..8b3bc7048 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cookie's Custom .32 34e723.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cookie's Custom .32 34e723.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 452302 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 79.15 posY: 3.33 posZ: 7.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Copycat (3) de40c8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Copycat (3) de40c8.yaml index c1bef3adf..509a8a741 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Copycat (3) de40c8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Copycat (3) de40c8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538628 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.04 posY: 3.89 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cornered (2) c6c260.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cornered (2) c6c260.yaml index fc9395044..dcca924b3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cornered (2) c6c260.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cornered (2) c6c260.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368851 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.12 posY: 3.92 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Counterespionage (1) fad52a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Counterespionage (1) fad52a.yaml index 5dc37afbd..1b5415b55 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Counterespionage (1) fad52a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Counterespionage (1) fad52a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379039 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 2.14 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Counterpunch (2) 92436b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Counterpunch (2) 92436b.yaml index ff1ee76fc..ef2f7a411 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Counterpunch (2) 92436b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Counterpunch (2) 92436b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545320 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 4.06 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Counterpunch 20645e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Counterpunch 20645e.yaml index f5b9edc08..89c9277bd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Counterpunch 20645e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Counterpunch 20645e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545310 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.79 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Counterspell (2) (Taboo) 118264.yaml b/unpacked/Bag All Player Cards 15bb07/Card Counterspell (2) (Taboo) 118264.yaml index e2d413c9f..5294ab6a1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Counterspell (2) (Taboo) 118264.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Counterspell (2) (Taboo) 118264.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558211 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 21.84 posY: 4.55 posZ: -50.38 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Counterspell (2) 2236f6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Counterspell (2) 2236f6.yaml index 16a096855..363e1cfe2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Counterspell (2) 2236f6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Counterspell (2) 2236f6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230346 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.99 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Coup de Grâce 2240f9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Coup de Grâce 2240f9.yaml index 9391abd41..5ed0036f4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Coup de Grâce 2240f9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Coup de Grâce 2240f9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 276200 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.79 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cover Up ca25bc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cover Up ca25bc.yaml index 27228c71f..4db04fa28 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cover Up ca25bc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cover Up ca25bc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 552421 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cover Up f802e3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cover Up f802e3.yaml index 858299c6d..071d4481f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cover Up f802e3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cover Up f802e3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 536206 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.98 posY: 3.81 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Crack the Case 8dce44.yaml b/unpacked/Bag All Player Cards 15bb07/Card Crack the Case 8dce44.yaml index ca4a6c543..2fe53d3b4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Crack the Case 8dce44.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Crack the Case 8dce44.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 277812 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.15 posY: 3.77 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Crafty (3) fa994a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Crafty (3) fa994a.yaml index 301f64a05..d6babbf41 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Crafty (3) fa994a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Crafty (3) fa994a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378961 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.18 posY: 2.93 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Crisis of Faith 8b68f4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Crisis of Faith 8b68f4.yaml index 58066f180..6ebd3b2ce 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Crisis of Faith 8b68f4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Crisis of Faith 8b68f4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 582001 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.69 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Crisis of Identity (Taboo) 55be9c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Crisis of Identity (Taboo) 55be9c.yaml index 18d831b33..90a0eb4fb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Crisis of Identity (Taboo) 55be9c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Crisis of Identity (Taboo) 55be9c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558209 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 91.99 posY: 1.9 posZ: 4.66 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Crisis of Identity 367aac.yaml b/unpacked/Bag All Player Cards 15bb07/Card Crisis of Identity 367aac.yaml index 98611a7a3..fba972414 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Crisis of Identity 367aac.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Crisis of Identity 367aac.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 374935 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.0 posY: 3.87 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire (4) 416f12.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire (4) 416f12.yaml index 2c7be4f28..02c5ba93e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire (4) 416f12.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire (4) 416f12.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 584203 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.01 posY: 3.76 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire (4) e8b179.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire (4) e8b179.yaml index d9340da78..8dd48f53e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire (4) e8b179.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire (4) e8b179.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 588102 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 5.29 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire fbfa24.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire fbfa24.yaml index 24654d189..32d3251d6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire fbfa24.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire fbfa24.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587116 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 5.54 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Research (4) 5d25b1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Research (4) 5d25b1.yaml index a5594c6c0..a68912ed0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Research (4) 5d25b1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Research (4) 5d25b1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430657 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 19.44 posY: 3.37 posZ: -56.62 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Writings (2) 870bdc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Writings (2) 870bdc.yaml index 2ebe06f8a..fcd990cfc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Writings (2) 870bdc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Writings (2) 870bdc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538822 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.05 posY: 3.74 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Writings ff2776.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Writings ff2776.yaml index fa3cf9051..834e276db 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Writings ff2776.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Writings ff2776.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538813 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.07 posY: 3.89 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cryptographic Cipher 4f3142.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cryptographic Cipher 4f3142.yaml index 550e5b1b5..bce17bc02 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cryptographic Cipher 4f3142.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cryptographic Cipher 4f3142.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 580315 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.97 posY: 3.67 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Crystal Pendulum 6c3156.yaml b/unpacked/Bag All Player Cards 15bb07/Card Crystal Pendulum 6c3156.yaml index e18268a6d..40fb05522 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Crystal Pendulum 6c3156.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Crystal Pendulum 6c3156.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538709 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.99 posY: 3.81 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Crystalline Elder Sign (3) 949ca2.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Crystalline Elder Sign (3) 949ca2.ttslua index 8fc59d714..a5e927783 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Crystalline Elder Sign (3) 949ca2.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Crystalline Elder Sign (3) 949ca2.ttslua @@ -1,65 +1,347 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/CrystallineElderSign3") +end) +__bundle_register("playercards/cards/CrystallineElderSign3", function(require, _LOADED, __bundle_register, __bundle_modules) VALID_TOKENS = { - ["+1"]=true, - ["Elder Sign"]=true + ["+1"] = true, + ["Elder Sign"] = true } -function onload() - chaosbag = getChaosBag() - sealedTokens = { } - IMAGE_TOKEN_MAP = { } - for i,v in pairs(Global.getVar("IMAGE_TOKEN_MAP")) do - IMAGE_TOKEN_MAP[i] = v - end +require("playercards/CardsThatSealTokens") +end) +__bundle_register("playercards/CardsThatSealTokens", function(require, _LOADED, __bundle_register, __bundle_modules) +--[[ Library for cards that seal tokens +This file is used to add sealing option to cards' context menu. +Valid options (set before requiring this file): - -- add menu items +UPDATE_ON_HOVER --@type: boolean + - automatically updates the context menu options when the card is hovered + - the "Read Bag" function reads the content of the chaos bag to update the context menu + - example usage: "Unrelenting" (to only display valid tokens) + +SHOW_SINGLE_RELEASE --@type: boolean + - enables an entry in the context menu + - this entry allows releasing a single token + - example usage: "Holy Spear" (to keep the other tokens and just release one) + +SHOW_MULTI_RELEASE --@type: number (amount of tokens to release at once) + - enables an entry in the context menu + - this enty allows releasing of multiple tokens at once + - example usage: "Nephthys" (to release 3 bless tokens at once) + +SHOW_MULTI_SEAL --@type: number (amount of tokens to seal at once) + - enables an entry in the context menu + - this entry allows sealing of multiple tokens at once + - example usage: "Holy Spear" (to seal two bless tokens at once) + +VALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens should be abled to be sealed + - needs to be defined for each card -> even if empty + - example usage: "The Chthonian Stone" + > VALID_TOKENS = { + > ["Skull"] = true, + > ["Cultist"] = true, + > ["Tablet"] = true, + > ["Elder Thing"] = true, + > } + +INVALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens are invalid for sealing + - only needs to be defined if needed + - usually combined with empty "VALID_TOKENS" table + - example usage: "Protective Incantation" (not allowed to seal Auto-fail) + +---------------------------------------------------------- +Example 1: Crystalline Elder Sign +This card can only seal the "+1" or "Elder Sign" token, +it does not need specific options for multi-sealing or releasing. +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["+1"] = true, +> ["Elder Sign"] = true +> } +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +---------------------------------------------------------- +Example 2: Holy Spear +This card features the following abilities (just listing the relevant parts): +- releasing a single bless token +- sealing two bless tokens +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["Bless"] = true +> } +> SHOW_SINGLE_RELEASE = true +> SHOW_MULTI_SEAL = 2 +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +----------------------------------------------------------]] + +local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi") +local tokenArrangerApi = require("accessories/TokenArrangerApi") +local sealedTokens = {} +local ID_URL_MAP = {} +local tokensInBag = {} + +function onSave() return JSON.encode(sealedTokens) end + +function onLoad(savedData) + sealedTokens = JSON.decode(savedData) or {} + ID_URL_MAP = Global.getTable("ID_URL_MAP") + generateContextMenu() +end + +-- builds the context menu +function generateContextMenu() + -- conditional single or multi release options + if SHOW_SINGLE_RELEASE then + self.addContextMenuItem("Release token", releaseOneToken) + elseif SHOW_MULTI_RELEASE then + self.addContextMenuItem("Release " .. SHOW_MULTI_RELEASE .. " token(s)", releaseMultipleTokens) + else + self.addContextMenuItem("Release token(s)", releaseAllTokens) + end + + -- main context menu options to seal tokens + for _, map in pairs(ID_URL_MAP) do + if (VALID_TOKENS[map.name] ~= nil) or (UPDATE_ON_HOVER and tokensInBag[map.name] and not INVALID_TOKENS[map.name]) then + if not SHOW_MULTI_SEAL then + self.addContextMenuItem("Seal " .. map.name, function(playerColor) + sealToken(map.name, playerColor) + end) + else + self.addContextMenuItem("Seal " .. SHOW_MULTI_SEAL .. " " .. map.name, function(playerColor) + readBag() + local allowed = true + local notFound + + for name, _ in pairs(VALID_TOKENS) do + if (tokensInBag[name] or 0) < SHOW_MULTI_SEAL then + allowed = false + notFound = name + end + end + + if allowed then + for i = 1, SHOW_MULTI_SEAL do + sealToken(map.name, playerColor) + end + else + printToColor("Not enough " .. notFound .. " tokens in the chaos bag.", playerColor) + end + end) + end + end + end +end + +-- generates a list of chaos tokens that is in the chaos bag +function readBag() + local chaosbag = Global.call("findChaosBag") + tokensInBag = {} + + for _, token in ipairs(chaosbag.getObjects()) do + tokensInBag[token.name] = (tokensInBag[token.name] or 0) + 1 + end +end + +-- native event from TTS - used to update the context menu for cards like "Unrelenting" +function onHover() + if UPDATE_ON_HOVER then + readBag() self.clearContextMenu() - self.addContextMenuItem("Release Token", releaseTokens) - for url,name in pairs(IMAGE_TOKEN_MAP) do - if VALID_TOKENS[name] ~= nil then - self.addContextMenuItem("Seal " .. name, function(playerColor) sealToken(url, playerColor) end) + generateContextMenu() + end +end + +-- seals the named token on this card +function sealToken(name, playerColor) + if not Global.call("canTouchChaosTokens") then return end + local chaosbag = Global.call("findChaosBag") + for i, obj in ipairs(chaosbag.getObjects()) do + if obj.name == name then + chaosbag.takeObject({ + position = self.getPosition() + Vector(0, 0.5 + 0.1 * #sealedTokens, 0), + rotation = self.getRotation(), + index = i - 1, + smooth = false, + callback_function = function(token) + local guid = token.getGUID() + table.insert(sealedTokens, guid) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.sealedToken(name, guid) + end end + }) + return end + end + printToColor(name .. " token not found in chaos bag", playerColor) end -function sealToken(url, playerColor) - local pos = self.getPosition() - - local name = IMAGE_TOKEN_MAP[url] - for i,obj in ipairs(chaosbag.getObjects()) do - if obj.name == name then - chaosbag.takeObject({ - position={ pos.x, pos.y + 1, pos.z }, - index=i-1, - smooth=false, - callback_function=_sealToken - }) - return - end - end - printToColor(name .. " token not found in bag", playerColor) -end - -function _sealToken(obj) - table.insert(sealedTokens, obj) -end - -function releaseTokens(playerColor) +-- release the last sealed token +function releaseOneToken(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else printToColor("Releasing token", playerColor) - for i,obj in ipairs(sealedTokens) do - chaosbag.putObject(obj) - end - sealedTokens = { } + putTokenAway(table.remove(sealedTokens)) + end end -function getChaosBag() - local items = getObjectFromGUID("83ef06").getObjects() - local chaosbag = nil - for i,v in ipairs(items) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break - end +-- release multiple tokens at once +function releaseMultipleTokens(playerColor) + if SHOW_MULTI_RELEASE >= #sealedTokens then + for i = 1, SHOW_MULTI_RELEASE do + releaseOneToken(playerColor) end - if chaosbag == nil then printToAll("No chaos bag found") end - return chaosbag -end \ No newline at end of file + else + printToColor("Not enough " .. name .. " tokens sealed.", playerColor) + end +end + +-- releases all sealed tokens +function releaseAllTokens(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token(s)", playerColor) + for _, guid in ipairs(sealedTokens) do + putTokenAway(guid) + end + sealedTokens = {} + end +end + +-- returns the token (referenced by GUID) to the chaos bag +function putTokenAway(guid) + local token = getObjectFromGUID(guid) + if not token then return end + + local name = token.getName() + local chaosbag = Global.call("findChaosBag") + chaosbag.putObject(token) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.releasedToken(name, guid) + end +end +end) +__bundle_register("accessories/TokenArrangerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenArrangerApi = {} + + -- local function to call the token arranger, if it is on the table + ---@param functionName String Name of the function to cal + ---@param argument Variant Parameter to pass + local function callIfExistent(functionName, argument) + local tokenArranger = getObjectsWithTag("TokenArranger")[1] + if tokenArranger ~= nil then + tokenArranger.call(functionName, argument) + end + end + + -- updates the token modifiers with the provided data + ---@param tokenData Table Contains the chaos token metadata + TokenArrangerApi.onTokenDataChanged = function(fullData) + callIfExistent("onTokenDataChanged", fullData) + end + + -- deletes already laid out tokens + TokenArrangerApi.deleteCopiedTokens = function() + callIfExistent("deleteCopiedTokens") + end + + -- updates the laid out tokens + TokenArrangerApi.layout = function() + Wait.time(function() callIfExistent("layout") end, 0.1) + end + + return TokenArrangerApi +end +end) +__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local BlessCurseManagerApi = {} + local MANAGER_GUID = "5933fb" + + -- removes all taken tokens and resets the counts + BlessCurseManagerApi.removeTakenTokensAndReset = function() + local BlessCurseManager = getObjectFromGUID(MANAGER_GUID) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10) + Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.sealedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("sealedToken", { type = type, guid = guid }) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.releasedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("releasedToken", { type = type, guid = guid }) + end + + -- broadcasts the current status for bless/curse tokens + ---@param playerColor String Color of the player to show the broadcast to + BlessCurseManagerApi.broadcastStatus = function(playerColor) + getObjectFromGUID(MANAGER_GUID).call("broadcastStatus", playerColor) + end + + -- adds Wendy's menu to the hovered card (allows sealing of tokens) + ---@param color String Color of the player to show the broadcast to + BlessCurseManagerApi.addWendysMenu = function(playerColor, hoveredObject) + getObjectFromGUID(MANAGER_GUID).call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject }) + end + + return BlessCurseManagerApi +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Crystalline Elder Sign (3) 949ca2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Crystalline Elder Sign (3) 949ca2.yaml index e0416fb89..1948b5772 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Crystalline Elder Sign (3) 949ca2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Crystalline Elder Sign (3) 949ca2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230353 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.2 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Crystallizer of Dreams 6692de.yaml b/unpacked/Bag All Player Cards 15bb07/Card Crystallizer of Dreams 6692de.yaml index cae999f27..b97216f3c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Crystallizer of Dreams 6692de.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Crystallizer of Dreams 6692de.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 590503 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.16 posY: 4.02 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cunning Distraction e8ea95.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cunning Distraction e8ea95.yaml index e102e759f..7cb287fb9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cunning Distraction e8ea95.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cunning Distraction e8ea95.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368819 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cunning e2767a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cunning e2767a.yaml index 327b8947a..5e643059e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cunning e2767a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cunning e2767a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 527606 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.2 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Curiosity 9e5cd2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Curiosity 9e5cd2.yaml index deb10a2bc..249e27d32 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Curiosity 9e5cd2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Curiosity 9e5cd2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430808 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.86 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Curse of Aeons (3) 3199f2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Curse of Aeons (3) 3199f2.yaml index 26bf612f5..8872f9ce7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Curse of Aeons (3) 3199f2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Curse of Aeons (3) 3199f2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 580106 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.05 posY: 3.79 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Curse of the Rougarou 2e33f7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Curse of the Rougarou 2e33f7.yaml index 728333df2..3d73c2b6a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Curse of the Rougarou 2e33f7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Curse of the Rougarou 2e33f7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 8901 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.01 posY: 3.67 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Custom Ammunition (3) f03baa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Custom Ammunition (3) f03baa.yaml index 6caaa623d..610cc6d6d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Custom Ammunition (3) f03baa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Custom Ammunition (3) f03baa.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226354 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 5.27 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Custom Modifications d2252d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Custom Modifications d2252d.yaml index 21cb31e8b..bb33dc495 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Custom Modifications d2252d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Custom Modifications d2252d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379016 ColorDiffuse: @@ -59,11 +59,11 @@ Transform: posX: 10.51 posY: 2.2 posZ: 47.04 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cyclopean Hammer (5) (Taboo) a39c3b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cyclopean Hammer (5) (Taboo) a39c3b.yaml index ce8e39938..caea3b4a8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cyclopean Hammer (5) (Taboo) a39c3b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cyclopean Hammer (5) (Taboo) a39c3b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558218 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 21.84 posY: 4.51 posZ: -49.4 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cyclopean Hammer (5) 4df3b9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cyclopean Hammer (5) 4df3b9.yaml index eb714cf69..29ea1da21 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cyclopean Hammer (5) 4df3b9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cyclopean Hammer (5) 4df3b9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378931 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.19 posY: 2.53 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel Back) 2f2e0d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel Back) 2f2e0d.yaml index a371b16f3..07ec20de6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel Back) 2f2e0d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel Back) 2f2e0d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 273901 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.69 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel Front) e8cafc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel Front) e8cafc.yaml index 840dab32e..704828f11 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel Front) e8cafc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel Front) e8cafc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 535101 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.71 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel) 282857.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel) 282857.yaml index abfd62c34..21072dd76 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel) 282857.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel) 282857.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 270201 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.7 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker 6938eb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker 6938eb.yaml index 2a8497553..696767bfb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker 6938eb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker 6938eb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 269901 ColorDiffuse: @@ -41,9 +41,9 @@ Snap: true States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587401 ColorDiffuse: @@ -93,7 +93,7 @@ States: rotY: 179.999237 rotZ: 1.734952e-08 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' @@ -106,11 +106,11 @@ Transform: posX: 26.93 posY: 3.69 posZ: -10.62 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker bce6a5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker bce6a5.yaml index 549710e66..000eab437 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker bce6a5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker bce6a5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 258701 ColorDiffuse: @@ -39,9 +39,9 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587101 ColorDiffuse: @@ -88,7 +88,7 @@ States: rotY: 269.985962 rotZ: 1.07859748e-07 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' @@ -100,11 +100,11 @@ Transform: posX: 26.57 posY: 3.69 posZ: -8.31 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daisy's Tote Bag 96c9be.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daisy's Tote Bag 96c9be.yaml index b7ddbc626..981e81a42 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daisy's Tote Bag 96c9be.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daisy's Tote Bag 96c9be.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 581821 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.03 posY: 3.69 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daisy's Tote Bag d72b97.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daisy's Tote Bag d72b97.yaml index 5cdc1999d..10c1f6d48 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daisy's Tote Bag d72b97.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daisy's Tote Bag d72b97.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587205 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 48.53 posY: 2.02 posZ: -121.62 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Damned bad8cb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Damned bad8cb.yaml index 798f4b0db..49cb87062 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Damned bad8cb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Damned bad8cb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449520 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.07 posY: 3.86 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Damning Testimony 3369a5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Damning Testimony 3369a5.yaml index fb72525fc..5d7d1b4ad 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Damning Testimony 3369a5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Damning Testimony 3369a5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379052 ColorDiffuse: @@ -64,11 +64,11 @@ Transform: posX: 16.67 posY: 3.39 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daniela Reyes 444830.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daniela Reyes 444830.yaml index 47c7a0ff0..f11f7b157 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daniela Reyes 444830.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daniela Reyes 444830.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379500 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.76 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daniela Reyes df8ec4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daniela Reyes df8ec4.yaml index 9022c7bc1..b5f00d64f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daniela Reyes df8ec4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daniela Reyes df8ec4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379201 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 2.15 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daredevil (2) b3cad4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daredevil (2) b3cad4.yaml index a7b059a5e..4199f088e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daredevil (2) b3cad4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daredevil (2) b3cad4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 447633 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.68 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daredevil e4688b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daredevil e4688b.yaml index 4e1d83580..cfa754601 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daredevil e4688b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daredevil e4688b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538616 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.74 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daring 91e53c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daring 91e53c.yaml index 31aca458c..2df1c817b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daring 91e53c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daring 91e53c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379827 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 5.35 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daring Maneuver (2) fc82a5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daring Maneuver (2) fc82a5.yaml index 6c0bea09e..b7ea082ef 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daring Maneuver (2) fc82a5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daring Maneuver (2) fc82a5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538620 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.69 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daring Maneuver cc6b14.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daring Maneuver cc6b14.yaml index 2666b0bad..4b8a16492 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daring Maneuver cc6b14.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daring Maneuver cc6b14.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368706 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 5.45 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dario El-Amin 5ec1a2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dario El-Amin 5ec1a2.yaml index e5c8522ac..92776008a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dario El-Amin 5ec1a2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dario El-Amin 5ec1a2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368630 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.01 posY: 3.88 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Future 3aa40e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dark Future 3aa40e.yaml index caa4fecc6..14161d912 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Future 3aa40e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Future 3aa40e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538701 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.0 posY: 3.79 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Horse 1b4434.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dark Horse 1b4434.yaml index a61cb683b..f10536e57 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Horse 1b4434.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Horse 1b4434.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368833 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.68 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Insight f08934.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dark Insight f08934.yaml index 485f493ea..ce5fab273 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Insight f08934.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Insight f08934.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 444260 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 5.1 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Memory 580a4d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dark Memory 580a4d.yaml index 80e48ece8..b91f0c507 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Memory 580a4d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Memory 580a4d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 584101 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 8.98 posY: 4.01 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Memory 98c8d8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dark Memory 98c8d8.yaml index 083206249..91cfa00f8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Memory 98c8d8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Memory 98c8d8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587209 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 49.08 posY: 2.33 posZ: -96.09 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Memory c025bf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dark Memory c025bf.yaml index 1ca81ff0a..068de9def 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Memory c025bf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Memory c025bf.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230527 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.08 posY: 3.72 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Pact dd3d09.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dark Pact dd3d09.yaml index 4df40ed54..eb5d44219 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Pact dd3d09.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Pact dd3d09.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 440813 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.66 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Prophecy (Taboo) 94cdf6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dark Prophecy (Taboo) 94cdf6.yaml index 6d4ba31ea..4dea510e4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Prophecy (Taboo) 94cdf6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Prophecy (Taboo) 94cdf6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558210 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 21.61 posY: 4.32 posZ: -56.29 - rotX: 0 - rotY: 270 - rotZ: 3 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Prophecy da7613.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dark Prophecy da7613.yaml index 06d41da97..e9c19802d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Prophecy da7613.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Prophecy da7613.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230309 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.8 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Ritual 272e6c.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Dark Ritual 272e6c.ttslua index 63d2a5430..3e4fa8923 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Ritual 272e6c.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Ritual 272e6c.ttslua @@ -1,81 +1,346 @@ -function onload() - mode = "Curse" - chaosbag = getChaosBag() - manager = getObjectFromGUID("5933fb") - sealedTokens = { } - IMAGE_TOKEN_MAP = { } - for i,v in pairs(Global.getVar("IMAGE_TOKEN_MAP")) do - IMAGE_TOKEN_MAP[i] = v - end +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} - -- add menu items - self.clearContextMenu() - self.addContextMenuItem("Release Token", releaseTokens, true) - for url,name in pairs(IMAGE_TOKEN_MAP) do - if name == mode then - self.addContextMenuItem("Seal " .. mode, function(playerColor) sealToken(url, playerColor) end, true) - end - end + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/DarkRitual") +end) +__bundle_register("playercards/cards/DarkRitual", function(require, _LOADED, __bundle_register, __bundle_modules) +VALID_TOKENS = { + ["Curse"] = true +} + +require("playercards/CardsThatSealTokens") +end) +__bundle_register("playercards/CardsThatSealTokens", function(require, _LOADED, __bundle_register, __bundle_modules) +--[[ Library for cards that seal tokens +This file is used to add sealing option to cards' context menu. +Valid options (set before requiring this file): + +UPDATE_ON_HOVER --@type: boolean + - automatically updates the context menu options when the card is hovered + - the "Read Bag" function reads the content of the chaos bag to update the context menu + - example usage: "Unrelenting" (to only display valid tokens) + +SHOW_SINGLE_RELEASE --@type: boolean + - enables an entry in the context menu + - this entry allows releasing a single token + - example usage: "Holy Spear" (to keep the other tokens and just release one) + +SHOW_MULTI_RELEASE --@type: number (amount of tokens to release at once) + - enables an entry in the context menu + - this enty allows releasing of multiple tokens at once + - example usage: "Nephthys" (to release 3 bless tokens at once) + +SHOW_MULTI_SEAL --@type: number (amount of tokens to seal at once) + - enables an entry in the context menu + - this entry allows sealing of multiple tokens at once + - example usage: "Holy Spear" (to seal two bless tokens at once) + +VALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens should be abled to be sealed + - needs to be defined for each card -> even if empty + - example usage: "The Chthonian Stone" + > VALID_TOKENS = { + > ["Skull"] = true, + > ["Cultist"] = true, + > ["Tablet"] = true, + > ["Elder Thing"] = true, + > } + +INVALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens are invalid for sealing + - only needs to be defined if needed + - usually combined with empty "VALID_TOKENS" table + - example usage: "Protective Incantation" (not allowed to seal Auto-fail) + +---------------------------------------------------------- +Example 1: Crystalline Elder Sign +This card can only seal the "+1" or "Elder Sign" token, +it does not need specific options for multi-sealing or releasing. +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["+1"] = true, +> ["Elder Sign"] = true +> } +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +---------------------------------------------------------- +Example 2: Holy Spear +This card features the following abilities (just listing the relevant parts): +- releasing a single bless token +- sealing two bless tokens +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["Bless"] = true +> } +> SHOW_SINGLE_RELEASE = true +> SHOW_MULTI_SEAL = 2 +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +----------------------------------------------------------]] + +local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi") +local tokenArrangerApi = require("accessories/TokenArrangerApi") +local sealedTokens = {} +local ID_URL_MAP = {} +local tokensInBag = {} + +function onSave() return JSON.encode(sealedTokens) end + +function onLoad(savedData) + sealedTokens = JSON.decode(savedData) or {} + ID_URL_MAP = Global.getTable("ID_URL_MAP") + generateContextMenu() end -function sealToken(url, playerColor) - local pos = self.getPosition() +-- builds the context menu +function generateContextMenu() + -- conditional single or multi release options + if SHOW_SINGLE_RELEASE then + self.addContextMenuItem("Release token", releaseOneToken) + elseif SHOW_MULTI_RELEASE then + self.addContextMenuItem("Release " .. SHOW_MULTI_RELEASE .. " token(s)", releaseMultipleTokens) + else + self.addContextMenuItem("Release token(s)", releaseAllTokens) + end - local name = IMAGE_TOKEN_MAP[url] - for i,obj in ipairs(chaosbag.getObjects()) do - if obj.name == name then - chaosbag.takeObject({ - position={ pos.x, pos.y + 1, pos.z }, - index=i-1, - smooth=false, - callback_function=_sealToken - }) - return - end - end - printToColor(name .. " token not found in bag", playerColor) -end + -- main context menu options to seal tokens + for _, map in pairs(ID_URL_MAP) do + if (VALID_TOKENS[map.name] ~= nil) or (UPDATE_ON_HOVER and tokensInBag[map.name] and not INVALID_TOKENS[map.name]) then + if not SHOW_MULTI_SEAL then + self.addContextMenuItem("Seal " .. map.name, function(playerColor) + sealToken(map.name, playerColor) + end) + else + self.addContextMenuItem("Seal " .. SHOW_MULTI_SEAL .. " " .. map.name, function(playerColor) + readBag() + local allowed = true + local notFound -function _sealToken(obj) - table.insert(sealedTokens, obj) - local guid = obj.getGUID() - local tokensTaken = manager.getVar("tokensTaken") - table.insert(tokensTaken[mode], guid) - manager.setVar("tokensTaken", tokensTaken) - manager.setVar("mode", mode) - printToAll("Sealing " .. mode .. " token " .. manager.call("getTokenCount")) -end - -function releaseTokens(playerColor) - if #sealedTokens == 0 then return end - local token = sealedTokens[#sealedTokens] - if token ~= nil then - local guid = token.getGUID() - chaosbag.putObject(token) - local tokensTaken = manager.getVar("tokensTaken") - for i,v in ipairs(tokensTaken[mode]) do - if v == guid then - table.remove(tokensTaken[mode], i) - break + for name, _ in pairs(VALID_TOKENS) do + if (tokensInBag[name] or 0) < SHOW_MULTI_SEAL then + allowed = false + notFound = name end - end - manager.setVar("tokensTaken", tokensTaken) - manager.setVar("mode", mode) - printToAll("Releasing " .. mode .. " token" .. manager.call("getTokenCount")) - end + end - table.remove(sealedTokens) + if allowed then + for i = 1, SHOW_MULTI_SEAL do + sealToken(map.name, playerColor) + end + else + printToColor("Not enough " .. notFound .. " tokens in the chaos bag.", playerColor) + end + end) + end + end + end end -function getChaosBag() - local items = getObjectFromGUID("83ef06").getObjects() - local chaosbag = nil - for i,v in ipairs(items) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break +-- generates a list of chaos tokens that is in the chaos bag +function readBag() + local chaosbag = Global.call("findChaosBag") + tokensInBag = {} + + for _, token in ipairs(chaosbag.getObjects()) do + tokensInBag[token.name] = (tokensInBag[token.name] or 0) + 1 + end +end + +-- native event from TTS - used to update the context menu for cards like "Unrelenting" +function onHover() + if UPDATE_ON_HOVER then + readBag() + self.clearContextMenu() + generateContextMenu() + end +end + +-- seals the named token on this card +function sealToken(name, playerColor) + if not Global.call("canTouchChaosTokens") then return end + local chaosbag = Global.call("findChaosBag") + for i, obj in ipairs(chaosbag.getObjects()) do + if obj.name == name then + chaosbag.takeObject({ + position = self.getPosition() + Vector(0, 0.5 + 0.1 * #sealedTokens, 0), + rotation = self.getRotation(), + index = i - 1, + smooth = false, + callback_function = function(token) + local guid = token.getGUID() + table.insert(sealedTokens, guid) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.sealedToken(name, guid) + end end + }) + return end - if chaosbag == nil then printToAll("No chaos bag found") end - return chaosbag -end \ No newline at end of file + end + printToColor(name .. " token not found in chaos bag", playerColor) +end + +-- release the last sealed token +function releaseOneToken(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token", playerColor) + putTokenAway(table.remove(sealedTokens)) + end +end + +-- release multiple tokens at once +function releaseMultipleTokens(playerColor) + if SHOW_MULTI_RELEASE >= #sealedTokens then + for i = 1, SHOW_MULTI_RELEASE do + releaseOneToken(playerColor) + end + else + printToColor("Not enough " .. name .. " tokens sealed.", playerColor) + end +end + +-- releases all sealed tokens +function releaseAllTokens(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token(s)", playerColor) + for _, guid in ipairs(sealedTokens) do + putTokenAway(guid) + end + sealedTokens = {} + end +end + +-- returns the token (referenced by GUID) to the chaos bag +function putTokenAway(guid) + local token = getObjectFromGUID(guid) + if not token then return end + + local name = token.getName() + local chaosbag = Global.call("findChaosBag") + chaosbag.putObject(token) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.releasedToken(name, guid) + end +end +end) +__bundle_register("accessories/TokenArrangerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenArrangerApi = {} + + -- local function to call the token arranger, if it is on the table + ---@param functionName String Name of the function to cal + ---@param argument Variant Parameter to pass + local function callIfExistent(functionName, argument) + local tokenArranger = getObjectsWithTag("TokenArranger")[1] + if tokenArranger ~= nil then + tokenArranger.call(functionName, argument) + end + end + + -- updates the token modifiers with the provided data + ---@param tokenData Table Contains the chaos token metadata + TokenArrangerApi.onTokenDataChanged = function(fullData) + callIfExistent("onTokenDataChanged", fullData) + end + + -- deletes already laid out tokens + TokenArrangerApi.deleteCopiedTokens = function() + callIfExistent("deleteCopiedTokens") + end + + -- updates the laid out tokens + TokenArrangerApi.layout = function() + Wait.time(function() callIfExistent("layout") end, 0.1) + end + + return TokenArrangerApi +end +end) +__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local BlessCurseManagerApi = {} + local MANAGER_GUID = "5933fb" + + -- removes all taken tokens and resets the counts + BlessCurseManagerApi.removeTakenTokensAndReset = function() + local BlessCurseManager = getObjectFromGUID(MANAGER_GUID) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10) + Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.sealedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("sealedToken", { type = type, guid = guid }) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.releasedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("releasedToken", { type = type, guid = guid }) + end + + -- broadcasts the current status for bless/curse tokens + ---@param playerColor String Color of the player to show the broadcast to + BlessCurseManagerApi.broadcastStatus = function(playerColor) + getObjectFromGUID(MANAGER_GUID).call("broadcastStatus", playerColor) + end + + -- adds Wendy's menu to the hovered card (allows sealing of tokens) + ---@param color String Color of the player to show the broadcast to + BlessCurseManagerApi.addWendysMenu = function(playerColor, hoveredObject) + getObjectFromGUID(MANAGER_GUID).call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject }) + end + + return BlessCurseManagerApi +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Ritual 272e6c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dark Ritual 272e6c.yaml index 7a7b2ca17..a4011dd6c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Ritual 272e6c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Ritual 272e6c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 554120 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.17 posY: 3.02 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Darrell Simmons 3b3b7a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Darrell Simmons 3b3b7a.yaml index 1163aa2c2..f5ff5dfa6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Darrell Simmons 3b3b7a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Darrell Simmons 3b3b7a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 846104 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 14.92 posY: 2.21 posZ: 57.24 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Darrell Simmons 5d3d67.yaml b/unpacked/Bag All Player Cards 15bb07/Card Darrell Simmons 5d3d67.yaml index 2c02a355f..e036d344b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Darrell Simmons 5d3d67.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Darrell Simmons 5d3d67.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 843404 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.6 posY: 2.21 posZ: 52.39 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Darrell's Kodak caa382.yaml b/unpacked/Bag All Player Cards 15bb07/Card Darrell's Kodak caa382.yaml index 60fcc939f..0e6ea3339 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Darrell's Kodak caa382.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Darrell's Kodak caa382.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379010 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 10.22 posY: 2.2 posZ: 44.98 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dauntless Spirit (1) adc8b6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dauntless Spirit (1) adc8b6.yaml index 21d85c681..3191ad5c5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dauntless Spirit (1) adc8b6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dauntless Spirit (1) adc8b6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378907 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.18 posY: 2.95 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card David Renfield (Taboo) 7a73c4.yaml b/unpacked/Bag All Player Cards 15bb07/Card David Renfield (Taboo) 7a73c4.yaml index 821180bda..22f9b27b2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card David Renfield (Taboo) 7a73c4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card David Renfield (Taboo) 7a73c4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558200 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 21.62 posY: 4.33 posZ: -57.28 - rotX: 0 - rotY: 270 - rotZ: 3 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card David Renfield 1f8539.yaml b/unpacked/Bag All Player Cards 15bb07/Card David Renfield 1f8539.yaml index e05835c93..64e374737 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card David Renfield 1f8539.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card David Renfield 1f8539.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230325 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.98 posY: 3.78 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Day of Reckoning e701af.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Day of Reckoning e701af.ttslua index 55f9fdef2..c52f55389 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Day of Reckoning e701af.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Day of Reckoning e701af.ttslua @@ -1,60 +1,346 @@ -function onload() - chaosbag = getChaosBag() - sealedTokens = { } - IMAGE_TOKEN_MAP = { } - for i,v in pairs(Global.getVar("IMAGE_TOKEN_MAP")) do - IMAGE_TOKEN_MAP[i] = v - end +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} - -- add menu items + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local BlessCurseManagerApi = {} + local MANAGER_GUID = "5933fb" + + -- removes all taken tokens and resets the counts + BlessCurseManagerApi.removeTakenTokensAndReset = function() + local BlessCurseManager = getObjectFromGUID(MANAGER_GUID) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10) + Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.sealedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("sealedToken", { type = type, guid = guid }) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.releasedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("releasedToken", { type = type, guid = guid }) + end + + -- broadcasts the current status for bless/curse tokens + ---@param playerColor String Color of the player to show the broadcast to + BlessCurseManagerApi.broadcastStatus = function(playerColor) + getObjectFromGUID(MANAGER_GUID).call("broadcastStatus", playerColor) + end + + -- adds Wendy's menu to the hovered card (allows sealing of tokens) + ---@param color String Color of the player to show the broadcast to + BlessCurseManagerApi.addWendysMenu = function(playerColor, hoveredObject) + getObjectFromGUID(MANAGER_GUID).call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject }) + end + + return BlessCurseManagerApi +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/DayofReckoning") +end) +__bundle_register("playercards/cards/DayofReckoning", function(require, _LOADED, __bundle_register, __bundle_modules) +VALID_TOKENS = { + ["Elder Sign"] = true +} + +require("playercards/CardsThatSealTokens") +end) +__bundle_register("playercards/CardsThatSealTokens", function(require, _LOADED, __bundle_register, __bundle_modules) +--[[ Library for cards that seal tokens +This file is used to add sealing option to cards' context menu. +Valid options (set before requiring this file): + +UPDATE_ON_HOVER --@type: boolean + - automatically updates the context menu options when the card is hovered + - the "Read Bag" function reads the content of the chaos bag to update the context menu + - example usage: "Unrelenting" (to only display valid tokens) + +SHOW_SINGLE_RELEASE --@type: boolean + - enables an entry in the context menu + - this entry allows releasing a single token + - example usage: "Holy Spear" (to keep the other tokens and just release one) + +SHOW_MULTI_RELEASE --@type: number (amount of tokens to release at once) + - enables an entry in the context menu + - this enty allows releasing of multiple tokens at once + - example usage: "Nephthys" (to release 3 bless tokens at once) + +SHOW_MULTI_SEAL --@type: number (amount of tokens to seal at once) + - enables an entry in the context menu + - this entry allows sealing of multiple tokens at once + - example usage: "Holy Spear" (to seal two bless tokens at once) + +VALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens should be abled to be sealed + - needs to be defined for each card -> even if empty + - example usage: "The Chthonian Stone" + > VALID_TOKENS = { + > ["Skull"] = true, + > ["Cultist"] = true, + > ["Tablet"] = true, + > ["Elder Thing"] = true, + > } + +INVALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens are invalid for sealing + - only needs to be defined if needed + - usually combined with empty "VALID_TOKENS" table + - example usage: "Protective Incantation" (not allowed to seal Auto-fail) + +---------------------------------------------------------- +Example 1: Crystalline Elder Sign +This card can only seal the "+1" or "Elder Sign" token, +it does not need specific options for multi-sealing or releasing. +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["+1"] = true, +> ["Elder Sign"] = true +> } +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +---------------------------------------------------------- +Example 2: Holy Spear +This card features the following abilities (just listing the relevant parts): +- releasing a single bless token +- sealing two bless tokens +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["Bless"] = true +> } +> SHOW_SINGLE_RELEASE = true +> SHOW_MULTI_SEAL = 2 +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +----------------------------------------------------------]] + +local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi") +local tokenArrangerApi = require("accessories/TokenArrangerApi") +local sealedTokens = {} +local ID_URL_MAP = {} +local tokensInBag = {} + +function onSave() return JSON.encode(sealedTokens) end + +function onLoad(savedData) + sealedTokens = JSON.decode(savedData) or {} + ID_URL_MAP = Global.getTable("ID_URL_MAP") + generateContextMenu() +end + +-- builds the context menu +function generateContextMenu() + -- conditional single or multi release options + if SHOW_SINGLE_RELEASE then + self.addContextMenuItem("Release token", releaseOneToken) + elseif SHOW_MULTI_RELEASE then + self.addContextMenuItem("Release " .. SHOW_MULTI_RELEASE .. " token(s)", releaseMultipleTokens) + else + self.addContextMenuItem("Release token(s)", releaseAllTokens) + end + + -- main context menu options to seal tokens + for _, map in pairs(ID_URL_MAP) do + if (VALID_TOKENS[map.name] ~= nil) or (UPDATE_ON_HOVER and tokensInBag[map.name] and not INVALID_TOKENS[map.name]) then + if not SHOW_MULTI_SEAL then + self.addContextMenuItem("Seal " .. map.name, function(playerColor) + sealToken(map.name, playerColor) + end) + else + self.addContextMenuItem("Seal " .. SHOW_MULTI_SEAL .. " " .. map.name, function(playerColor) + readBag() + local allowed = true + local notFound + + for name, _ in pairs(VALID_TOKENS) do + if (tokensInBag[name] or 0) < SHOW_MULTI_SEAL then + allowed = false + notFound = name + end + end + + if allowed then + for i = 1, SHOW_MULTI_SEAL do + sealToken(map.name, playerColor) + end + else + printToColor("Not enough " .. notFound .. " tokens in the chaos bag.", playerColor) + end + end) + end + end + end +end + +-- generates a list of chaos tokens that is in the chaos bag +function readBag() + local chaosbag = Global.call("findChaosBag") + tokensInBag = {} + + for _, token in ipairs(chaosbag.getObjects()) do + tokensInBag[token.name] = (tokensInBag[token.name] or 0) + 1 + end +end + +-- native event from TTS - used to update the context menu for cards like "Unrelenting" +function onHover() + if UPDATE_ON_HOVER then + readBag() self.clearContextMenu() - self.addContextMenuItem("Release Token", releaseTokens) - for url,name in pairs(IMAGE_TOKEN_MAP) do - if name == "Elder Sign" then - self.addContextMenuItem("Seal Elder Sign", function(playerColor) sealToken(url, playerColor) end) + generateContextMenu() + end +end + +-- seals the named token on this card +function sealToken(name, playerColor) + if not Global.call("canTouchChaosTokens") then return end + local chaosbag = Global.call("findChaosBag") + for i, obj in ipairs(chaosbag.getObjects()) do + if obj.name == name then + chaosbag.takeObject({ + position = self.getPosition() + Vector(0, 0.5 + 0.1 * #sealedTokens, 0), + rotation = self.getRotation(), + index = i - 1, + smooth = false, + callback_function = function(token) + local guid = token.getGUID() + table.insert(sealedTokens, guid) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.sealedToken(name, guid) + end end + }) + return end + end + printToColor(name .. " token not found in chaos bag", playerColor) end -function sealToken(url, playerColor) - local pos = self.getPosition() - - local name = IMAGE_TOKEN_MAP[url] - for i,obj in ipairs(chaosbag.getObjects()) do - if obj.name == name then - chaosbag.takeObject({ - position={ pos.x, pos.y + 1, pos.z }, - index=i-1, - smooth=false, - callback_function=_sealToken - }) - return - end - end - printToColor(name .. " token not found in bag", playerColor) -end - -function _sealToken(obj) - table.insert(sealedTokens, obj) -end - -function releaseTokens(playerColor) +-- release the last sealed token +function releaseOneToken(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else printToColor("Releasing token", playerColor) - for i,obj in ipairs(sealedTokens) do - chaosbag.putObject(obj) - end - sealedTokens = { } + putTokenAway(table.remove(sealedTokens)) + end end -function getChaosBag() - local items = getObjectFromGUID("83ef06").getObjects() - local chaosbag = nil - for i,v in ipairs(items) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break - end +-- release multiple tokens at once +function releaseMultipleTokens(playerColor) + if SHOW_MULTI_RELEASE >= #sealedTokens then + for i = 1, SHOW_MULTI_RELEASE do + releaseOneToken(playerColor) end - if chaosbag == nil then printToAll("No chaos bag found") end - return chaosbag -end \ No newline at end of file + else + printToColor("Not enough " .. name .. " tokens sealed.", playerColor) + end +end + +-- releases all sealed tokens +function releaseAllTokens(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token(s)", playerColor) + for _, guid in ipairs(sealedTokens) do + putTokenAway(guid) + end + sealedTokens = {} + end +end + +-- returns the token (referenced by GUID) to the chaos bag +function putTokenAway(guid) + local token = getObjectFromGUID(guid) + if not token then return end + + local name = token.getName() + local chaosbag = Global.call("findChaosBag") + chaosbag.putObject(token) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.releasedToken(name, guid) + end +end +end) +__bundle_register("accessories/TokenArrangerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenArrangerApi = {} + + -- local function to call the token arranger, if it is on the table + ---@param functionName String Name of the function to cal + ---@param argument Variant Parameter to pass + local function callIfExistent(functionName, argument) + local tokenArranger = getObjectsWithTag("TokenArranger")[1] + if tokenArranger ~= nil then + tokenArranger.call(functionName, argument) + end + end + + -- updates the token modifiers with the provided data + ---@param tokenData Table Contains the chaos token metadata + TokenArrangerApi.onTokenDataChanged = function(fullData) + callIfExistent("onTokenDataChanged", fullData) + end + + -- deletes already laid out tokens + TokenArrangerApi.deleteCopiedTokens = function() + callIfExistent("deleteCopiedTokens") + end + + -- updates the laid out tokens + TokenArrangerApi.layout = function() + Wait.time(function() callIfExistent("layout") end, 0.1) + end + + return TokenArrangerApi +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Day of Reckoning e701af.yaml b/unpacked/Bag All Player Cards 15bb07/Card Day of Reckoning e701af.yaml index b0e54cfd2..82c837db8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Day of Reckoning e701af.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Day of Reckoning e701af.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 586334 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.16 posY: 4.17 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dayana Esperence (3) 4f2489.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dayana Esperence (3) 4f2489.yaml index f634c6f22..7d2d1fd0f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dayana Esperence (3) 4f2489.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dayana Esperence (3) 4f2489.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379616 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.14 posY: 3.76 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card De Vermis Mysteriis (2) b40b98.yaml b/unpacked/Bag All Player Cards 15bb07/Card De Vermis Mysteriis (2) b40b98.yaml index 54cd047c0..fc3f262a6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card De Vermis Mysteriis (2) b40b98.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card De Vermis Mysteriis (2) b40b98.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 293313 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 5.03 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Deafening Silence 0821d4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Deafening Silence 0821d4.yaml index 600e15073..f988c35b3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Deafening Silence 0821d4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Deafening Silence 0821d4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379009 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 10.69 posY: 2.44 posZ: 43.88 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Death ∙ XIII (1) 2e5b03.yaml b/unpacked/Bag All Player Cards 15bb07/Card Death ∙ XIII (1) 2e5b03.yaml index 03415339c..034893245 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Death ∙ XIII (1) 2e5b03.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Death ∙ XIII (1) 2e5b03.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 290207 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.81 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Deciphered Reality (5) 8b0193.yaml b/unpacked/Bag All Player Cards 15bb07/Card Deciphered Reality (5) 8b0193.yaml index 8e07e432f..8eb868933 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Deciphered Reality (5) 8b0193.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Deciphered Reality (5) 8b0193.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430660 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 5.27 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Deck of Possibilities fefdfa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Deck of Possibilities fefdfa.yaml index e89a2f73e..2047cc2c0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Deck of Possibilities fefdfa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Deck of Possibilities fefdfa.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266432 ColorDiffuse: @@ -19,7 +19,8 @@ CustomDeck: UniqueBack: true Description: Tychokinetic Implement DragSelectable: true -GMNotes: '' +GMNotes: "{\n \"id\": \"88043\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n + \ \"permanent\": true,\n \"traits\": \"Item. Relic.\",\n \"cycle\": \"Standalone\"\n}" GUID: fefdfa Grid: true GridProjection: false @@ -36,16 +37,19 @@ Nickname: Deck of Possibilities SidewaysCard: false Snap: true Sticky: true +Tags: +- Asset +- PlayerCard Tooltip: true Transform: - posX: 78.13 - posY: 3.29 - posZ: 27.63 - rotX: 359 - rotY: 270 - rotZ: 357 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + posX: 78.46 + posY: 3.24 + posZ: 26.59 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Decorated Skull (3) 946a58.yaml b/unpacked/Bag All Player Cards 15bb07/Card Decorated Skull (3) 946a58.yaml index c8df52368..437cd9960 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Decorated Skull (3) 946a58.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Decorated Skull (3) 946a58.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545204 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.11 posY: 3.84 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Decorated Skull 07350b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Decorated Skull 07350b.yaml index ea7c30143..c433120d0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Decorated Skull 07350b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Decorated Skull 07350b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368618 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.97 posY: 3.69 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Decoy 2ee50e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Decoy 2ee50e.yaml index 83c68bbbe..87cfd47cf 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Decoy 2ee50e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Decoy 2ee50e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 292914 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.78 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Deduction (2) 95272b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Deduction (2) 95272b.yaml index 4aa6dd2c3..3ac41a670 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Deduction (2) 95272b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Deduction (2) 95272b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430642 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 25.72 posY: 3.53 posZ: -7.11 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Deduction b265c4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Deduction b265c4.yaml index f61e06ad0..67f29be58 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Deduction b265c4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Deduction b265c4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368402 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 20.51 posY: 1.99 posZ: -102.6 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Deduction bc4a4c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Deduction bc4a4c.yaml index a90b5e904..5c23c669c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Deduction bc4a4c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Deduction bc4a4c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587204 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 78.81 posY: 3.34 posZ: 7.67 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Deep Knowledge b176fc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Deep Knowledge b176fc.yaml index d7cc3f847..989c3b335 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Deep Knowledge b176fc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Deep Knowledge b176fc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 581517 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.96 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Defensive Stance (1) 62e4f4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Defensive Stance (1) 62e4f4.yaml index 658c52835..2b0b2924b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Defensive Stance (1) 62e4f4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Defensive Stance (1) 62e4f4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379014 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 2.36 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Defiance (2) bf3dd1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Defiance (2) bf3dd1.yaml index f78ed1fa8..545f3f613 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Defiance (2) bf3dd1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Defiance (2) bf3dd1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230338 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 5.1 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Defiance 59b24f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Defiance 59b24f.yaml index f73933c0e..a035edb66 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Defiance 59b24f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Defiance 59b24f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230302 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.04 posY: 3.78 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Delay the Inevitable 683937.yaml b/unpacked/Bag All Player Cards 15bb07/Card Delay the Inevitable 683937.yaml index 0dc3f3137..1ffe5b8f8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Delay the Inevitable 683937.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Delay the Inevitable 683937.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 431007 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.67 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Delilah O'Rourke (3) 97a795.yaml b/unpacked/Bag All Player Cards 15bb07/Card Delilah O'Rourke (3) 97a795.yaml index 84b2726d2..11a99d890 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Delilah O'Rourke (3) 97a795.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Delilah O'Rourke (3) 97a795.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449035 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.07 posY: 3.78 posZ: -16.71 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Delve Too Deep (Taboo) d4a68a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Delve Too Deep (Taboo) d4a68a.yaml index bf812a351..9723e8dca 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Delve Too Deep (Taboo) d4a68a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Delve Too Deep (Taboo) d4a68a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450615 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.76 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Delve Too Deep 14e212.yaml b/unpacked/Bag All Player Cards 15bb07/Card Delve Too Deep 14e212.yaml index 3b32643ec..e3c0dbb07 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Delve Too Deep 14e212.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Delve Too Deep 14e212.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230310 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.23 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dendromorphosis 121b2d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dendromorphosis 121b2d.yaml index 3e323ade4..554fba155 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dendromorphosis 121b2d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dendromorphosis 121b2d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545211 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.03 posY: 3.69 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Deny Existence (5) d24531.yaml b/unpacked/Bag All Player Cards 15bb07/Card Deny Existence (5) d24531.yaml index 88befc0cd..47ab8c146 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Deny Existence (5) d24531.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Deny Existence (5) d24531.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379617 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.2 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Deny Existence 8aa0c3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Deny Existence 8aa0c3.yaml index 40646300e..3b8812c38 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Deny Existence 8aa0c3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Deny Existence 8aa0c3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430908 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.11 posY: 3.79 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Desperate Search 45bdf0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Desperate Search 45bdf0.yaml index cac272834..b2f3aa1e7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Desperate Search 45bdf0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Desperate Search 45bdf0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368507 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 5.33 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Detached from Reality d12359.yaml b/unpacked/Bag All Player Cards 15bb07/Card Detached from Reality d12359.yaml index 63e6ee1d6..d71365105 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Detached from Reality d12359.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Detached from Reality d12359.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587508 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 25.43 posY: 3.53 posZ: -7.47 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Detective's Colt 1911s f4bac6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Detective's Colt 1911s f4bac6.yaml index b4df55b09..f1b11123b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Detective's Colt 1911s f4bac6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Detective's Colt 1911s f4bac6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 592055 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.1 posY: 3.71 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Devil's Luck (1) 812685.yaml b/unpacked/Bag All Player Cards 15bb07/Card Devil's Luck (1) 812685.yaml index 8fc0c3aed..638744691 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Devil's Luck (1) 812685.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Devil's Luck (1) 812685.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368835 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.15 posY: 3.9 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake 57668a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake 57668a.yaml index 9ea92b132..f9f135a11 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake 57668a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake 57668a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 553203 ColorDiffuse: @@ -39,9 +39,9 @@ Snap: true States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 274300 ColorDiffuse: @@ -85,10 +85,10 @@ States: posY: 1.49510384 posZ: 31.0408936 rotX: 2.7844257e-07 - rotY: 270 + rotY: 270.0 rotZ: -7.77030152e-07 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' @@ -100,11 +100,11 @@ Transform: posX: 26.57 posY: 3.69 posZ: -10.9 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake e015f8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake e015f8.yaml index 2e6f3d5af..9800f0ede 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake e015f8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake e015f8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 553103 ColorDiffuse: @@ -41,9 +41,9 @@ Snap: true States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 274137 ColorDiffuse: @@ -91,10 +91,10 @@ States: posY: 1.49510384 posZ: 24.50595 rotX: 8.37629059e-08 - rotY: 180 + rotY: 180.0 rotZ: -3.86306681e-07 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' @@ -107,11 +107,11 @@ Transform: posX: 26.93 posY: 3.69 posZ: -8.01 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Diana Stanley 32b091.yaml b/unpacked/Bag All Player Cards 15bb07/Card Diana Stanley 32b091.yaml index e076560f1..dba509604 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Diana Stanley 32b091.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Diana Stanley 32b091.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 272125 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.58 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Diana Stanley 359ef4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Diana Stanley 359ef4.yaml index fcf30e988..65fa2c36a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Diana Stanley 359ef4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Diana Stanley 359ef4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 591001 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.84 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dig Deep (2) 0414b4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dig Deep (2) 0414b4.yaml index 1b096fdb8..e0491f3a2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dig Deep (2) 0414b4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dig Deep (2) 0414b4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368845 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.71 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dig Deep (4) 734b45.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dig Deep (4) 734b45.yaml index 8f0add130..34528004b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dig Deep (4) 734b45.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dig Deep (4) 734b45.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449609 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 8.97 posY: 4.13 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dig Deep fc9e1b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dig Deep fc9e1b.yaml index 27684f84a..ebeda2c05 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dig Deep fc9e1b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dig Deep fc9e1b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368831 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dimensional Beam Machine fb4fff.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dimensional Beam Machine fb4fff.yaml index 1a59ad67a..c65fff4e5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dimensional Beam Machine fb4fff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dimensional Beam Machine fb4fff.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558008 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 78.5 posY: 3.35 posZ: 6.88 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Directive 07e7bd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Directive 07e7bd.yaml index 3f85bbc97..d6474d64d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Directive 07e7bd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Directive 07e7bd.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 536204 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.17 posY: 3.17 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Directive 0994c9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Directive 0994c9.yaml index 27275162b..1b15e3d39 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Directive 0994c9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Directive 0994c9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 536203 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.17 posY: 3.23 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Directive 133521.yaml b/unpacked/Bag All Player Cards 15bb07/Card Directive 133521.yaml index bf98272a6..a22f1b54c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Directive 133521.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Directive 133521.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 536200 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.92 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Directive 2d9256.yaml b/unpacked/Bag All Player Cards 15bb07/Card Directive 2d9256.yaml index a250fe822..fe1d24cff 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Directive 2d9256.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Directive 2d9256.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 536202 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.18 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Directive 706176.yaml b/unpacked/Bag All Player Cards 15bb07/Card Directive 706176.yaml index a37fb0029..b058b3ef0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Directive 706176.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Directive 706176.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 536201 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.0 posY: 3.93 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dirty Fighting (2) fa1be0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dirty Fighting (2) fa1be0.yaml index f02a41535..c7b781d19 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dirty Fighting (2) fa1be0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dirty Fighting (2) fa1be0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379066 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.67 posY: 3.38 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Disc of Itzamna (2) b00b76.yaml b/unpacked/Bag All Player Cards 15bb07/Card Disc of Itzamna (2) b00b76.yaml index 4359934a5..bc9e84991 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Disc of Itzamna (2) b00b76.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Disc of Itzamna (2) b00b76.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430648 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 19.28 posY: 3.37 posZ: -57.07 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Disc of Itzamna d6c44a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Disc of Itzamna d6c44a.yaml index 496af6d21..47be3f8ab 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Disc of Itzamna d6c44a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Disc of Itzamna d6c44a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538805 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.1 posY: 3.71 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Discipline 081db4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Discipline 081db4.yaml index c1633594c..223138047 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Discipline 081db4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Discipline 081db4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379406 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.44 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Discipline 3247da.yaml b/unpacked/Bag All Player Cards 15bb07/Card Discipline 3247da.yaml index c31ea1f4f..255092b82 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Discipline 3247da.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Discipline 3247da.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379408 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.59 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Discipline 5ff3bd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Discipline 5ff3bd.yaml index 854303d17..bd2834fe6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Discipline 5ff3bd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Discipline 5ff3bd.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379405 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.52 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Discipline e8d38d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Discipline e8d38d.yaml index 22e22291e..16ccd461b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Discipline e8d38d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Discipline e8d38d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379407 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.6 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Disguise f170fc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Disguise f170fc.yaml index 3a1f7e303..6862bb3f0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Disguise f170fc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Disguise f170fc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379055 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 16.67 posY: 3.39 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dissection Tools 95ca5d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dissection Tools 95ca5d.yaml index 48977ec27..d466cf858 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dissection Tools 95ca5d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dissection Tools 95ca5d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379036 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.67 posY: 3.39 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Divination (1) 658588.yaml b/unpacked/Bag All Player Cards 15bb07/Card Divination (1) 658588.yaml index b0ca3fba5..554ceb934 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Divination (1) 658588.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Divination (1) 658588.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378939 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.99 posY: 3.81 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Divination (4) 58f2af.yaml b/unpacked/Bag All Player Cards 15bb07/Card Divination (4) 58f2af.yaml index fa10296d9..cd01fc39f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Divination (4) 58f2af.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Divination (4) 58f2af.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378941 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.18 posY: 2.72 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dodge (2) 9ab750.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dodge (2) 9ab750.yaml index 346cd3d5c..259f3ea8e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dodge (2) 9ab750.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dodge (2) 9ab750.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379016 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 2.17 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dodge e0dff3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dodge e0dff3.yaml index d27d06d33..81a885823 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dodge e0dff3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dodge e0dff3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226313 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.06 posY: 3.81 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Doomed ba2ae1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Doomed ba2ae1.yaml index b179d07c4..883300704 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Doomed ba2ae1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Doomed ba2ae1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 440814 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.17 posY: 3.17 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Double or Nothing (Taboo) f98f6f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Double or Nothing (Taboo) f98f6f.yaml index 2d1bc6b2a..ba0e04ac0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Double or Nothing (Taboo) f98f6f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Double or Nothing (Taboo) f98f6f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450625 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.8 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Double or Nothing efb09b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Double or Nothing efb09b.yaml index 1950fd3b5..1df4d7507 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Double or Nothing efb09b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Double or Nothing efb09b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 261701 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 4.67 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Double, Double (4) 0e0530.yaml b/unpacked/Bag All Player Cards 15bb07/Card Double, Double (4) 0e0530.yaml index 7a572c480..0fe5ff887 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Double, Double (4) 0e0530.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Double, Double (4) 0e0530.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378019 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.11 posY: 3.94 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Down the Rabbit Hole b925fc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Down the Rabbit Hole b925fc.yaml index de8bd8d1e..5eb035497 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Down the Rabbit Hole b925fc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Down the Rabbit Hole b925fc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379049 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.19 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dowsing Rod (4) bcb13d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dowsing Rod (4) bcb13d.yaml index c2ccdd65a..d8f6fc757 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dowsing Rod (4) bcb13d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dowsing Rod (4) bcb13d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379121 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.74 posY: 3.37 posZ: 65.49 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dowsing Rod 851e3a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dowsing Rod 851e3a.yaml index 1da09f9e0..ea5f6eb68 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dowsing Rod 851e3a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dowsing Rod 851e3a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379107 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.67 posY: 3.37 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dr. Dewi Irawan c76a06.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dr. Dewi Irawan c76a06.yaml index 6cea830ef..fc6675534 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dr. Dewi Irawan c76a06.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dr. Dewi Irawan c76a06.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 588602 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 82.2 posY: 3.3 posZ: 25.34 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dr. Elli Horowitz 27e7b3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dr. Elli Horowitz 27e7b3.yaml index 81924ab12..5e981ecdf 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dr. Elli Horowitz 27e7b3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dr. Elli Horowitz 27e7b3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368433 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.09 posY: 3.7 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dr. Francis Morgan f03306.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dr. Francis Morgan f03306.yaml index 07b8d1113..6b0b023f9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dr. Francis Morgan f03306.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dr. Francis Morgan f03306.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232907 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.03 posY: 3.68 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dr. Henry Armitage 9229a8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dr. Henry Armitage 9229a8.yaml index add91b840..890791e54 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dr. Henry Armitage 9229a8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dr. Henry Armitage 9229a8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 588913 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.73 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dr. Milan Christopher (Taboo) 8ae314.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dr. Milan Christopher (Taboo) 8ae314.yaml index 72bdb5244..a800a1e52 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dr. Milan Christopher (Taboo) 8ae314.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dr. Milan Christopher (Taboo) 8ae314.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450614 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.2 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dr. Milan Christopher 9934d2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dr. Milan Christopher 9934d2.yaml index 4a10529a1..4d697ea5a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dr. Milan Christopher 9934d2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dr. Milan Christopher 9934d2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368434 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 19.52 posY: 3.37 posZ: -56.77 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dr. William T. Maleson (2) 3ee7a5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dr. William T. Maleson (2) 3ee7a5.yaml index 3ad349fc8..b2fe2a254 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dr. William T. Maleson (2) 3ee7a5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dr. William T. Maleson (2) 3ee7a5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379047 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.67 posY: 3.4 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dr. William T. Maleson 14d04f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dr. William T. Maleson 14d04f.yaml index f3a968868..93fc3a864 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dr. William T. Maleson 14d04f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dr. William T. Maleson 14d04f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 581102 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 4.45 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dragon Pole 331b58.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dragon Pole 331b58.yaml index c88b0aa43..0d0a67f38 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dragon Pole 331b58.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dragon Pole 331b58.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379050 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.99 posY: 3.75 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Drawing Thin (Taboo) 3d08dc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Drawing Thin (Taboo) 3d08dc.yaml index 7d06f05c2..b5a07ff9d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Drawing Thin (Taboo) 3d08dc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Drawing Thin (Taboo) 3d08dc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450609 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.08 posY: 3.7 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Drawing Thin 6d9881.yaml b/unpacked/Bag All Player Cards 15bb07/Card Drawing Thin 6d9881.yaml index f63b30370..ceebf19e4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Drawing Thin 6d9881.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Drawing Thin 6d9881.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 277910 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.04 posY: 3.89 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Drawing the Sign 438cca.yaml b/unpacked/Bag All Player Cards 15bb07/Card Drawing the Sign 438cca.yaml index 47de6c231..5dd3bcb8f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Drawing the Sign 438cca.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Drawing the Sign 438cca.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 580603 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.11 posY: 3.93 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Drawn to the Flame a8298f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Drawn to the Flame a8298f.yaml index 4a23c65a2..c37d3378a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Drawn to the Flame a8298f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Drawn to the Flame a8298f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230304 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 32.98 posY: 3.33 posZ: -47.41 - rotX: 1 - rotY: 270 - rotZ: 2 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dread Curse c54d7e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dread Curse c54d7e.yaml index 737f17807..301f18deb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dread Curse c54d7e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dread Curse c54d7e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 583433 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.05 posY: 3.76 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dreaded End 1a94ad.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dreaded End 1a94ad.yaml index f36437386..d5ae4ab0a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dreaded End 1a94ad.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dreaded End 1a94ad.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587828 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.16 posY: 3.71 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) 5f9a10.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) 5f9a10.yaml index 92917b8a2..5a44f71bc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) 5f9a10.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) 5f9a10.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 447834 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.09 posY: 3.69 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) e5f9cb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) e5f9cb.yaml index c58df9c03..5b5c5863f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) e5f9cb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) e5f9cb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 447835 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.16 posY: 4.18 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) ea40f6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) ea40f6.yaml index fca20957b..699dd9368 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) ea40f6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) ea40f6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 447836 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.97 posY: 4.03 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dream Diary b81dcf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dream Diary b81dcf.yaml index 084254770..491bc7b9b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dream Diary b81dcf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dream Diary b81dcf.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379928 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.01 posY: 3.92 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dream Parasite ae16e8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dream Parasite ae16e8.yaml index 7d725a185..128fff0d5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dream Parasite ae16e8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dream Parasite ae16e8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 448736 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.76 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dream-Enhancing Serum 98c5af.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dream-Enhancing Serum 98c5af.yaml index 3aa67e8c2..869f89fc7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dream-Enhancing Serum 98c5af.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dream-Enhancing Serum 98c5af.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379931 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.13 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dream-Gate fa4c1e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dream-Gate fa4c1e.yaml index 6f242b76e..9489e710e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dream-Gate fa4c1e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dream-Gate fa4c1e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 541109 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 26.04 posY: 3.54 posZ: -7.32 - rotX: 0 - rotY: 240 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 240.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dreams of the Deep 13eaf0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dreams of the Deep 13eaf0.yaml index 6257c07c1..1f66b041f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dreams of the Deep 13eaf0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dreams of the Deep 13eaf0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 444147 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.99 posY: 3.8 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Duke 876557.yaml b/unpacked/Bag All Player Cards 15bb07/Card Duke 876557.yaml index 76c540b4a..01e2ec631 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Duke 876557.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Duke 876557.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 371112 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.27 posY: 1.06 posZ: 26.81 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dumb Luck (2) 0c433b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dumb Luck (2) 0c433b.yaml index 3f9d926d4..0c8b15cf8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dumb Luck (2) 0c433b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dumb Luck (2) 0c433b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550823 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.14 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dumb Luck f0e425.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dumb Luck f0e425.yaml index 790917457..3b02c1fe0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dumb Luck f0e425.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dumb Luck f0e425.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368814 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.73 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dyer's Sketches b12d89.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dyer's Sketches b12d89.yaml index a4ab2443e..8b358f501 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dyer's Sketches b12d89.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dyer's Sketches b12d89.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 452303 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 79.19 posY: 3.33 posZ: 7.94 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dynamite 793df5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dynamite 793df5.yaml index 2fc30d0f1..91e81c711 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dynamite 793df5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dynamite 793df5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450308 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 79.47 posY: 3.32 posZ: 8.62 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast (2) e35bc2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast (2) e35bc2.yaml index 5316a66e7..4b0c254ac 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast (2) e35bc2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast (2) e35bc2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226349 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.07 posY: 3.79 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast (3) 14dcc4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast (3) 14dcc4.yaml index d02055c9f..2545c847c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast (3) 14dcc4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast (3) 14dcc4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545327 ColorDiffuse: @@ -42,14 +42,14 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9 + posX: 9.0 posY: 3.82 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast 97986a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast 97986a.yaml index d88df7b0e..7fe98e313 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast 97986a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast 97986a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226319 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 19.4 posY: 3.37 posZ: -57.26 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Déjà Vu (5) 719a45.yaml b/unpacked/Bag All Player Cards 15bb07/Card Déjà Vu (5) 719a45.yaml index b68f7a20f..77882b97e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Déjà Vu (5) 719a45.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Déjà Vu (5) 719a45.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550829 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.83 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Earl Sawyer f14dce.yaml b/unpacked/Bag All Player Cards 15bb07/Card Earl Sawyer f14dce.yaml index 4aade2321..6cb13e83d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Earl Sawyer f14dce.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Earl Sawyer f14dce.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232950 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.02 posY: 4.05 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Earthly Serenity (1) 1d6d47.yaml b/unpacked/Bag All Player Cards 15bb07/Card Earthly Serenity (1) 1d6d47.yaml index eb56e15c5..c673da44b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Earthly Serenity (1) 1d6d47.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Earthly Serenity (1) 1d6d47.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378955 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.18 posY: 2.91 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Earthly Serenity (4) 57f037.yaml b/unpacked/Bag All Player Cards 15bb07/Card Earthly Serenity (4) 57f037.yaml index fdccfd152..3cdcc36e9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Earthly Serenity (4) 57f037.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Earthly Serenity (4) 57f037.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378957 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.18 posY: 2.91 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Easy Mark (1) cdbb37.yaml b/unpacked/Bag All Player Cards 15bb07/Card Easy Mark (1) cdbb37.yaml index db53524c2..22b0eb931 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Easy Mark (1) cdbb37.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Easy Mark (1) cdbb37.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 440724 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.04 posY: 3.91 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eat lead! (2) fc2629.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eat lead! (2) fc2629.yaml index 2e347d43b..4b6d10e32 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eat lead! (2) fc2629.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eat lead! (2) fc2629.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226342 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.17 posY: 3.15 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eat lead! a2c7ef.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eat lead! a2c7ef.yaml index 0f5a121a1..77be57f29 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eat lead! a2c7ef.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eat lead! a2c7ef.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 440923 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.17 posY: 3.2 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eavesdrop 256da2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eavesdrop 256da2.yaml index e36be7c8b..fe512a55b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eavesdrop 256da2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eavesdrop 256da2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368711 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.04 posY: 3.97 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ectoplasmic Horror 379582.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ectoplasmic Horror 379582.yaml index 6262bf7b9..84bde945b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ectoplasmic Horror 379582.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ectoplasmic Horror 379582.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379151 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.72 posY: 3.37 posZ: 65.64 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eidetic Memory (3) 814ce2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eidetic Memory (3) 814ce2.yaml index ca01948f0..4429365fb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eidetic Memory (3) 814ce2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eidetic Memory (3) 814ce2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430650 ColorDiffuse: @@ -42,14 +42,14 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9 + posX: 9.0 posY: 3.81 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Elder Sign Amulet (3) 324e49.yaml b/unpacked/Bag All Player Cards 15bb07/Card Elder Sign Amulet (3) 324e49.yaml index 2c4c29cfa..6df97d57b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Elder Sign Amulet (3) 324e49.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Elder Sign Amulet (3) 324e49.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368522 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eldritch Initiation 223eb2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eldritch Initiation 223eb2.yaml index 633f864b1..e8724e9d0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eldritch Initiation 223eb2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eldritch Initiation 223eb2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379110 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 358 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eldritch Inspiration (1) e84eff.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eldritch Inspiration (1) e84eff.yaml index 852de8f22..5bb5b095b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eldritch Inspiration (1) e84eff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eldritch Inspiration (1) e84eff.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538718 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.11 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eldritch Inspiration 24eb36.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eldritch Inspiration 24eb36.yaml index bd71d7b03..17ce4da1d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eldritch Inspiration 24eb36.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eldritch Inspiration 24eb36.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 583604 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.69 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Elina Harper 7e2896.yaml b/unpacked/Bag All Player Cards 15bb07/Card Elina Harper 7e2896.yaml index 2b600c373..b3619f973 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Elina Harper 7e2896.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Elina Harper 7e2896.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 369816 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.0 posY: 3.79 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Elle Rubash (2) 43c3e0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Elle Rubash (2) 43c3e0.yaml index 1b61ebe8d..09f09a5a6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Elle Rubash (2) 43c3e0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Elle Rubash (2) 43c3e0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379116 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.74 posY: 3.36 posZ: 65.49 - rotX: 359 - rotY: 270 - rotZ: 2 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 2.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ellsworth's Boots 1c751d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ellsworth's Boots 1c751d.yaml index aad9b7529..db2c80041 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ellsworth's Boots 1c751d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ellsworth's Boots 1c751d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 452304 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.96 posY: 3.33 posZ: 7.67 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Elusive (Taboo) b67931.yaml b/unpacked/Bag All Player Cards 15bb07/Card Elusive (Taboo) b67931.yaml index 9935e3f81..ebfea97ec 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Elusive (Taboo) b67931.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Elusive (Taboo) b67931.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 585804 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.82 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Elusive 833305.yaml b/unpacked/Bag All Player Cards 15bb07/Card Elusive 833305.yaml index 92723b648..13a86416a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Elusive 833305.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Elusive 833305.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368712 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Embezzled Treasure 8fd043.yaml b/unpacked/Bag All Player Cards 15bb07/Card Embezzled Treasure 8fd043.yaml index a4052bd80..3e44b3f6e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Embezzled Treasure 8fd043.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Embezzled Treasure 8fd043.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379056 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.67 posY: 3.35 posZ: 65.93 - rotX: 357 - rotY: 270 - rotZ: 357 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 357.0 + rotY: 270.0 + rotZ: 357.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Emergency Aid 9c46da.yaml b/unpacked/Bag All Player Cards 15bb07/Card Emergency Aid 9c46da.yaml index d4207ccb9..022ebeaf3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Emergency Aid 9c46da.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Emergency Aid 9c46da.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226317 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.73 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache (2) 8948c4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache (2) 8948c4.yaml index dc4dcb469..cd58ee4b1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache (2) 8948c4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache (2) 8948c4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368519 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 33.28 posY: 2.3 posZ: -79.22 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache (3) 408cb5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache (3) 408cb5.yaml index 9b6fc699a..832c8e177 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache (3) 408cb5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache (3) 408cb5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368520 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.69 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache 510c0d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache 510c0d.yaml index 56d6ddce6..e2548f6fa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache 510c0d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache 510c0d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368509 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Empirical Hypothesis 62c67d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Empirical Hypothesis 62c67d.yaml index f1a62bd30..2a5558986 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Empirical Hypothesis 62c67d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Empirical Hypothesis 62c67d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379034 ColorDiffuse: @@ -66,11 +66,11 @@ Transform: posX: 16.67 posY: 3.4 posZ: 65.93 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) 3d22c4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) 3d22c4.yaml index e6f72c017..29a332195 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) 3d22c4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) 3d22c4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 448033 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 5.0 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) 4c0f00.yaml b/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) 4c0f00.yaml index 16dbdef4b..3fa6d838b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) 4c0f00.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) 4c0f00.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 448032 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.81 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) ffe4dd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) ffe4dd.yaml index bd2780b3d..39c8986f6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) ffe4dd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) ffe4dd.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 448031 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.69 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Empty Vessel (4) c0d236.yaml b/unpacked/Bag All Player Cards 15bb07/Card Empty Vessel (4) c0d236.yaml index 68286114b..2adf1be83 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Empty Vessel (4) c0d236.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Empty Vessel (4) c0d236.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 448936 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.02 posY: 3.94 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Enchant Weapon (3) 33455f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Enchant Weapon (3) 33455f.yaml index 738b805ed..2603c04ac 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Enchant Weapon (3) 33455f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Enchant Weapon (3) 33455f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449600 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.02 posY: 4.01 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Armor (2) 9509e3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Armor (2) 9509e3.yaml index 685cf7741..0d2f190d6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Armor (2) 9509e3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Armor (2) 9509e3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 588800 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.03 posY: 3.71 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade (3) 84b918.yaml b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade (3) 84b918.yaml index 292423d2e..30ede553d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade (3) 84b918.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade (3) 84b918.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 292815 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.13 posY: 3.84 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade (3) d0de54.yaml b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade (3) d0de54.yaml index 0d7b1c31b..490af1b65 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade (3) d0de54.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade (3) d0de54.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 293314 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.14 posY: 3.68 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade c7d9b5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade c7d9b5.yaml index 61afcf4af..1f876a72b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade c7d9b5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade c7d9b5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 277607 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 8.97 posY: 3.81 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Bow (2) f85d4e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Bow (2) f85d4e.yaml index f39df9c81..76aa4bcd0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Bow (2) f85d4e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Bow (2) f85d4e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378956 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.18 posY: 2.9 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Skull a4775a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Skull a4775a.yaml index d88c7b7e1..4b835d113 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Skull a4775a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Skull a4775a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 585230 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.03 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Encyclopedia (2) f5bcec.yaml b/unpacked/Bag All Player Cards 15bb07/Card Encyclopedia (2) f5bcec.yaml index 672d52d88..a7b73b655 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Encyclopedia (2) f5bcec.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Encyclopedia (2) f5bcec.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430646 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 19.5 posY: 3.37 posZ: -56.86 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Encyclopedia dbb0e0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Encyclopedia dbb0e0.yaml index 95804ffdf..914412ded 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Encyclopedia dbb0e0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Encyclopedia dbb0e0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538806 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.06 posY: 3.76 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card End of the Road a3d041.yaml b/unpacked/Bag All Player Cards 15bb07/Card End of the Road a3d041.yaml index 5839fd83a..d8cf07429 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card End of the Road a3d041.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card End of the Road a3d041.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379128 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Enraptured a5c780.yaml b/unpacked/Bag All Player Cards 15bb07/Card Enraptured a5c780.yaml index 02bc5d654..7adb58acc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Enraptured a5c780.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Enraptured a5c780.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230301 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.92 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (1) (Taboo) 4d4ffb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (1) (Taboo) 4d4ffb.yaml index e5b563f58..8f6945f0f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (1) (Taboo) 4d4ffb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (1) (Taboo) 4d4ffb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558216 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 21.84 posY: 4.6 posZ: -51.37 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (1) be4332.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (1) be4332.yaml index e93d756bb..c368cf3af 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (1) be4332.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (1) be4332.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378936 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.18 posY: 2.79 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (4) (Taboo) b925cf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (4) (Taboo) b925cf.yaml index ef7365ab2..a3319a3fe 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (4) (Taboo) b925cf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (4) (Taboo) b925cf.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558217 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 21.85 posY: 4.69 posZ: -53.34 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (4) d3ad2d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (4) d3ad2d.yaml index a7c65d412..0b57da481 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (4) d3ad2d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (4) d3ad2d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378938 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.18 posY: 2.63 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Erynn MacAoidh 6abfbc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Erynn MacAoidh 6abfbc.yaml index 29fb24973..e5e2c5f6b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Erynn MacAoidh 6abfbc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Erynn MacAoidh 6abfbc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449503 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.13 posY: 3.8 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Esoteric Atlas (1) 0ce005.yaml b/unpacked/Bag All Player Cards 15bb07/Card Esoteric Atlas (1) 0ce005.yaml index d0c6aaa62..b1d860442 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Esoteric Atlas (1) 0ce005.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Esoteric Atlas (1) 0ce005.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 293216 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.13 posY: 5.46 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Esoteric Atlas (2) 2172e2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Esoteric Atlas (2) 2172e2.yaml index c3f712dd4..15cf734f8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Esoteric Atlas (2) 2172e2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Esoteric Atlas (2) 2172e2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538820 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.13 posY: 3.68 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Essence of the Dream 6ad46b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Essence of the Dream 6ad46b.yaml index a5f5d0f94..16fd51765 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Essence of the Dream 6ad46b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Essence of the Dream 6ad46b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379929 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.13 posY: 5.32 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ethereal Form db90e2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ethereal Form db90e2.yaml index 82fb1bdae..57f4981a2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ethereal Form db90e2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ethereal Form db90e2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 380128 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.01 posY: 3.92 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ethereal Slip (2) 39cb5b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ethereal Slip (2) 39cb5b.yaml index 74c3223e2..e144480d3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ethereal Slip (2) 39cb5b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ethereal Slip (2) 39cb5b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378948 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.18 posY: 2.79 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ethereal Slip 31539a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ethereal Slip 31539a.yaml index ebc22ec9b..17c922645 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ethereal Slip 31539a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ethereal Slip 31539a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378946 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.18 posY: 2.7 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eucatastrophe (3) (Taboo) b2ccf8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eucatastrophe (3) (Taboo) b2ccf8.yaml index b63b9bd20..e9b16135c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eucatastrophe (3) (Taboo) b2ccf8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eucatastrophe (3) (Taboo) b2ccf8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 585705 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.16 posY: 3.3 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eucatastrophe (3) eaaee9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eucatastrophe (3) eaaee9.yaml index 6601026c2..d41799a75 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eucatastrophe (3) eaaee9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eucatastrophe (3) eaaee9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 374419 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eureka! ffa4f9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eureka! ffa4f9.yaml index d0c477c1d..d30bdbfd4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eureka! ffa4f9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eureka! ffa4f9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368400 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.16 posY: 3.96 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ever Vigilant (1) bb640d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ever Vigilant (1) bb640d.yaml index 7186f1e32..ae5aa26ea 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ever Vigilant (1) bb640d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ever Vigilant (1) bb640d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226334 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 2.94 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ever Vigilant (4) ac910a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ever Vigilant (4) ac910a.yaml index d05527454..898c9c707 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ever Vigilant (4) ac910a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ever Vigilant (4) ac910a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379032 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.67 posY: 3.37 posZ: 65.93 - rotX: 358 - rotY: 270 - rotZ: 358 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Evidence! (1) 3df5fb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Evidence! (1) 3df5fb.yaml index 3c80a5c6d..8332e13d9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Evidence! (1) 3df5fb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Evidence! (1) 3df5fb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545318 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.73 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Evidence! 2db518.yaml b/unpacked/Bag All Player Cards 15bb07/Card Evidence! 2db518.yaml index 9ec267d86..2e5f42ef3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Evidence! 2db518.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Evidence! 2db518.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226309 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 19.37 posY: 3.37 posZ: -57.52 - rotX: 0 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Existential Riddle (1) 38a30a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Existential Riddle (1) 38a30a.yaml index 5cd75843f..5a27c34fd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Existential Riddle (1) 38a30a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Existential Riddle (1) 38a30a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379045 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.67 posY: 3.38 posZ: 65.93 - rotX: 358 - rotY: 270 - rotZ: 358 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Expedited Ticket 8fbd1b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Expedited Ticket 8fbd1b.yaml index 515924123..d278ad0ee 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Expedited Ticket 8fbd1b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Expedited Ticket 8fbd1b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 588603 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 82.2 posY: 3.3 posZ: 27.62 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Expedition Journal 9dc3d4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Expedition Journal 9dc3d4.yaml index bde7edc6f..7b4754434 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Expedition Journal 9dc3d4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Expedition Journal 9dc3d4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 235649 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 4.74 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Expeditious Retreat (1) ea8324.yaml b/unpacked/Bag All Player Cards 15bb07/Card Expeditious Retreat (1) ea8324.yaml index bd67dc8eb..18999531f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Expeditious Retreat (1) ea8324.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Expeditious Retreat (1) ea8324.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 447734 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 4.13 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Exploit Weakness b6857b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Exploit Weakness b6857b.yaml index 92fb0336b..028999296 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Exploit Weakness b6857b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Exploit Weakness b6857b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379129 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.72 posY: 3.37 posZ: 65.64 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Explosive Ward f86c67.yaml b/unpacked/Bag All Player Cards 15bb07/Card Explosive Ward f86c67.yaml index aabde5dca..4f908e092 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Explosive Ward f86c67.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Explosive Ward f86c67.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379111 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 358 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Expose Weakness (1) 2e93fd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Expose Weakness (1) 2e93fd.yaml index 3172be56b..dacb5680b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Expose Weakness (1) 2e93fd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Expose Weakness (1) 2e93fd.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430635 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 4.18 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Expose Weakness (3) 77f92c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Expose Weakness (3) 77f92c.yaml index d89ce8743..9645d0aed 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Expose Weakness (3) 77f92c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Expose Weakness (3) 77f92c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 262203 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 3.0 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Extensive Research (1) 3dc25c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Extensive Research (1) 3dc25c.yaml index 74544b06d..baaa3d977 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Extensive Research (1) 3dc25c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Extensive Research (1) 3dc25c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 447833 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.02 posY: 3.97 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Extensive Research 013446.yaml b/unpacked/Bag All Player Cards 15bb07/Card Extensive Research 013446.yaml index f78155519..5fbe50e78 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Extensive Research 013446.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Extensive Research 013446.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538814 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.75 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Extra Ammunition (1) f60263.yaml b/unpacked/Bag All Player Cards 15bb07/Card Extra Ammunition (1) f60263.yaml index c55318dd9..d3e078359 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Extra Ammunition (1) f60263.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Extra Ammunition (1) f60263.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226337 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 18.52 posY: 3.38 posZ: -56.92 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eye of Chaos (4) f68105.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eye of Chaos (4) f68105.yaml index 54cf5c85a..36a9b88ea 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eye of Chaos (4) f68105.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eye of Chaos (4) f68105.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 579707 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 8.97 posY: 5.33 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eye of Chaos 9a5782.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eye of Chaos 9a5782.yaml index 640f2843e..0bcb190ba 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eye of Chaos 9a5782.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eye of Chaos 9a5782.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 553110 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.01 posY: 3.69 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eye of the Djinn (2) df182a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eye of the Djinn (2) df182a.yaml index 850b76ad7..06dd54865 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eye of the Djinn (2) df182a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eye of the Djinn (2) df182a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 590105 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.81 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ezra Graves efe0dd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ezra Graves efe0dd.yaml index 57821cbe6..58d47908a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ezra Graves efe0dd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ezra Graves efe0dd.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558005 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.62 posY: 3.32 posZ: 8.37 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card False Awakening 3bf831.yaml b/unpacked/Bag All Player Cards 15bb07/Card False Awakening 3bf831.yaml index af160444d..ea9b4a17d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card False Awakening 3bf831.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card False Awakening 3bf831.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 448519 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.2 posY: 3.11 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card False Covenant (2) 3442f5.yaml b/unpacked/Bag All Player Cards 15bb07/Card False Covenant (2) 3442f5.yaml index d50b4cde1..957c64917 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card False Covenant (2) 3442f5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card False Covenant (2) 3442f5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 553108 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.95 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Familiar Spirit 971d52.yaml b/unpacked/Bag All Player Cards 15bb07/Card Familiar Spirit 971d52.yaml index 58f2fa70c..1d851cdf5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Familiar Spirit 971d52.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Familiar Spirit 971d52.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538708 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.13 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Family Inheritance 394603.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Family Inheritance 394603.ttslua new file mode 100644 index 000000000..2125bb191 --- /dev/null +++ b/unpacked/Bag All Player Cards 15bb07/Card Family Inheritance 394603.ttslua @@ -0,0 +1,914 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("playermat/PlaymatApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local PlaymatApi = { } + local internal = { } + + local MAT_IDS = { + White = "8b081b", + Orange = "bd0ff4", + Green = "383d8b", + Red = "0840d5" + } + + local CLUE_COUNTER_GUIDS = { + White = "37be78", + Orange = "1769ed", + Green = "032300", + Red = "d86b7c" + } + + local CLUE_CLICKER_GUIDS = { + White = "db85d6", + Orange = "3f22e5", + Green = "891403", + Red = "4111de" + } + + -- Returns the color of the by position requested playermat as string + ---@param startPos Table Position of the search, table get's roughly cut into 4 quarters to assign a playermat + PlaymatApi.getMatColorByPosition = function(startPos) + if startPos.x < -42 then + if startPos.z > 0 then + return "White" + else + return "Orange" + end + else + if startPos.z > 0 then + return "Green" + else + return "Red" + end + end + end + + -- Returns the color of the player's hand that is seated next to the playermat + ---@param matColor String Color of the playermat + PlaymatApi.getPlayerColor = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getVar("playerColor") + end + + -- Returns the color of the playermat that owns the playercolor's hand + ---@param handColor String Color of the playermat + PlaymatApi.getMatColor = function(handColor) + local matColors = {"White", "Orange", "Green", "Red"} + for i, mat in ipairs(internal.getMatForColor("All")) do + local color = mat.getVar("playerColor") + if color == handColor then return matColors[i] end + end + return "NOT_FOUND" + end + + -- Returns if there is the card "Dream-Enhancing Serum" on the requested playermat + ---@param matColor String Color of the playermat + PlaymatApi.isDES = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getVar("isDES") + end + + -- Returns the draw deck of the requested playmat + ---@param matColor String Color of the playermat + PlaymatApi.getDrawDeck = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + mat.call("getDrawDiscardDecks") + return mat.getVar("drawDeck") + end + + -- Returns the position of the discard pile of the requested playmat + ---@param matColor String Color of the playermat + PlaymatApi.getDiscardPosition = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.call("returnGlobalDiscardPosition") + end + + -- Transforms a local position into a global position + ---@param localPos Table Local position to be transformed + ---@param matColor String Color of the playermat + PlaymatApi.transformLocalPosition = function(localPos, matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.positionToWorld(localPos) + end + + -- Returns the rotation of the requested playmat + ---@param matColor String Color of the playermat + PlaymatApi.returnRotation = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getRotation() + end + + -- Triggers the Upkeep for the requested playmat + ---@param matColor String Color of the playermat + ---@param playerColor String Color of the calling player (for messages) + PlaymatApi.doUpkeepFromHotkey = function(matColor, playerColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.call("doUpkeepFromHotkey", playerColor) + end + + -- Returns the active investigator id + ---@param matColor String Color of the playermat + PlaymatApi.returnInvestigatorId = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getVar("activeInvestigatorId") + end + + -- Sets the requested playermat's snap points to limit snapping to matching card types or not. If + -- matchTypes is true, the main card slot snap points will only snap assets, while the + -- investigator area point will only snap Investigators. If matchTypes is false, snap points will + -- be reset to snap all cards. + ---@param matchCardTypes Boolean. Whether snap points should only snap for the matching card + -- types. + ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also + -- accepts "All" as a special value which will apply the setting to all four mats. + PlaymatApi.setLimitSnapsByType = function(matchCardTypes, matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("setLimitSnapsByType", matchCardTypes) + end + end + + -- Sets the requested playermat's draw 1 button to visible + ---@param isDrawButtonVisible Boolean. Whether the draw 1 button should be visible or not + ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also + -- accepts "All" as a special value which will apply the setting to all four mats. + PlaymatApi.showDrawButton = function(isDrawButtonVisible, matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("showDrawButton", isDrawButtonVisible) + end + end + + -- Shows or hides the clickable clue counter for the requested playermat + ---@param showCounter Boolean. Whether the clickable counter should be present or not + ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also + -- accepts "All" as a special value which will apply the setting to all four mats. + PlaymatApi.clickableClues = function(showCounter, matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("clickableClues", showCounter) + end + end + + -- Removes all clues (to the trash for tokens and counters set to 0) for the requested playermat + ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also + -- accepts "All" as a special value which will apply the setting to all four mats. + PlaymatApi.removeClues = function(matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("removeClues") + end + end + + -- Reports the clue count for the requested playermat + ---@param useClickableCounters Boolean Controls which type of counter is getting checked + PlaymatApi.getClueCount = function(useClickableCounters, matColor) + local count = 0 + for _, mat in ipairs(internal.getMatForColor(matColor)) do + count = count + tonumber(mat.call("getClueCount", useClickableCounters)) + end + return count + end + + -- Adds the specified amount of resources to the requested playermat's resource counter + PlaymatApi.gainResources = function(amount, matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("gainResources", amount) + end + end + + -- Discard a non-hidden card from the corresponding player's hand + PlaymatApi.doDiscardOne = function(matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("doDiscardOne") + end + end + + -- Convenience function to look up a mat's object by color, or get all mats. + ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also + -- accepts "All" as a special value which will return all four mats. + ---@return: Array of playermat objects. If a single mat is requested, will return a single-element + -- array to simplify processing by consumers. + internal.getMatForColor = function(matColor) + local targetMatGuid = MAT_IDS[matColor] + if targetMatGuid != nil then + return { getObjectFromGUID(targetMatGuid) } + end + if matColor == "All" then + return { + getObjectFromGUID(MAT_IDS.White), + getObjectFromGUID(MAT_IDS.Orange), + getObjectFromGUID(MAT_IDS.Green), + getObjectFromGUID(MAT_IDS.Red), + } + end + end + + return PlaymatApi +end +end) +__bundle_register("core/PlayAreaApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local PlayAreaApi = { } + + local PLAY_AREA_GUID = "721ba2" + + -- Returns the current value of the investigator counter from the playmat + ---@return Integer. Number of investigators currently set on the counter + PlayAreaApi.getInvestigatorCount = function() + return getObjectFromGUID(PLAY_AREA_GUID).call("getInvestigatorCount") + end + + -- Move all contents on the play area (cards, tokens, etc) one slot in the given direction. Certain + -- fixed objects will be ignored, as will anything the player has tagged with + -- 'displacement_excluded' + ---@param playerColor Color of the player requesting the shift. Used solely to send an error + --- message in the unlikely case that the scripting zone has been deleted + PlayAreaApi.shiftContentsUp = function(playerColor) + return getObjectFromGUID(PLAY_AREA_GUID).call("shiftContentsUp", playerColor) + end + + PlayAreaApi.shiftContentsDown = function(playerColor) + return getObjectFromGUID(PLAY_AREA_GUID).call("shiftContentsDown", playerColor) + end + + PlayAreaApi.shiftContentsLeft = function(playerColor) + return getObjectFromGUID(PLAY_AREA_GUID).call("shiftContentsLeft", playerColor) + end + + PlayAreaApi.shiftContentsRight = function(playerColor) + return getObjectFromGUID(PLAY_AREA_GUID).call("shiftContentsRight", playerColor) + end + + -- Reset the play area's tracking of which cards have had tokens spawned. + PlayAreaApi.resetSpawnedCards = function() + return getObjectFromGUID(PLAY_AREA_GUID).call("resetSpawnedCards") + end + + -- Event to be called when the current scenario has changed. + ---@param scenarioName Name of the new scenario + PlayAreaApi.onScenarioChanged = function(scenarioName) + getObjectFromGUID(PLAY_AREA_GUID).call("onScenarioChanged", scenarioName) + end + + -- Sets this playmat's snap points to limit snapping to locations or not. + -- If matchTypes is false, snap points will be reset to snap all cards. + ---@param matchTypes Boolean Whether snap points should only snap for the matching card types. + PlayAreaApi.setLimitSnapsByType = function(matchCardTypes) + getObjectFromGUID(PLAY_AREA_GUID).call("setLimitSnapsByType", matchCardTypes) + end + + -- Receiver for the Global tryObjectEnterContainer event. Used to clear vector lines from dragged + -- cards before they're destroyed by entering the container + PlayAreaApi.tryObjectEnterContainer = function(container, object) + getObjectFromGUID(PLAY_AREA_GUID).call("tryObjectEnterContainer", + { container = container, object = object }) + end + + -- counts the VP on locations in the play area + PlayAreaApi.countVP = function() + return getObjectFromGUID(PLAY_AREA_GUID).call("countVP") + end + + -- highlights all locations in the play area without metadata + ---@param state Boolean True if highlighting should be enabled + PlayAreaApi.highlightMissingData = function(state) + return getObjectFromGUID(PLAY_AREA_GUID).call("highlightMissingData", state) + end + + -- highlights all locations in the play area with VP + ---@param state Boolean True if highlighting should be enabled + PlayAreaApi.highlightCountedVP = function(state) + return getObjectFromGUID(PLAY_AREA_GUID).call("highlightCountedVP", state) + end + + -- Checks if an object is in the play area (returns true or false) + PlayAreaApi.isInPlayArea = function(object) + return getObjectFromGUID(PLAY_AREA_GUID).call("isInPlayArea", object) + end + + return PlayAreaApi +end +end) +__bundle_register("core/token/TokenSpawnTrackerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenSpawnTracker = { } + + local SPAWN_TRACKER_GUID = "e3ffc9" + + TokenSpawnTracker.hasSpawnedTokens = function(cardGuid) + return getObjectFromGUID(SPAWN_TRACKER_GUID).call("hasSpawnedTokens", cardGuid) + end + + TokenSpawnTracker.markTokensSpawned = function(cardGuid) + return getObjectFromGUID(SPAWN_TRACKER_GUID).call("markTokensSpawned", cardGuid) + end + + TokenSpawnTracker.resetTokensSpawned = function(cardGuid) + return getObjectFromGUID(SPAWN_TRACKER_GUID).call("resetTokensSpawned", cardGuid) + end + + TokenSpawnTracker.resetAllAssetAndEvents = function() + return getObjectFromGUID(SPAWN_TRACKER_GUID).call("resetAllAssetAndEvents") + end + + TokenSpawnTracker.resetAllLocations = function() + return getObjectFromGUID(SPAWN_TRACKER_GUID).call("resetAllLocations") + end + + TokenSpawnTracker.resetAll = function() + return getObjectFromGUID(SPAWN_TRACKER_GUID).call("resetAll") + end + + return TokenSpawnTracker +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/FamilyInheritance") +end) +__bundle_register("playercards/cards/FamilyInheritance", function(require, _LOADED, __bundle_register, __bundle_modules) +local tokenManager = require("core/token/TokenManager") +local playmatApi = require("playermat/PlaymatApi") + +local clickableResourceCounter = nil +local foundTokens = 0 + +function onLoad() + self.addContextMenuItem("Add 4 resources", function(playerColor) add4(playerColor) end) + self.addContextMenuItem("Take all resources", function(playerColor) takeAll(playerColor) end) + self.addContextMenuItem("Discard all resources", function(playerColor) loseAll(playerColor) end) +end + +function searchSelf() + clickableResourceCounter = nil + foundTokens = 0 + + for _, obj in ipairs(searchArea(self.getPosition(), { 2.5, 0.5, 3.5 })) do + local obj = obj.hit_object + if obj.getCustomObject().image == + "http://cloud-3.steamusercontent.com/ugc/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/" then + foundTokens = foundTokens + math.abs(obj.getQuantity()) + obj.destruct() + elseif obj.getMemo() == "resourceCounter" then + foundTokens = obj.getVar("val") + clickableResourceCounter = obj + return + end + end +end + +function add4(playerColor) + searchSelf() + + local newCount = foundTokens + 4 + if clickableResourceCounter then + clickableResourceCounter.call("updateVal", newCount) + else + if newCount > 12 then + printToColor("Count increased to " .. newCount .. " resources. Spawning clickable counter instead.", playerColor) + tokenManager.spawnResourceCounterToken(self, newCount) + else + tokenManager.spawnTokenGroup(self, "resource", newCount) + end + end +end + +function takeAll(playerColor) + searchSelf() + local matColor = playmatApi.getMatColorByPosition(self.getPosition()) + playmatApi.gainResources(foundTokens, matColor) + + if clickableResourceCounter then + clickableResourceCounter.call("updateVal", 0) + end + printToColor("Moved " .. foundTokens .. " resource(s) to " .. matColor .. "'s resource pool.", playerColor) +end + +function loseAll(playerColor) + searchSelf() + + if clickableResourceCounter then + clickableResourceCounter.call("updateVal", 0) + end + printToColor("Discarded " .. foundTokens .. " resource(s).", playerColor) +end + +function searchArea(origin, size) + return Physics.cast({ + origin = origin, + direction = { 0, 1, 0 }, + orientation = PLAY_ZONE_ROTATION, + type = 3, + size = size, + max_distance = 1 + }) +end +end) +__bundle_register("core/token/TokenManager", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local tokenSpawnTracker = require("core/token/TokenSpawnTrackerApi") + local playArea = require("core/PlayAreaApi") + + local PLAYER_CARD_TOKEN_OFFSETS = { + [1] = { + Vector(0, 3, -0.2) + }, + [2] = { + Vector(0.4, 3, -0.2), + Vector(-0.4, 3, -0.2) + }, + [3] = { + Vector(0, 3, -0.9), + Vector(0.4, 3, -0.2), + Vector(-0.4, 3, -0.2) + }, + [4] = { + Vector(0.4, 3, -0.9), + Vector(-0.4, 3, -0.9), + Vector(0.4, 3, -0.2), + Vector(-0.4, 3, -0.2) + }, + [5] = { + Vector(0.7, 3, -0.9), + Vector(0, 3, -0.9), + Vector(-0.7, 3, -0.9), + Vector(0.4, 3, -0.2), + Vector(-0.4, 3, -0.2) + }, + [6] = { + Vector(0.7, 3, -0.9), + Vector(0, 3, -0.9), + Vector(-0.7, 3, -0.9), + Vector(0.7, 3, -0.2), + Vector(0, 3, -0.2), + Vector(-0.7, 3, -0.2) + }, + [7] = { + Vector(0.7, 3, -0.9), + Vector(0, 3, -0.9), + Vector(-0.7, 3, -0.9), + Vector(0.7, 3, -0.2), + Vector(0, 3, -0.2), + Vector(-0.7, 3, -0.2), + Vector(0, 3, 0.5) + }, + [8] = { + Vector(0.7, 3, -0.9), + Vector(0, 3, -0.9), + Vector(-0.7, 3, -0.9), + Vector(0.7, 3, -0.2), + Vector(0, 3, -0.2), + Vector(-0.7, 3, -0.2), + Vector(-0.35, 3, 0.5), + Vector(0.35, 3, 0.5) + }, + [9] = { + Vector(0.7, 3, -0.9), + Vector(0, 3, -0.9), + Vector(-0.7, 3, -0.9), + Vector(0.7, 3, -0.2), + Vector(0, 3, -0.2), + Vector(-0.7, 3, -0.2), + Vector(0.7, 3, 0.5), + Vector(0, 3, 0.5), + Vector(-0.7, 3, 0.5) + }, + [10] = { + Vector(0.7, 3, -0.9), + Vector(0, 3, -0.9), + Vector(-0.7, 3, -0.9), + Vector(0.7, 3, -0.2), + Vector(0, 3, -0.2), + Vector(-0.7, 3, -0.2), + Vector(0.7, 3, 0.5), + Vector(0, 3, 0.5), + Vector(-0.7, 3, 0.5), + Vector(0, 3, 1.2) + }, + [11] = { + Vector(0.7, 3, -0.9), + Vector(0, 3, -0.9), + Vector(-0.7, 3, -0.9), + Vector(0.7, 3, -0.2), + Vector(0, 3, -0.2), + Vector(-0.7, 3, -0.2), + Vector(0.7, 3, 0.5), + Vector(0, 3, 0.5), + Vector(-0.7, 3, 0.5), + Vector(-0.35, 3, 1.2), + Vector(0.35, 3, 1.2) + }, + [12] = { + Vector(0.7, 3, -0.9), + Vector(0, 3, -0.9), + Vector(-0.7, 3, -0.9), + Vector(0.7, 3, -0.2), + Vector(0, 3, -0.2), + Vector(-0.7, 3, -0.2), + Vector(0.7, 3, 0.5), + Vector(0, 3, 0.5), + Vector(-0.7, 3, 0.5), + Vector(0.7, 3, 1.2), + Vector(0, 3, 1.2), + Vector(-0.7, 3, 1.2) + } + } + + -- Source for tokens + local TOKEN_SOURCE_GUID = "124381" + + -- Table of data extracted from the token source bag, keyed by the Memo on each token which + -- should match the token type keys ("resource", "clue", etc) + local tokenTemplates + + local DATA_HELPER_GUID = "708279" + + local playerCardData + local locationData + + local TokenManager = { } + local internal = { } + + -- Spawns tokens for the card. This function is built to just throw a card at it and let it do + -- the work once a card has hit an area where it might spawn tokens. It will check to see if + -- the card has already spawned, find appropriate data from either the uses metadata or the Data + -- Helper, and spawn the tokens. + ---@param card Object Card to maybe spawn tokens for + ---@param extraUses Table A table of = which will modify the number of tokens + --- spawned for that type. e.g. Akachi's playmat should pass "Charge"=1 + TokenManager.spawnForCard = function(card, extraUses) + if tokenSpawnTracker.hasSpawnedTokens(card.getGUID()) then + return + end + local metadata = JSON.decode(card.getGMNotes()) + if metadata ~= nil then + internal.spawnTokensFromUses(card, extraUses) + else + internal.spawnTokensFromDataHelper(card) + end + end + + -- Spawns a set of tokens on the given card. + ---@param card Object Card to spawn tokens on + ---@param tokenType String type of token to spawn, valid values are "damage", "horror", + -- "resource", "doom", or "clue" + ---@param tokenCount Number How many tokens to spawn. For damage or horror this value will be set to the + -- spawned state object rather than spawning multiple tokens + ---@param shiftDown Number An offset for the z-value of this group of tokens + TokenManager.spawnTokenGroup = function(card, tokenType, tokenCount, shiftDown) + local optionPanel = Global.getTable("optionPanel") + + if tokenType == "damage" or tokenType == "horror" then + TokenManager.spawnCounterToken(card, tokenType, tokenCount, shiftDown) + elseif tokenType == "resource" and optionPanel["useResourceCounters"] then + TokenManager.spawnResourceCounterToken(card, tokenCount) + else + TokenManager.spawnMultipleTokens(card, tokenType, tokenCount, shiftDown) + end + end + + -- Spawns a single counter token and sets the value to tokenValue. Used for damage and horror + -- tokens. + ---@param card Object Card to spawn tokens on + ---@param tokenType String type of token to spawn, valid values are "damage" and "horror". Other + -- types should use spawnMultipleTokens() + ---@param tokenValue Number Value to set the damage/horror to + TokenManager.spawnCounterToken = function(card, tokenType, tokenValue, shiftDown) + if tokenValue < 1 or tokenValue > 50 then return end + + local pos = card.positionToWorld(PLAYER_CARD_TOKEN_OFFSETS[1][1] + Vector(0, 0, shiftDown)) + local rot = card.getRotation() + TokenManager.spawnToken(pos, tokenType, rot, function(spawned) spawned.setState(tokenValue) end) + end + + TokenManager.spawnResourceCounterToken = function(card, tokenCount) + local pos = card.positionToWorld(card.positionToLocal(card.getPosition()) + Vector(0, 0.2, -0.5)) + local rot = card.getRotation() + TokenManager.spawnToken(pos, "resourceCounter", rot, function(spawned) + spawned.call("updateVal", tokenCount) + end) + end + + -- Spawns a number of tokens. + ---@param tokenType String type of token to spawn, valid values are resource", "doom", or "clue". + -- Other types should use spawnCounterToken() + ---@param tokenCount Number How many tokens to spawn + ---@param shiftDown Number An offset for the z-value of this group of tokens + TokenManager.spawnMultipleTokens = function(card, tokenType, tokenCount, shiftDown) + if tokenCount < 1 or tokenCount > 12 then + return + end + + local offsets = {} + if tokenType == "clue" then + offsets = internal.buildClueOffsets(card, tokenCount) + else + for i = 1, tokenCount do + offsets[i] = card.positionToWorld(PLAYER_CARD_TOKEN_OFFSETS[tokenCount][i]) + -- Fix the y-position for the spawn, since positionToWorld considers rotation which can + -- have bad results for face up/down differences + offsets[i].y = card.getPosition().y + 0.15 + end + end + + if shiftDown ~= nil then + -- Copy the offsets to make sure we don't change the static values + local baseOffsets = offsets + offsets = { } + for i, baseOffset in ipairs(baseOffsets) do + offsets[i] = baseOffset + offsets[i][3] = offsets[i][3] + shiftDown + end + end + + if offsets == nil then + error("couldn't find offsets for " .. tokenCount .. ' tokens') + return + end + + for i = 1, tokenCount do + TokenManager.spawnToken(offsets[i], tokenType, card.getRotation()) + end + end + + -- Spawns a single token at the given global position by copying it from the template bag. + ---@param position Global position to spawn the token + ---@param tokenType String type of token to spawn, valid values are "damage", "horror", + -- "resource", "doom", or "clue" + ---@param rotation Vector Rotation to be used for the new token. Only the y-value will be used, + -- x and z will use the default rotation from the source bag + ---@param callback function A callback function triggered after the new token is spawned + TokenManager.spawnToken = function(position, tokenType, rotation, callback) + internal.initTokenTemplates() + local loadTokenType = tokenType + if tokenType == "clue" or tokenType == "doom" then + loadTokenType = "clueDoom" + end + if tokenTemplates[loadTokenType] == nil then + error("Unknown token type '" .. tokenType .. "'") + return + end + local tokenTemplate = tokenTemplates[loadTokenType] + + -- Take ONLY the Y-value for rotation, so we don't flip the token coming out of the bag + local rot = Vector(tokenTemplate.Transform.rotX, + 270, + tokenTemplate.Transform.rotZ) + if rotation ~= nil then + rot.y = rotation.y + end + if tokenType == "doom" then + rot.z = 180 + end + + tokenTemplate.Nickname = "" + return spawnObjectData({ + data = tokenTemplate, + position = position, + rotation = rot, + callback_function = callback + }) + end + + -- Delegate function to the token spawn tracker. Exists to avoid circular dependencies in some + -- callers. + ---@param card Object Card object to reset the tokens for + TokenManager.resetTokensSpawned = function(card) + tokenSpawnTracker.resetTokensSpawned(card.getGUID()) + end + + -- Pushes new player card data into the local copy of the Data Helper player data. + ---@param dataTable Table Key/Value pairs following the DataHelper style + TokenManager.addPlayerCardData = function(dataTable) + internal.initDataHelperData() + for k, v in pairs(dataTable) do + playerCardData[k] = v + end + end + + -- Pushes new location data into the local copy of the Data Helper location data. + ---@param dataTable Table Key/Value pairs following the DataHelper style + TokenManager.addLocationData = function(dataTable) + internal.initDataHelperData() + for k, v in pairs(dataTable) do + locationData[k] = v + end + end + + -- Checks to see if the given card has location data in the DataHelper + ---@param card Object Card to check for data + ---@return Boolean True if this card has data in the helper, false otherwise + TokenManager.hasLocationData = function(card) + internal.initDataHelperData() + return internal.getLocationData(card) ~= nil + end + + internal.initTokenTemplates = function() + if tokenTemplates ~= nil then + return + end + tokenTemplates = { } + local tokenSource = getObjectFromGUID(TOKEN_SOURCE_GUID) + for _, tokenTemplate in ipairs(tokenSource.getData().ContainedObjects) do + local tokenName = tokenTemplate.Memo + tokenTemplates[tokenName] = tokenTemplate + end + end + + -- Copies the data from the DataHelper. Will only happen once. + internal.initDataHelperData = function() + if playerCardData ~= nil then + return + end + local dataHelper = getObjectFromGUID(DATA_HELPER_GUID) + playerCardData = dataHelper.getTable('PLAYER_CARD_DATA') + locationData = dataHelper.getTable('LOCATIONS_DATA') + end + + -- Spawn tokens for a card based on the uses metadata. This will consider the face up/down state + -- of the card for both locations and standard cards. + ---@param card Object Card to maybe spawn tokens for + ---@param extraUses Table A table of = which will modify the number of tokens + --- spawned for that type. e.g. Akachi's playmat should pass "Charge"=1 + internal.spawnTokensFromUses = function(card, extraUses) + local uses = internal.getUses(card) + if uses == nil then + return + end + local type = nil + local token = nil + local tokenCount = 0 + -- Uses structure underwent a breaking change in 2.4.0, have to check to see if this is + -- a single entry or an array. This is ugly and duplicated, but impossible to replicate the + -- multi-spawn vs. single spawn otherwise. TODO: Clean this up when 2.4.0 has been out long + -- enough that saved decks don't have old data + if uses.count != nil then + type = cardMetadata.uses.type + token = cardMetadata.uses.token + tokenCount = cardMetadata.uses.count + if extraUses ~= nil and extraUses[type] ~= nil then + tokenCount = tokenCount + extraUses[type] + end + log("Spawning single use tokens for "..card.getName()..'['..card.getDescription()..']: '..tokenCount.."x "..token) + TokenManager.spawnTokenGroup(card, token, tokenCount) + else + for i, useInfo in ipairs(uses) do + type = useInfo.type + token = useInfo.token + tokenCount = (useInfo.count or 0) + + (useInfo.countPerInvestigator or 0) * playArea.getInvestigatorCount() + if extraUses ~= nil and extraUses[type] ~= nil then + tokenCount = tokenCount + extraUses[type] + end + log("Spawning use array tokens for "..card.getName()..'['..card.getDescription()..']: '..tokenCount.."x "..token) + -- Shift each spawned group after the first down so they don't pile on each other + TokenManager.spawnTokenGroup(card, token, tokenCount, (i - 1) * 0.8) + end + end + tokenSpawnTracker.markTokensSpawned(card.getGUID()) + end + + -- Spawn tokens for a card based on the data helper data. This will consider the face up/down state + -- of the card for both locations and standard cards. + ---@param card Object Card to maybe spawn tokens for + internal.spawnTokensFromDataHelper = function(card) + internal.initDataHelperData() + local playerData = internal.getPlayerCardData(card) + if playerData ~= nil then + internal.spawnPlayerCardTokensFromDataHelper(card, playerData) + end + local locationData = internal.getLocationData(card) + if locationData ~= nil then + internal.spawnLocationTokensFromDataHelper(card, locationData) + end + end + + -- Spawn tokens for a player card using data retrieved from the Data Helper. + ---@param card Object Card to maybe spawn tokens for + ---@param playerData Table Player card data structure retrieved from the DataHelper. Should be + -- the right data for this card. + internal.spawnPlayerCardTokensFromDataHelper = function(card, playerData) + token = playerData.tokenType + tokenCount = playerData.tokenCount + log("Spawning data helper tokens for "..card.getName()..'['..card.getDescription()..']: '..tokenCount.."x "..token) + TokenManager.spawnTokenGroup(card, token, tokenCount) + tokenSpawnTracker.markTokensSpawned(card.getGUID()) + end + + -- Spawn tokens for a location using data retrieved from the Data Helper. + ---@param card Object Card to maybe spawn tokens for + ---@param playerData Table Location data structure retrieved from the DataHelper. Should be + -- the right data for this card. + internal.spawnLocationTokensFromDataHelper = function(card, locationData) + local clueCount = internal.getClueCountFromData(card, locationData) + if clueCount > 0 then + TokenManager.spawnTokenGroup(card, "clue", clueCount) + tokenSpawnTracker.markTokensSpawned(card.getGUID()) + end + end + + internal.getPlayerCardData = function(card) + return playerCardData[card.getName() .. ':' .. card.getDescription()] + or playerCardData[card.getName()] + end + + internal.getLocationData = function(card) + return locationData[card.getName() .. '_' .. card.getGUID()] or locationData[card.getName()] + end + + internal.getClueCountFromData = function(card, locationData) + -- Return the number of clues to spawn on this location + if locationData == nil then + error('attempted to get clue for unexpected object: ' .. card.getName()) + return 0 + end + + log(card.getName() .. ' : ' .. locationData.type .. ' : ' .. locationData.value .. ' : ' .. locationData.clueSide) + if ((card.is_face_down and locationData.clueSide == 'back') + or (not card.is_face_down and locationData.clueSide == 'front')) then + if locationData.type == 'fixed' then + return locationData.value + elseif locationData.type == 'perPlayer' then + return locationData.value * playArea.getInvestigatorCount() + end + error('unexpected location type: ' .. locationData.type) + end + return 0 + end + + -- Gets the right uses structure for this card, based on metadata and face up/down state + ---@param card Object Card to pull the uses from + internal.getUses = function(card) + local metadata = JSON.decode(card.getGMNotes()) or { } + if metadata.type == "Location" then + if card.is_face_down and metadata.locationBack ~= nil then + return metadata.locationBack.uses + elseif not card.is_face_down and metadata.locationFront ~= nil then + return metadata.locationFront.uses + end + elseif not card.is_face_down then + return metadata.uses + end + + return nil + end + + -- Dynamically create positions for clues on a card. + ---@param card Object Card the clues will be placed on + ---@param count Integer How many clues? + ---@return Table Array of global positions to spawn the clues at + internal.buildClueOffsets = function(card, count) + local pos = card.getPosition() + local cluePositions = { } + for i = 1, count do + local row = math.floor(1 + (i - 1) / 4) + local column = (i - 1) % 4 + table.insert(cluePositions, Vector(pos.x + 1.5 - 0.55 * row, pos.y + 0.15, pos.z - 0.825 + 0.55 * column)) + end + + return cluePositions + end + + return TokenManager + +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Family Inheritance 394603.yaml b/unpacked/Bag All Player Cards 15bb07/Card Family Inheritance 394603.yaml index a4c11c336..574a701b3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Family Inheritance 394603.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Family Inheritance 394603.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 431557 ColorDiffuse: @@ -29,7 +29,7 @@ HideWhenFaceDown: true IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false -LuaScript: '' +LuaScript: !include 'Card Family Inheritance 394603.ttslua' LuaScriptState: '' MeasureMovement: false Name: Card @@ -45,11 +45,11 @@ Transform: posX: 9.17 posY: 2.96 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fang of Tyr'thrha (4) e2dc13.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fang of Tyr'thrha (4) e2dc13.yaml index 361dd1c04..e5554bbf7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fang of Tyr'thrha (4) e2dc13.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fang of Tyr'thrha (4) e2dc13.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379019 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 2.74 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Farsight (4) b4121c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Farsight (4) b4121c.yaml index 264796158..3a6f3ff18 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Farsight (4) b4121c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Farsight (4) b4121c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538829 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.82 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Father Mateo df852c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Father Mateo df852c.yaml index 6068b4cb8..477df9c4e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Father Mateo df852c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Father Mateo df852c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 262119 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.81 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Father Mateo eb96e6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Father Mateo eb96e6.yaml index 69cc601d2..6e85cd078 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Father Mateo eb96e6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Father Mateo eb96e6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449601 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 18.45 posY: 1.94 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Faustian Bargain 17d34b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Faustian Bargain 17d34b.yaml index 034e95061..55f33b9f2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Faustian Bargain 17d34b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Faustian Bargain 17d34b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 586622 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.03 posY: 3.68 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Favor of the Moon (1) 542a70.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Favor of the Moon (1) 542a70.ttslua index 63d2a5430..51521529f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Favor of the Moon (1) 542a70.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Favor of the Moon (1) 542a70.ttslua @@ -1,81 +1,348 @@ -function onload() - mode = "Curse" - chaosbag = getChaosBag() - manager = getObjectFromGUID("5933fb") - sealedTokens = { } - IMAGE_TOKEN_MAP = { } - for i,v in pairs(Global.getVar("IMAGE_TOKEN_MAP")) do - IMAGE_TOKEN_MAP[i] = v - end +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} - -- add menu items - self.clearContextMenu() - self.addContextMenuItem("Release Token", releaseTokens, true) - for url,name in pairs(IMAGE_TOKEN_MAP) do - if name == mode then - self.addContextMenuItem("Seal " .. mode, function(playerColor) sealToken(url, playerColor) end, true) - end - end + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/FavoroftheMoon1") +end) +__bundle_register("playercards/cards/FavoroftheMoon1", function(require, _LOADED, __bundle_register, __bundle_modules) +VALID_TOKENS = { + ["Curse"] = true +} + +SHOW_SINGLE_RELEASE = true + +require("playercards/CardsThatSealTokens") +end) +__bundle_register("playercards/CardsThatSealTokens", function(require, _LOADED, __bundle_register, __bundle_modules) +--[[ Library for cards that seal tokens +This file is used to add sealing option to cards' context menu. +Valid options (set before requiring this file): + +UPDATE_ON_HOVER --@type: boolean + - automatically updates the context menu options when the card is hovered + - the "Read Bag" function reads the content of the chaos bag to update the context menu + - example usage: "Unrelenting" (to only display valid tokens) + +SHOW_SINGLE_RELEASE --@type: boolean + - enables an entry in the context menu + - this entry allows releasing a single token + - example usage: "Holy Spear" (to keep the other tokens and just release one) + +SHOW_MULTI_RELEASE --@type: number (amount of tokens to release at once) + - enables an entry in the context menu + - this enty allows releasing of multiple tokens at once + - example usage: "Nephthys" (to release 3 bless tokens at once) + +SHOW_MULTI_SEAL --@type: number (amount of tokens to seal at once) + - enables an entry in the context menu + - this entry allows sealing of multiple tokens at once + - example usage: "Holy Spear" (to seal two bless tokens at once) + +VALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens should be abled to be sealed + - needs to be defined for each card -> even if empty + - example usage: "The Chthonian Stone" + > VALID_TOKENS = { + > ["Skull"] = true, + > ["Cultist"] = true, + > ["Tablet"] = true, + > ["Elder Thing"] = true, + > } + +INVALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens are invalid for sealing + - only needs to be defined if needed + - usually combined with empty "VALID_TOKENS" table + - example usage: "Protective Incantation" (not allowed to seal Auto-fail) + +---------------------------------------------------------- +Example 1: Crystalline Elder Sign +This card can only seal the "+1" or "Elder Sign" token, +it does not need specific options for multi-sealing or releasing. +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["+1"] = true, +> ["Elder Sign"] = true +> } +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +---------------------------------------------------------- +Example 2: Holy Spear +This card features the following abilities (just listing the relevant parts): +- releasing a single bless token +- sealing two bless tokens +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["Bless"] = true +> } +> SHOW_SINGLE_RELEASE = true +> SHOW_MULTI_SEAL = 2 +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +----------------------------------------------------------]] + +local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi") +local tokenArrangerApi = require("accessories/TokenArrangerApi") +local sealedTokens = {} +local ID_URL_MAP = {} +local tokensInBag = {} + +function onSave() return JSON.encode(sealedTokens) end + +function onLoad(savedData) + sealedTokens = JSON.decode(savedData) or {} + ID_URL_MAP = Global.getTable("ID_URL_MAP") + generateContextMenu() end -function sealToken(url, playerColor) - local pos = self.getPosition() +-- builds the context menu +function generateContextMenu() + -- conditional single or multi release options + if SHOW_SINGLE_RELEASE then + self.addContextMenuItem("Release token", releaseOneToken) + elseif SHOW_MULTI_RELEASE then + self.addContextMenuItem("Release " .. SHOW_MULTI_RELEASE .. " token(s)", releaseMultipleTokens) + else + self.addContextMenuItem("Release token(s)", releaseAllTokens) + end - local name = IMAGE_TOKEN_MAP[url] - for i,obj in ipairs(chaosbag.getObjects()) do - if obj.name == name then - chaosbag.takeObject({ - position={ pos.x, pos.y + 1, pos.z }, - index=i-1, - smooth=false, - callback_function=_sealToken - }) - return - end - end - printToColor(name .. " token not found in bag", playerColor) -end + -- main context menu options to seal tokens + for _, map in pairs(ID_URL_MAP) do + if (VALID_TOKENS[map.name] ~= nil) or (UPDATE_ON_HOVER and tokensInBag[map.name] and not INVALID_TOKENS[map.name]) then + if not SHOW_MULTI_SEAL then + self.addContextMenuItem("Seal " .. map.name, function(playerColor) + sealToken(map.name, playerColor) + end) + else + self.addContextMenuItem("Seal " .. SHOW_MULTI_SEAL .. " " .. map.name, function(playerColor) + readBag() + local allowed = true + local notFound -function _sealToken(obj) - table.insert(sealedTokens, obj) - local guid = obj.getGUID() - local tokensTaken = manager.getVar("tokensTaken") - table.insert(tokensTaken[mode], guid) - manager.setVar("tokensTaken", tokensTaken) - manager.setVar("mode", mode) - printToAll("Sealing " .. mode .. " token " .. manager.call("getTokenCount")) -end - -function releaseTokens(playerColor) - if #sealedTokens == 0 then return end - local token = sealedTokens[#sealedTokens] - if token ~= nil then - local guid = token.getGUID() - chaosbag.putObject(token) - local tokensTaken = manager.getVar("tokensTaken") - for i,v in ipairs(tokensTaken[mode]) do - if v == guid then - table.remove(tokensTaken[mode], i) - break + for name, _ in pairs(VALID_TOKENS) do + if (tokensInBag[name] or 0) < SHOW_MULTI_SEAL then + allowed = false + notFound = name end - end - manager.setVar("tokensTaken", tokensTaken) - manager.setVar("mode", mode) - printToAll("Releasing " .. mode .. " token" .. manager.call("getTokenCount")) - end + end - table.remove(sealedTokens) + if allowed then + for i = 1, SHOW_MULTI_SEAL do + sealToken(map.name, playerColor) + end + else + printToColor("Not enough " .. notFound .. " tokens in the chaos bag.", playerColor) + end + end) + end + end + end end -function getChaosBag() - local items = getObjectFromGUID("83ef06").getObjects() - local chaosbag = nil - for i,v in ipairs(items) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break +-- generates a list of chaos tokens that is in the chaos bag +function readBag() + local chaosbag = Global.call("findChaosBag") + tokensInBag = {} + + for _, token in ipairs(chaosbag.getObjects()) do + tokensInBag[token.name] = (tokensInBag[token.name] or 0) + 1 + end +end + +-- native event from TTS - used to update the context menu for cards like "Unrelenting" +function onHover() + if UPDATE_ON_HOVER then + readBag() + self.clearContextMenu() + generateContextMenu() + end +end + +-- seals the named token on this card +function sealToken(name, playerColor) + if not Global.call("canTouchChaosTokens") then return end + local chaosbag = Global.call("findChaosBag") + for i, obj in ipairs(chaosbag.getObjects()) do + if obj.name == name then + chaosbag.takeObject({ + position = self.getPosition() + Vector(0, 0.5 + 0.1 * #sealedTokens, 0), + rotation = self.getRotation(), + index = i - 1, + smooth = false, + callback_function = function(token) + local guid = token.getGUID() + table.insert(sealedTokens, guid) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.sealedToken(name, guid) + end end + }) + return end - if chaosbag == nil then printToAll("No chaos bag found") end - return chaosbag -end \ No newline at end of file + end + printToColor(name .. " token not found in chaos bag", playerColor) +end + +-- release the last sealed token +function releaseOneToken(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token", playerColor) + putTokenAway(table.remove(sealedTokens)) + end +end + +-- release multiple tokens at once +function releaseMultipleTokens(playerColor) + if SHOW_MULTI_RELEASE >= #sealedTokens then + for i = 1, SHOW_MULTI_RELEASE do + releaseOneToken(playerColor) + end + else + printToColor("Not enough " .. name .. " tokens sealed.", playerColor) + end +end + +-- releases all sealed tokens +function releaseAllTokens(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token(s)", playerColor) + for _, guid in ipairs(sealedTokens) do + putTokenAway(guid) + end + sealedTokens = {} + end +end + +-- returns the token (referenced by GUID) to the chaos bag +function putTokenAway(guid) + local token = getObjectFromGUID(guid) + if not token then return end + + local name = token.getName() + local chaosbag = Global.call("findChaosBag") + chaosbag.putObject(token) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.releasedToken(name, guid) + end +end +end) +__bundle_register("accessories/TokenArrangerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenArrangerApi = {} + + -- local function to call the token arranger, if it is on the table + ---@param functionName String Name of the function to cal + ---@param argument Variant Parameter to pass + local function callIfExistent(functionName, argument) + local tokenArranger = getObjectsWithTag("TokenArranger")[1] + if tokenArranger ~= nil then + tokenArranger.call(functionName, argument) + end + end + + -- updates the token modifiers with the provided data + ---@param tokenData Table Contains the chaos token metadata + TokenArrangerApi.onTokenDataChanged = function(fullData) + callIfExistent("onTokenDataChanged", fullData) + end + + -- deletes already laid out tokens + TokenArrangerApi.deleteCopiedTokens = function() + callIfExistent("deleteCopiedTokens") + end + + -- updates the laid out tokens + TokenArrangerApi.layout = function() + Wait.time(function() callIfExistent("layout") end, 0.1) + end + + return TokenArrangerApi +end +end) +__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local BlessCurseManagerApi = {} + local MANAGER_GUID = "5933fb" + + -- removes all taken tokens and resets the counts + BlessCurseManagerApi.removeTakenTokensAndReset = function() + local BlessCurseManager = getObjectFromGUID(MANAGER_GUID) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10) + Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.sealedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("sealedToken", { type = type, guid = guid }) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.releasedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("releasedToken", { type = type, guid = guid }) + end + + -- broadcasts the current status for bless/curse tokens + ---@param playerColor String Color of the player to show the broadcast to + BlessCurseManagerApi.broadcastStatus = function(playerColor) + getObjectFromGUID(MANAGER_GUID).call("broadcastStatus", playerColor) + end + + -- adds Wendy's menu to the hovered card (allows sealing of tokens) + ---@param color String Color of the player to show the broadcast to + BlessCurseManagerApi.addWendysMenu = function(playerColor, hoveredObject) + getObjectFromGUID(MANAGER_GUID).call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject }) + end + + return BlessCurseManagerApi +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Favor of the Moon (1) 542a70.yaml b/unpacked/Bag All Player Cards 15bb07/Card Favor of the Moon (1) 542a70.yaml index 5c06a3f57..fac0abc4a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Favor of the Moon (1) 542a70.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Favor of the Moon (1) 542a70.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449610 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.0 posY: 3.83 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Favor of the Sun (1) 1e6a06.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Favor of the Sun (1) 1e6a06.ttslua index d819038d5..92607df2f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Favor of the Sun (1) 1e6a06.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Favor of the Sun (1) 1e6a06.ttslua @@ -1,81 +1,348 @@ -function onload() - mode = "Bless" - chaosbag = getChaosBag() - manager = getObjectFromGUID("5933fb") - sealedTokens = { } - IMAGE_TOKEN_MAP = { } - for i,v in pairs(Global.getVar("IMAGE_TOKEN_MAP")) do - IMAGE_TOKEN_MAP[i] = v - end +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} - -- add menu items - self.clearContextMenu() - self.addContextMenuItem("Release Token", releaseTokens, true) - for url,name in pairs(IMAGE_TOKEN_MAP) do - if name == mode then - self.addContextMenuItem("Seal " .. mode, function(playerColor) sealToken(url, playerColor) end, true) - end - end + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("playercards/CardsThatSealTokens", function(require, _LOADED, __bundle_register, __bundle_modules) +--[[ Library for cards that seal tokens +This file is used to add sealing option to cards' context menu. +Valid options (set before requiring this file): + +UPDATE_ON_HOVER --@type: boolean + - automatically updates the context menu options when the card is hovered + - the "Read Bag" function reads the content of the chaos bag to update the context menu + - example usage: "Unrelenting" (to only display valid tokens) + +SHOW_SINGLE_RELEASE --@type: boolean + - enables an entry in the context menu + - this entry allows releasing a single token + - example usage: "Holy Spear" (to keep the other tokens and just release one) + +SHOW_MULTI_RELEASE --@type: number (amount of tokens to release at once) + - enables an entry in the context menu + - this enty allows releasing of multiple tokens at once + - example usage: "Nephthys" (to release 3 bless tokens at once) + +SHOW_MULTI_SEAL --@type: number (amount of tokens to seal at once) + - enables an entry in the context menu + - this entry allows sealing of multiple tokens at once + - example usage: "Holy Spear" (to seal two bless tokens at once) + +VALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens should be abled to be sealed + - needs to be defined for each card -> even if empty + - example usage: "The Chthonian Stone" + > VALID_TOKENS = { + > ["Skull"] = true, + > ["Cultist"] = true, + > ["Tablet"] = true, + > ["Elder Thing"] = true, + > } + +INVALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens are invalid for sealing + - only needs to be defined if needed + - usually combined with empty "VALID_TOKENS" table + - example usage: "Protective Incantation" (not allowed to seal Auto-fail) + +---------------------------------------------------------- +Example 1: Crystalline Elder Sign +This card can only seal the "+1" or "Elder Sign" token, +it does not need specific options for multi-sealing or releasing. +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["+1"] = true, +> ["Elder Sign"] = true +> } +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +---------------------------------------------------------- +Example 2: Holy Spear +This card features the following abilities (just listing the relevant parts): +- releasing a single bless token +- sealing two bless tokens +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["Bless"] = true +> } +> SHOW_SINGLE_RELEASE = true +> SHOW_MULTI_SEAL = 2 +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +----------------------------------------------------------]] + +local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi") +local tokenArrangerApi = require("accessories/TokenArrangerApi") +local sealedTokens = {} +local ID_URL_MAP = {} +local tokensInBag = {} + +function onSave() return JSON.encode(sealedTokens) end + +function onLoad(savedData) + sealedTokens = JSON.decode(savedData) or {} + ID_URL_MAP = Global.getTable("ID_URL_MAP") + generateContextMenu() end -function sealToken(url, playerColor) - local pos = self.getPosition() +-- builds the context menu +function generateContextMenu() + -- conditional single or multi release options + if SHOW_SINGLE_RELEASE then + self.addContextMenuItem("Release token", releaseOneToken) + elseif SHOW_MULTI_RELEASE then + self.addContextMenuItem("Release " .. SHOW_MULTI_RELEASE .. " token(s)", releaseMultipleTokens) + else + self.addContextMenuItem("Release token(s)", releaseAllTokens) + end - local name = IMAGE_TOKEN_MAP[url] - for i,obj in ipairs(chaosbag.getObjects()) do - if obj.name == name then - chaosbag.takeObject({ - position={ pos.x, pos.y + 1, pos.z }, - index=i-1, - smooth=false, - callback_function=_sealToken - }) - return - end - end - printToColor(name .. " token not found in bag", playerColor) -end + -- main context menu options to seal tokens + for _, map in pairs(ID_URL_MAP) do + if (VALID_TOKENS[map.name] ~= nil) or (UPDATE_ON_HOVER and tokensInBag[map.name] and not INVALID_TOKENS[map.name]) then + if not SHOW_MULTI_SEAL then + self.addContextMenuItem("Seal " .. map.name, function(playerColor) + sealToken(map.name, playerColor) + end) + else + self.addContextMenuItem("Seal " .. SHOW_MULTI_SEAL .. " " .. map.name, function(playerColor) + readBag() + local allowed = true + local notFound -function _sealToken(obj) - table.insert(sealedTokens, obj) - local guid = obj.getGUID() - local tokensTaken = manager.getVar("tokensTaken") - table.insert(tokensTaken[mode], guid) - manager.setVar("tokensTaken", tokensTaken) - manager.setVar("mode", mode) - printToAll("Sealing " .. mode .. " token " .. manager.call("getTokenCount")) -end - -function releaseTokens(playerColor) - if #sealedTokens == 0 then return end - local token = sealedTokens[#sealedTokens] - if token ~= nil then - local guid = token.getGUID() - chaosbag.putObject(token) - local tokensTaken = manager.getVar("tokensTaken") - for i,v in ipairs(tokensTaken[mode]) do - if v == guid then - table.remove(tokensTaken[mode], i) - break + for name, _ in pairs(VALID_TOKENS) do + if (tokensInBag[name] or 0) < SHOW_MULTI_SEAL then + allowed = false + notFound = name end - end - manager.setVar("tokensTaken", tokensTaken) - manager.setVar("mode", mode) - printToAll("Releasing " .. mode .. " token" .. manager.call("getTokenCount")) - end + end - table.remove(sealedTokens) + if allowed then + for i = 1, SHOW_MULTI_SEAL do + sealToken(map.name, playerColor) + end + else + printToColor("Not enough " .. notFound .. " tokens in the chaos bag.", playerColor) + end + end) + end + end + end end -function getChaosBag() - local items = getObjectFromGUID("83ef06").getObjects() - local chaosbag = nil - for i,v in ipairs(items) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break +-- generates a list of chaos tokens that is in the chaos bag +function readBag() + local chaosbag = Global.call("findChaosBag") + tokensInBag = {} + + for _, token in ipairs(chaosbag.getObjects()) do + tokensInBag[token.name] = (tokensInBag[token.name] or 0) + 1 + end +end + +-- native event from TTS - used to update the context menu for cards like "Unrelenting" +function onHover() + if UPDATE_ON_HOVER then + readBag() + self.clearContextMenu() + generateContextMenu() + end +end + +-- seals the named token on this card +function sealToken(name, playerColor) + if not Global.call("canTouchChaosTokens") then return end + local chaosbag = Global.call("findChaosBag") + for i, obj in ipairs(chaosbag.getObjects()) do + if obj.name == name then + chaosbag.takeObject({ + position = self.getPosition() + Vector(0, 0.5 + 0.1 * #sealedTokens, 0), + rotation = self.getRotation(), + index = i - 1, + smooth = false, + callback_function = function(token) + local guid = token.getGUID() + table.insert(sealedTokens, guid) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.sealedToken(name, guid) + end end + }) + return end - if chaosbag == nil then printToAll("No chaos bag found") end - return chaosbag -end \ No newline at end of file + end + printToColor(name .. " token not found in chaos bag", playerColor) +end + +-- release the last sealed token +function releaseOneToken(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token", playerColor) + putTokenAway(table.remove(sealedTokens)) + end +end + +-- release multiple tokens at once +function releaseMultipleTokens(playerColor) + if SHOW_MULTI_RELEASE >= #sealedTokens then + for i = 1, SHOW_MULTI_RELEASE do + releaseOneToken(playerColor) + end + else + printToColor("Not enough " .. name .. " tokens sealed.", playerColor) + end +end + +-- releases all sealed tokens +function releaseAllTokens(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token(s)", playerColor) + for _, guid in ipairs(sealedTokens) do + putTokenAway(guid) + end + sealedTokens = {} + end +end + +-- returns the token (referenced by GUID) to the chaos bag +function putTokenAway(guid) + local token = getObjectFromGUID(guid) + if not token then return end + + local name = token.getName() + local chaosbag = Global.call("findChaosBag") + chaosbag.putObject(token) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.releasedToken(name, guid) + end +end +end) +__bundle_register("accessories/TokenArrangerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenArrangerApi = {} + + -- local function to call the token arranger, if it is on the table + ---@param functionName String Name of the function to cal + ---@param argument Variant Parameter to pass + local function callIfExistent(functionName, argument) + local tokenArranger = getObjectsWithTag("TokenArranger")[1] + if tokenArranger ~= nil then + tokenArranger.call(functionName, argument) + end + end + + -- updates the token modifiers with the provided data + ---@param tokenData Table Contains the chaos token metadata + TokenArrangerApi.onTokenDataChanged = function(fullData) + callIfExistent("onTokenDataChanged", fullData) + end + + -- deletes already laid out tokens + TokenArrangerApi.deleteCopiedTokens = function() + callIfExistent("deleteCopiedTokens") + end + + -- updates the laid out tokens + TokenArrangerApi.layout = function() + Wait.time(function() callIfExistent("layout") end, 0.1) + end + + return TokenArrangerApi +end +end) +__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local BlessCurseManagerApi = {} + local MANAGER_GUID = "5933fb" + + -- removes all taken tokens and resets the counts + BlessCurseManagerApi.removeTakenTokensAndReset = function() + local BlessCurseManager = getObjectFromGUID(MANAGER_GUID) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10) + Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.sealedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("sealedToken", { type = type, guid = guid }) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.releasedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("releasedToken", { type = type, guid = guid }) + end + + -- broadcasts the current status for bless/curse tokens + ---@param playerColor String Color of the player to show the broadcast to + BlessCurseManagerApi.broadcastStatus = function(playerColor) + getObjectFromGUID(MANAGER_GUID).call("broadcastStatus", playerColor) + end + + -- adds Wendy's menu to the hovered card (allows sealing of tokens) + ---@param color String Color of the player to show the broadcast to + BlessCurseManagerApi.addWendysMenu = function(playerColor, hoveredObject) + getObjectFromGUID(MANAGER_GUID).call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject }) + end + + return BlessCurseManagerApi +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/FavoroftheSun1") +end) +__bundle_register("playercards/cards/FavoroftheSun1", function(require, _LOADED, __bundle_register, __bundle_modules) +VALID_TOKENS = { + ["Bless"] = true +} + +SHOW_SINGLE_RELEASE = true + +require("playercards/CardsThatSealTokens") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Favor of the Sun (1) 1e6a06.yaml b/unpacked/Bag All Player Cards 15bb07/Card Favor of the Sun (1) 1e6a06.yaml index bb52c7813..53bc4112a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Favor of the Sun (1) 1e6a06.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Favor of the Sun (1) 1e6a06.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449611 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.12 posY: 4.07 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fearless (2) b2e27e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fearless (2) b2e27e.yaml index d11476b55..628900c15 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fearless (2) b2e27e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fearless (2) b2e27e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230337 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 2.88 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fearless cd0ac1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fearless cd0ac1.yaml index 11711afde..f8dcf50fe 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fearless cd0ac1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fearless cd0ac1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230303 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 32.98 posY: 3.33 posZ: -47.41 - rotX: 1 - rotY: 270 - rotZ: 2 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Feed the Mind (3) bc4788.yaml b/unpacked/Bag All Player Cards 15bb07/Card Feed the Mind (3) bc4788.yaml index 943d39f4b..e1418aeb4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Feed the Mind (3) bc4788.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Feed the Mind (3) bc4788.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 262200 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.97 posY: 3.69 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Feed the Mind a614de.yaml b/unpacked/Bag All Player Cards 15bb07/Card Feed the Mind a614de.yaml index 5ae45f55e..2af489b43 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Feed the Mind a614de.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Feed the Mind a614de.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538807 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.04 posY: 3.91 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fence (1) 2423e7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fence (1) 2423e7.yaml index 69368f953..bde2a05f3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fence (1) 2423e7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fence (1) 2423e7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315238 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.02 posY: 3.94 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fend Off (3) 0c2449.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fend Off (3) 0c2449.yaml index f81a49c42..6cc2c7f22 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fend Off (3) 0c2449.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fend Off (3) 0c2449.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378911 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 2.75 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fey (1) f10690.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fey (1) f10690.yaml index 19075f28a..0c6106fbb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fey (1) f10690.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fey (1) f10690.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 579402 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.15 posY: 3.77 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fickle Fortune (3) 1b4684.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fickle Fortune (3) 1b4684.yaml index 7a7fe4f37..9a46bce45 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fickle Fortune (3) 1b4684.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fickle Fortune (3) 1b4684.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379142 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.72 posY: 3.37 posZ: 65.64 - rotX: 0 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Field Agent (2) babfb6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Field Agent (2) babfb6.yaml index bd2517f44..105cf932b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Field Agent (2) babfb6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Field Agent (2) babfb6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379026 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 17.02 posY: 3.34 posZ: 65.98 - rotX: 358 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fieldwork d6771f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fieldwork d6771f.yaml index 5a46ae6fd..88dbb3dfb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fieldwork d6771f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fieldwork d6771f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368429 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.0 posY: 3.78 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fight or Flight 00af4f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fight or Flight 00af4f.yaml index 45b966df2..6676626a3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fight or Flight 00af4f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fight or Flight 00af4f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368813 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.05 posY: 3.91 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fighting Lessons fc2432.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fighting Lessons fc2432.yaml index 4698d7068..3e1eb079e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fighting Lessons fc2432.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fighting Lessons fc2432.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379023 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 17.02 posY: 3.36 posZ: 65.98 - rotX: 358 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Final Rhapsody 2c901b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Final Rhapsody 2c901b.yaml index 9282d044f..fc8ca5002 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Final Rhapsody 2c901b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Final Rhapsody 2c901b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 372011 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.02 posY: 4.05 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fine Clothes 5cb973.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fine Clothes 5cb973.yaml index 8384d4716..380d116df 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fine Clothes 5cb973.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fine Clothes 5cb973.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368511 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 5.01 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fine Print 39452d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fine Print 39452d.yaml index ece526fa8..820cfb1a2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fine Print 39452d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fine Print 39452d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545213 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.02 posY: 4.01 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fingerprint Kit (4) 33b09e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fingerprint Kit (4) 33b09e.yaml index 81e11bc62..eb53f1984 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fingerprint Kit (4) 33b09e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fingerprint Kit (4) 33b09e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379050 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 16.67 posY: 3.35 posZ: 65.93 - rotX: 358 - rotY: 270 - rotZ: 357 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 357.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fingerprint Kit b9bb2a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fingerprint Kit b9bb2a.yaml index 742b4e970..7b7a860dc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fingerprint Kit b9bb2a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fingerprint Kit b9bb2a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430810 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.98 posY: 4.01 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Finn Edwards 82dc80.yaml b/unpacked/Bag All Player Cards 15bb07/Card Finn Edwards 82dc80.yaml index b8fcb975a..254679289 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Finn Edwards 82dc80.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Finn Edwards 82dc80.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 261918 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.87 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Finn Edwards dd40c0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Finn Edwards dd40c0.yaml index d6d4f07ff..d06501d4e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Finn Edwards dd40c0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Finn Edwards dd40c0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 271518 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 50.42 posY: 2.5 posZ: 23.82 - rotX: 2 - rotY: 180 - rotZ: 0 + rotX: 2.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Finn's Trusty .38 848d9c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Finn's Trusty .38 848d9c.yaml index f8822c3bc..b68a73ade 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Finn's Trusty .38 848d9c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Finn's Trusty .38 848d9c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 376739 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.13 posY: 5.55 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fire Axe 9da37c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fire Axe 9da37c.yaml index 93299e68f..dbd0bfdc6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fire Axe 9da37c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fire Axe 9da37c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368825 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 4.52 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fire Extinguisher (1) 8a4673.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fire Extinguisher (1) 8a4673.yaml index 1392f2bc7..63248519e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fire Extinguisher (1) 8a4673.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fire Extinguisher (1) 8a4673.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368838 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.03 posY: 3.68 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fire Extinguisher (3) fb019d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fire Extinguisher (3) fb019d.yaml index 90d455b82..02f43ed1d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fire Extinguisher (3) fb019d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fire Extinguisher (3) fb019d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378909 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.18 posY: 2.95 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card First Aid (3) 3c7eb1.yaml b/unpacked/Bag All Player Cards 15bb07/Card First Aid (3) 3c7eb1.yaml index aeb1e5738..0b215c6fa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card First Aid (3) 3c7eb1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card First Aid (3) 3c7eb1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587215 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 78.92 posY: 3.32 posZ: 7.63 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card First Aid (3) bc80ab.yaml b/unpacked/Bag All Player Cards 15bb07/Card First Aid (3) bc80ab.yaml index 2df243f27..3275e3b2a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card First Aid (3) bc80ab.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card First Aid (3) bc80ab.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226353 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.16 posY: 4.19 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card First Aid 56b8ad.yaml b/unpacked/Bag All Player Cards 15bb07/Card First Aid 56b8ad.yaml index a9b74263a..b724f1941 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card First Aid 56b8ad.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card First Aid 56b8ad.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587200 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 78.81 posY: 3.32 posZ: 7.67 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card First Aid 5cd622.yaml b/unpacked/Bag All Player Cards 15bb07/Card First Aid 5cd622.yaml index 5d3362af7..716c98348 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card First Aid 5cd622.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card First Aid 5cd622.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226324 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.97 posY: 3.83 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card First Watch 0bb3da.yaml b/unpacked/Bag All Player Cards 15bb07/Card First Watch 0bb3da.yaml index f6c6cecec..ff306099f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card First Watch 0bb3da.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card First Watch 0bb3da.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379828 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.05 posY: 3.76 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fishing Net c7b748.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fishing Net c7b748.yaml index 5cfed161a..22f2fcb9d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fishing Net c7b748.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fishing Net c7b748.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 7502 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 5.35 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Five of Pentacles (1) 46187b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Five of Pentacles (1) 46187b.yaml index e37281da9..106168b82 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Five of Pentacles (1) 46187b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Five of Pentacles (1) 46187b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 274609 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.06 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Flamethrower (5) (Taboo) 8f170b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Flamethrower (5) (Taboo) 8f170b.yaml index 974a09a78..20a4c7788 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Flamethrower (5) (Taboo) 8f170b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Flamethrower (5) (Taboo) 8f170b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450608 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.17 posY: 3.18 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Flamethrower (5) cf4f15.yaml b/unpacked/Bag All Player Cards 15bb07/Card Flamethrower (5) cf4f15.yaml index 8acbb40b7..2c95a0884 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Flamethrower (5) cf4f15.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Flamethrower (5) cf4f15.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 314002 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 8.97 posY: 3.8 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Flare (1) 017821.yaml b/unpacked/Bag All Player Cards 15bb07/Card Flare (1) 017821.yaml index 24ca70b5b..410af2d3c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Flare (1) 017821.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Flare (1) 017821.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368839 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.03 posY: 3.68 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Flashlight (3) 2b3301.yaml b/unpacked/Bag All Player Cards 15bb07/Card Flashlight (3) 2b3301.yaml index e3b629fab..437c73cbb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Flashlight (3) 2b3301.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Flashlight (3) 2b3301.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379146 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 16.72 posY: 3.37 posZ: 65.64 - rotX: 0 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Flashlight bb1cce.yaml b/unpacked/Bag All Player Cards 15bb07/Card Flashlight bb1cce.yaml index ac88ad8b2..6f405bb0b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Flashlight bb1cce.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Flashlight bb1cce.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368515 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Flesh Ward 52c686.yaml b/unpacked/Bag All Player Cards 15bb07/Card Flesh Ward 52c686.yaml index a4a9a915e..ce99fe520 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Flesh Ward 52c686.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Flesh Ward 52c686.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545304 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.16 posY: 4.18 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) (Taboo) 669c4e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) (Taboo) 669c4e.yaml index a7587dd34..65c084aa6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) (Taboo) 669c4e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) (Taboo) 669c4e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558213 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 21.84 posY: 4.46 posZ: -48.41 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) 3cc1e2.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) 3cc1e2.ttslua index 63d2a5430..5c8c0a9b8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) 3cc1e2.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) 3cc1e2.ttslua @@ -1,81 +1,348 @@ -function onload() - mode = "Curse" - chaosbag = getChaosBag() - manager = getObjectFromGUID("5933fb") - sealedTokens = { } - IMAGE_TOKEN_MAP = { } - for i,v in pairs(Global.getVar("IMAGE_TOKEN_MAP")) do - IMAGE_TOKEN_MAP[i] = v - end +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} - -- add menu items - self.clearContextMenu() - self.addContextMenuItem("Release Token", releaseTokens, true) - for url,name in pairs(IMAGE_TOKEN_MAP) do - if name == mode then - self.addContextMenuItem("Seal " .. mode, function(playerColor) sealToken(url, playerColor) end, true) - end - end + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("playercards/cards/FluteoftheOuterGods4", function(require, _LOADED, __bundle_register, __bundle_modules) +VALID_TOKENS = { + ["Curse"] = true +} + +SHOW_SINGLE_RELEASE = true + +require("playercards/CardsThatSealTokens") +end) +__bundle_register("playercards/CardsThatSealTokens", function(require, _LOADED, __bundle_register, __bundle_modules) +--[[ Library for cards that seal tokens +This file is used to add sealing option to cards' context menu. +Valid options (set before requiring this file): + +UPDATE_ON_HOVER --@type: boolean + - automatically updates the context menu options when the card is hovered + - the "Read Bag" function reads the content of the chaos bag to update the context menu + - example usage: "Unrelenting" (to only display valid tokens) + +SHOW_SINGLE_RELEASE --@type: boolean + - enables an entry in the context menu + - this entry allows releasing a single token + - example usage: "Holy Spear" (to keep the other tokens and just release one) + +SHOW_MULTI_RELEASE --@type: number (amount of tokens to release at once) + - enables an entry in the context menu + - this enty allows releasing of multiple tokens at once + - example usage: "Nephthys" (to release 3 bless tokens at once) + +SHOW_MULTI_SEAL --@type: number (amount of tokens to seal at once) + - enables an entry in the context menu + - this entry allows sealing of multiple tokens at once + - example usage: "Holy Spear" (to seal two bless tokens at once) + +VALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens should be abled to be sealed + - needs to be defined for each card -> even if empty + - example usage: "The Chthonian Stone" + > VALID_TOKENS = { + > ["Skull"] = true, + > ["Cultist"] = true, + > ["Tablet"] = true, + > ["Elder Thing"] = true, + > } + +INVALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens are invalid for sealing + - only needs to be defined if needed + - usually combined with empty "VALID_TOKENS" table + - example usage: "Protective Incantation" (not allowed to seal Auto-fail) + +---------------------------------------------------------- +Example 1: Crystalline Elder Sign +This card can only seal the "+1" or "Elder Sign" token, +it does not need specific options for multi-sealing or releasing. +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["+1"] = true, +> ["Elder Sign"] = true +> } +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +---------------------------------------------------------- +Example 2: Holy Spear +This card features the following abilities (just listing the relevant parts): +- releasing a single bless token +- sealing two bless tokens +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["Bless"] = true +> } +> SHOW_SINGLE_RELEASE = true +> SHOW_MULTI_SEAL = 2 +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +----------------------------------------------------------]] + +local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi") +local tokenArrangerApi = require("accessories/TokenArrangerApi") +local sealedTokens = {} +local ID_URL_MAP = {} +local tokensInBag = {} + +function onSave() return JSON.encode(sealedTokens) end + +function onLoad(savedData) + sealedTokens = JSON.decode(savedData) or {} + ID_URL_MAP = Global.getTable("ID_URL_MAP") + generateContextMenu() end -function sealToken(url, playerColor) - local pos = self.getPosition() +-- builds the context menu +function generateContextMenu() + -- conditional single or multi release options + if SHOW_SINGLE_RELEASE then + self.addContextMenuItem("Release token", releaseOneToken) + elseif SHOW_MULTI_RELEASE then + self.addContextMenuItem("Release " .. SHOW_MULTI_RELEASE .. " token(s)", releaseMultipleTokens) + else + self.addContextMenuItem("Release token(s)", releaseAllTokens) + end - local name = IMAGE_TOKEN_MAP[url] - for i,obj in ipairs(chaosbag.getObjects()) do - if obj.name == name then - chaosbag.takeObject({ - position={ pos.x, pos.y + 1, pos.z }, - index=i-1, - smooth=false, - callback_function=_sealToken - }) - return - end - end - printToColor(name .. " token not found in bag", playerColor) -end + -- main context menu options to seal tokens + for _, map in pairs(ID_URL_MAP) do + if (VALID_TOKENS[map.name] ~= nil) or (UPDATE_ON_HOVER and tokensInBag[map.name] and not INVALID_TOKENS[map.name]) then + if not SHOW_MULTI_SEAL then + self.addContextMenuItem("Seal " .. map.name, function(playerColor) + sealToken(map.name, playerColor) + end) + else + self.addContextMenuItem("Seal " .. SHOW_MULTI_SEAL .. " " .. map.name, function(playerColor) + readBag() + local allowed = true + local notFound -function _sealToken(obj) - table.insert(sealedTokens, obj) - local guid = obj.getGUID() - local tokensTaken = manager.getVar("tokensTaken") - table.insert(tokensTaken[mode], guid) - manager.setVar("tokensTaken", tokensTaken) - manager.setVar("mode", mode) - printToAll("Sealing " .. mode .. " token " .. manager.call("getTokenCount")) -end - -function releaseTokens(playerColor) - if #sealedTokens == 0 then return end - local token = sealedTokens[#sealedTokens] - if token ~= nil then - local guid = token.getGUID() - chaosbag.putObject(token) - local tokensTaken = manager.getVar("tokensTaken") - for i,v in ipairs(tokensTaken[mode]) do - if v == guid then - table.remove(tokensTaken[mode], i) - break + for name, _ in pairs(VALID_TOKENS) do + if (tokensInBag[name] or 0) < SHOW_MULTI_SEAL then + allowed = false + notFound = name end - end - manager.setVar("tokensTaken", tokensTaken) - manager.setVar("mode", mode) - printToAll("Releasing " .. mode .. " token" .. manager.call("getTokenCount")) - end + end - table.remove(sealedTokens) + if allowed then + for i = 1, SHOW_MULTI_SEAL do + sealToken(map.name, playerColor) + end + else + printToColor("Not enough " .. notFound .. " tokens in the chaos bag.", playerColor) + end + end) + end + end + end end -function getChaosBag() - local items = getObjectFromGUID("83ef06").getObjects() - local chaosbag = nil - for i,v in ipairs(items) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break +-- generates a list of chaos tokens that is in the chaos bag +function readBag() + local chaosbag = Global.call("findChaosBag") + tokensInBag = {} + + for _, token in ipairs(chaosbag.getObjects()) do + tokensInBag[token.name] = (tokensInBag[token.name] or 0) + 1 + end +end + +-- native event from TTS - used to update the context menu for cards like "Unrelenting" +function onHover() + if UPDATE_ON_HOVER then + readBag() + self.clearContextMenu() + generateContextMenu() + end +end + +-- seals the named token on this card +function sealToken(name, playerColor) + if not Global.call("canTouchChaosTokens") then return end + local chaosbag = Global.call("findChaosBag") + for i, obj in ipairs(chaosbag.getObjects()) do + if obj.name == name then + chaosbag.takeObject({ + position = self.getPosition() + Vector(0, 0.5 + 0.1 * #sealedTokens, 0), + rotation = self.getRotation(), + index = i - 1, + smooth = false, + callback_function = function(token) + local guid = token.getGUID() + table.insert(sealedTokens, guid) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.sealedToken(name, guid) + end end + }) + return end - if chaosbag == nil then printToAll("No chaos bag found") end - return chaosbag -end \ No newline at end of file + end + printToColor(name .. " token not found in chaos bag", playerColor) +end + +-- release the last sealed token +function releaseOneToken(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token", playerColor) + putTokenAway(table.remove(sealedTokens)) + end +end + +-- release multiple tokens at once +function releaseMultipleTokens(playerColor) + if SHOW_MULTI_RELEASE >= #sealedTokens then + for i = 1, SHOW_MULTI_RELEASE do + releaseOneToken(playerColor) + end + else + printToColor("Not enough " .. name .. " tokens sealed.", playerColor) + end +end + +-- releases all sealed tokens +function releaseAllTokens(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token(s)", playerColor) + for _, guid in ipairs(sealedTokens) do + putTokenAway(guid) + end + sealedTokens = {} + end +end + +-- returns the token (referenced by GUID) to the chaos bag +function putTokenAway(guid) + local token = getObjectFromGUID(guid) + if not token then return end + + local name = token.getName() + local chaosbag = Global.call("findChaosBag") + chaosbag.putObject(token) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.releasedToken(name, guid) + end +end +end) +__bundle_register("accessories/TokenArrangerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenArrangerApi = {} + + -- local function to call the token arranger, if it is on the table + ---@param functionName String Name of the function to cal + ---@param argument Variant Parameter to pass + local function callIfExistent(functionName, argument) + local tokenArranger = getObjectsWithTag("TokenArranger")[1] + if tokenArranger ~= nil then + tokenArranger.call(functionName, argument) + end + end + + -- updates the token modifiers with the provided data + ---@param tokenData Table Contains the chaos token metadata + TokenArrangerApi.onTokenDataChanged = function(fullData) + callIfExistent("onTokenDataChanged", fullData) + end + + -- deletes already laid out tokens + TokenArrangerApi.deleteCopiedTokens = function() + callIfExistent("deleteCopiedTokens") + end + + -- updates the laid out tokens + TokenArrangerApi.layout = function() + Wait.time(function() callIfExistent("layout") end, 0.1) + end + + return TokenArrangerApi +end +end) +__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local BlessCurseManagerApi = {} + local MANAGER_GUID = "5933fb" + + -- removes all taken tokens and resets the counts + BlessCurseManagerApi.removeTakenTokensAndReset = function() + local BlessCurseManager = getObjectFromGUID(MANAGER_GUID) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10) + Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.sealedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("sealedToken", { type = type, guid = guid }) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.releasedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("releasedToken", { type = type, guid = guid }) + end + + -- broadcasts the current status for bless/curse tokens + ---@param playerColor String Color of the player to show the broadcast to + BlessCurseManagerApi.broadcastStatus = function(playerColor) + getObjectFromGUID(MANAGER_GUID).call("broadcastStatus", playerColor) + end + + -- adds Wendy's menu to the hovered card (allows sealing of tokens) + ---@param color String Color of the player to show the broadcast to + BlessCurseManagerApi.addWendysMenu = function(playerColor, hoveredObject) + getObjectFromGUID(MANAGER_GUID).call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject }) + end + + return BlessCurseManagerApi +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/FluteoftheOuterGods4") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) 3cc1e2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) 3cc1e2.yaml index 6bc96c2cf..50a78d819 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) 3cc1e2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) 3cc1e2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449607 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.97 posY: 3.99 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Followed 0cc3e7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Followed 0cc3e7.yaml index 222b6ffe8..cae74d26b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Followed 0cc3e7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Followed 0cc3e7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 380025 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.73 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fool me once... (1) b6506d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fool me once... (1) b6506d.yaml index ab5167cc0..5737cc7c3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fool me once... (1) b6506d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fool me once... (1) b6506d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379830 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.16 posY: 4.18 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Foolishness fa777f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Foolishness fa777f.yaml index 1bd3f9501..b3e9a48e6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Foolishness fa777f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Foolishness fa777f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230502 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.78 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Forbidden Knowledge 80acd2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Forbidden Knowledge 80acd2.yaml index 02554d3b3..e565901f7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Forbidden Knowledge 80acd2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Forbidden Knowledge 80acd2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230316 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 32.98 posY: 3.33 posZ: -47.41 - rotX: 1 - rotY: 270 - rotZ: 2 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome (3) 2f4507.yaml b/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome (3) 2f4507.yaml index 9db96f634..c717f5b03 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome (3) 2f4507.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome (3) 2f4507.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538827 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.09 posY: 3.68 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome (3) f375bf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome (3) f375bf.yaml index f8564f304..3ab5e408a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome (3) f375bf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome (3) f375bf.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538828 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 5.46 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome 0a4d22.yaml b/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome 0a4d22.yaml index 168206aac..65227b861 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome 0a4d22.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome 0a4d22.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538808 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.14 posY: 3.76 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Forced Learning fa06f9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Forced Learning fa06f9.yaml index 290bebf97..7064afb06 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Forced Learning fa06f9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Forced Learning fa06f9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379021 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.15 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Foresight (1) c09a15.yaml b/unpacked/Bag All Player Cards 15bb07/Card Foresight (1) c09a15.yaml index 582176002..81dfece3b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Foresight (1) c09a15.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Foresight (1) c09a15.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379054 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.19 posY: 2.31 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Forewarned (1) c17f2c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Forewarned (1) c17f2c.yaml index 5ef5d6f7d..f707d1f31 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Forewarned (1) c17f2c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Forewarned (1) c17f2c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430636 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.16 posY: 3.52 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fortuitous Discovery dacbf0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fortuitous Discovery dacbf0.yaml index 93ccb01f5..37931b797 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fortuitous Discovery dacbf0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fortuitous Discovery dacbf0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 440627 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.15 posY: 3.97 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fortune or Fate (2) e674e8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fortune or Fate (2) e674e8.yaml index 85681cccf..3127d660f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fortune or Fate (2) e674e8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fortune or Fate (2) e674e8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 293015 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.01 posY: 3.76 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Foundation Intel a72f6f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Foundation Intel a72f6f.yaml index f8a33e572..aa6c8b9ec 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Foundation Intel a72f6f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Foundation Intel a72f6f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 588604 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 79.04 posY: 3.31 posZ: 27.62 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Four of Cups (1) dd4e2a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Four of Cups (1) dd4e2a.yaml index 1f519ae69..cf46722a6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Four of Cups (1) dd4e2a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Four of Cups (1) dd4e2a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430905 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.16 posY: 3.44 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Friends in Low Places c332af.yaml b/unpacked/Bag All Player Cards 15bb07/Card Friends in Low Places c332af.yaml index 9ba713d84..568fe86c8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Friends in Low Places c332af.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Friends in Low Places c332af.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379053 ColorDiffuse: @@ -61,11 +61,11 @@ Transform: posX: 16.67 posY: 3.39 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Frostbitten 8abd77.yaml b/unpacked/Bag All Player Cards 15bb07/Card Frostbitten 8abd77.yaml index 0b86a2c64..f2ef2b2ab 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Frostbitten 8abd77.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Frostbitten 8abd77.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450318 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 79.12 posY: 3.33 posZ: 7.26 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Galvanize (1) 9e7f6a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Galvanize (1) 9e7f6a.yaml index f5147b1f5..1cee9dc63 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Galvanize (1) 9e7f6a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Galvanize (1) 9e7f6a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545319 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.16 posY: 4.07 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gang Up (1) 09cc35.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gang Up (1) 09cc35.yaml index 140a3d83a..0d778c9ae 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gang Up (1) 09cc35.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gang Up (1) 09cc35.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379012 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 2.35 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Garrote Wire (2) b45c82.yaml b/unpacked/Bag All Player Cards 15bb07/Card Garrote Wire (2) b45c82.yaml index 330dcb0ce..8a067be9f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Garrote Wire (2) b45c82.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Garrote Wire (2) b45c82.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449034 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.98 posY: 3.71 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gate Box b8c891.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gate Box b8c891.yaml index f0a71181e..8562b6828 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gate Box b8c891.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gate Box b8c891.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 582507 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.08 posY: 3.69 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gavriella Mizrah 2237f4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gavriella Mizrah 2237f4.yaml index 5ba26f74d..7c0b842db 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gavriella Mizrah 2237f4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gavriella Mizrah 2237f4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 312511 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.77 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gaze of Ouraxsh (2) b7c316.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gaze of Ouraxsh (2) b7c316.yaml index 4b298bf98..a41074f80 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gaze of Ouraxsh (2) b7c316.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gaze of Ouraxsh (2) b7c316.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232103 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.2 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Geared Up 028cf7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Geared Up 028cf7.yaml index 4de46fa13..7a60a277f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Geared Up 028cf7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Geared Up 028cf7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379009 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.99 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Geas (2) b7223c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Geas (2) b7223c.yaml index b4b28b9dd..e8e6787df 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Geas (2) b7223c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Geas (2) b7223c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449604 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.09 posY: 3.71 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gené Beauregard (3) (Taboo) ab32db.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gené Beauregard (3) (Taboo) ab32db.yaml index 1d84020e7..9d4107884 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gené Beauregard (3) (Taboo) ab32db.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gené Beauregard (3) (Taboo) ab32db.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558204 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 21.85 posY: 4.65 posZ: -52.36 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gené Beauregard (3) 255aa3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gené Beauregard (3) 255aa3.yaml index c005c80e5..b60f9dd88 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gené Beauregard (3) 255aa3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gené Beauregard (3) 255aa3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378937 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.18 posY: 2.7 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Get behind me! 76270e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Get behind me! 76270e.yaml index 76d864e1e..98d410b25 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Get behind me! 76270e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Get behind me! 76270e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379011 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 2.35 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Get over here! (2) 415ca2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Get over here! (2) 415ca2.yaml index 10f3af895..f5b333094 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Get over here! (2) 415ca2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Get over here! (2) 415ca2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545321 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.05 posY: 3.89 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Get over here! 5b0f86.yaml b/unpacked/Bag All Player Cards 15bb07/Card Get over here! 5b0f86.yaml index d1a66b6f9..cba7f92c5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Get over here! 5b0f86.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Get over here! 5b0f86.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545312 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.17 posY: 3.13 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ghastly Possession 63282f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ghastly Possession 63282f.yaml index 2dcb29981..9da53bc53 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ghastly Possession 63282f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ghastly Possession 63282f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379114 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.7 posY: 3.35 posZ: 65.71 - rotX: 358 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ghastly Revelation b7c503.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ghastly Revelation b7c503.yaml index c8ccbc7e1..435aa668c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ghastly Revelation b7c503.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ghastly Revelation b7c503.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 592318 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.19 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gilded Volto d0e108.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gilded Volto d0e108.yaml index 82734d605..2a5651de8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gilded Volto d0e108.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gilded Volto d0e108.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 295604 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 4.66 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Girish Kadakia (4) bdd70d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Girish Kadakia (4) bdd70d.yaml index 28e254a90..ea82ca85b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Girish Kadakia (4) bdd70d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Girish Kadakia (4) bdd70d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379031 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.67 posY: 3.35 posZ: 65.93 - rotX: 357 - rotY: 270 - rotZ: 357 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 357.0 + rotY: 270.0 + rotZ: 357.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Glimpse the Unthinkable (1) 6e4d54.yaml b/unpacked/Bag All Player Cards 15bb07/Card Glimpse the Unthinkable (1) 6e4d54.yaml index e2d1fb50d..64c46f7ee 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Glimpse the Unthinkable (1) 6e4d54.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Glimpse the Unthinkable (1) 6e4d54.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538819 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.04 posY: 3.89 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Glimpse the Unthinkable (5) 090fcf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Glimpse the Unthinkable (5) 090fcf.yaml index 7cf0e07ce..f23dc74bc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Glimpse the Unthinkable (5) 090fcf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Glimpse the Unthinkable (5) 090fcf.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 591922 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.11 posY: 3.82 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gloria Goldberg 571596.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gloria Goldberg 571596.yaml index ce1c759b6..c4f748bb1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gloria Goldberg 571596.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gloria Goldberg 571596.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 270200 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 2.13 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Glory 273584.yaml b/unpacked/Bag All Player Cards 15bb07/Card Glory 273584.yaml index 41696358e..c887c69aa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Glory 273584.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Glory 273584.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545313 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.81 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Granny Orne (3) 52a66f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Granny Orne (3) 52a66f.yaml index 15c3df880..66712f307 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Granny Orne (3) 52a66f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Granny Orne (3) 52a66f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550825 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.72 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Granny Orne 1cccfe.yaml b/unpacked/Bag All Player Cards 15bb07/Card Granny Orne 1cccfe.yaml index 49bde5b10..7d4e682ea 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Granny Orne 1cccfe.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Granny Orne 1cccfe.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550806 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.08 posY: 3.68 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grappling Hook 09f1a2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grappling Hook 09f1a2.yaml index c83dd6037..3292e4f76 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grappling Hook 09f1a2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grappling Hook 09f1a2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379005 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 17.98 posY: 2.21 posZ: 59.36 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gravedigger's Shovel (2) 96a440.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gravedigger's Shovel (2) 96a440.yaml index 8507dd441..622a4c3d6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gravedigger's Shovel (2) 96a440.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gravedigger's Shovel (2) 96a440.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 440622 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.01 posY: 3.99 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gravedigger's Shovel 3fe6de.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gravedigger's Shovel 3fe6de.yaml index 6a6ad46b1..02195451c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gravedigger's Shovel 3fe6de.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gravedigger's Shovel 3fe6de.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368829 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.66 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Graveyard Ghouls 80b7c6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Graveyard Ghouls 80b7c6.yaml index 0ff541ed8..016ad9402 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Graveyard Ghouls 80b7c6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Graveyard Ghouls 80b7c6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 373819 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.92 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gray's Anatomy (5) f4e7f3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gray's Anatomy (5) f4e7f3.yaml index d0cde8ca0..b077f7e66 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gray's Anatomy (5) f4e7f3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gray's Anatomy (5) f4e7f3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379051 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.67 posY: 3.39 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Greed 0ca36f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Greed 0ca36f.yaml index 3d46173c4..7843be59c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Greed 0ca36f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Greed 0ca36f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379000 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.2 posY: 2.43 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Green Man Medallion c729ab.yaml b/unpacked/Bag All Player Cards 15bb07/Card Green Man Medallion c729ab.yaml index 6f037da37..3d04650fb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Green Man Medallion c729ab.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Green Man Medallion c729ab.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 371565 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.68 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Green Soapstone d36d80.yaml b/unpacked/Bag All Player Cards 15bb07/Card Green Soapstone d36d80.yaml index 21badb325..db009ee18 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Green Soapstone d36d80.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Green Soapstone d36d80.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450306 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 79.37 posY: 3.33 posZ: 7.63 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gregory Gry 90bf93.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gregory Gry 90bf93.yaml index 8f4b4cb66..3728df053 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gregory Gry 90bf93.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gregory Gry 90bf93.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 380029 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.02 posY: 4.03 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grete Wagner (3) b39b78.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grete Wagner (3) b39b78.yaml index 6117302ea..c599e8601 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grete Wagner (3) b39b78.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grete Wagner (3) b39b78.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545326 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.14 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grete Wagner f6dfe5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grete Wagner f6dfe5.yaml index 63e01848a..2cd36860f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grete Wagner f6dfe5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grete Wagner f6dfe5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545305 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.06 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grievous Wound d7c63c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grievous Wound d7c63c.yaml index 717737a35..2331048a4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grievous Wound d7c63c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grievous Wound d7c63c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379020 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 13.02 posY: 2.21 posZ: 51.63 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grim Memoir d1f1d9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grim Memoir d1f1d9.yaml index d13dff0ce..1b6c70199 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grim Memoir d1f1d9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grim Memoir d1f1d9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379037 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 16.67 posY: 3.4 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grimm's Fairy Tales 1d75d0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grimm's Fairy Tales 1d75d0.yaml index bed5bab7c..fc3b4b37c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grimm's Fairy Tales 1d75d0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grimm's Fairy Tales 1d75d0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550804 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.02 posY: 4.05 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem (3) 1433eb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem (3) 1433eb.yaml index 90c5e2377..bcf30bdf1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem (3) 1433eb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem (3) 1433eb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 293217 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.02 posY: 3.99 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem (3) 5fae20.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem (3) 5fae20.yaml index e2ba6278b..01ae14f33 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem (3) 5fae20.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem (3) 5fae20.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 293016 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.17 posY: 2.92 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem a20887.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem a20887.yaml index b8e678a1b..d80d8f90b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem a20887.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem a20887.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 277606 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.69 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grit Your Teeth a92a90.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grit Your Teeth a92a90.yaml index 2838da68b..8a89a19bb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grit Your Teeth a92a90.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grit Your Teeth a92a90.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550813 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 5.33 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grizzled 9417a7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grizzled 9417a7.yaml index 254a7be4d..1d6407f02 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grizzled 9417a7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grizzled 9417a7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379125 ColorDiffuse: @@ -57,11 +57,11 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grotesque Statue (2) 6b2e97.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grotesque Statue (2) 6b2e97.yaml index aa9a120fd..5888d724f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grotesque Statue (2) 6b2e97.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grotesque Statue (2) 6b2e97.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538719 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.13 posY: 5.52 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grotesque Statue (4) 07bc04.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grotesque Statue (4) 07bc04.yaml index 52c2f46e8..875dc7055 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grotesque Statue (4) 07bc04.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grotesque Statue (4) 07bc04.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230356 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 32.98 posY: 3.33 posZ: -47.41 - rotX: 1 - rotY: 270 - rotZ: 2 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grounded (1) 98fc57.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grounded (1) 98fc57.yaml index 9c1d2f096..5425a0f5a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grounded (1) 98fc57.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grounded (1) 98fc57.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230332 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.04 posY: 3.93 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grounded (3) edb064.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grounded (3) edb064.yaml index 30979b2c8..c1b974ba6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grounded (3) edb064.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grounded (3) edb064.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379059 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.19 posY: 2.37 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guard Dog (2) 9009db.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guard Dog (2) 9009db.yaml index 7d6d5c661..6f74736b9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guard Dog (2) 9009db.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guard Dog (2) 9009db.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379027 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 17.03 posY: 3.33 posZ: 65.98 - rotX: 357 - rotY: 270 - rotZ: 358 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 357.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guard Dog 001ae8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guard Dog 001ae8.yaml index a1b7dd39b..838e341cb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guard Dog 001ae8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guard Dog 001ae8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587201 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.92 posY: 3.31 posZ: 7.76 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guard Dog 08bdf1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guard Dog 08bdf1.yaml index 010bd43ca..f420e8d36 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guard Dog 08bdf1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guard Dog 08bdf1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226326 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 83.38 posY: 1.99 posZ: -10.39 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guardian Angel 3c0249.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guardian Angel 3c0249.yaml index 61f2d715d..a29e3c156 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guardian Angel 3c0249.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guardian Angel 3c0249.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 580500 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.69 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guardian of the Crystallizer aec357.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guardian of the Crystallizer aec357.yaml index 1ea8bbf82..cd9785416 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guardian of the Crystallizer aec357.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guardian of the Crystallizer aec357.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 440723 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.01 posY: 3.85 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guidance (1) 425841.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guidance (1) 425841.yaml index 16258809b..6e938c3e7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guidance (1) 425841.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guidance (1) 425841.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379046 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.67 posY: 3.4 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guidance bbfe9b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guidance bbfe9b.yaml index e0d5bf90a..48b09038e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guidance bbfe9b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guidance bbfe9b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368406 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.96 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guided by the Unseen (3) 477e79.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guided by the Unseen (3) 477e79.yaml index ab0aa77da..98e317648 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guided by the Unseen (3) 477e79.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guided by the Unseen (3) 477e79.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 590706 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.17 posY: 3.14 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guiding Spirit (1) 9375f4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guiding Spirit (1) 9375f4.yaml index a643cb1a6..29a987b4d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guiding Spirit (1) 9375f4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guiding Spirit (1) 9375f4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 588405 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.09 posY: 3.68 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gumption (1) 4cb0c9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gumption (1) 4cb0c9.yaml index a56182711..3406e391a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gumption (1) 4cb0c9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gumption (1) 4cb0c9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379136 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 16.72 posY: 3.37 posZ: 65.64 - rotX: 0 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guts (2) 219c78.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guts (2) 219c78.yaml index b8e9a593f..111d4cad5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guts (2) 219c78.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guts (2) 219c78.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538722 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.17 posY: 3.12 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guts 8f7289.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guts 8f7289.yaml index d2dea0260..fd9863a28 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guts 8f7289.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guts 8f7289.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368500 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hallow (3) (Taboo) 3a85c4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hallow (3) (Taboo) 3a85c4.yaml index aa4513d37..293be75eb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hallow (3) (Taboo) 3a85c4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hallow (3) (Taboo) 3a85c4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 585607 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.69 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hallow (3) e40802.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hallow (3) e40802.yaml index 722b9d38b..6eaf483a2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hallow (3) e40802.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hallow (3) e40802.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 589100 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.99 posY: 3.73 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hallowed Chalice 3fa5b8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hallowed Chalice 3fa5b8.yaml index b56aaafa8..265f81f42 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hallowed Chalice 3fa5b8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hallowed Chalice 3fa5b8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379108 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.67 posY: 3.38 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hallowed Mirror (3) 78858f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hallowed Mirror (3) 78858f.yaml index 3223bb926..854f3523a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hallowed Mirror (3) 78858f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hallowed Mirror (3) 78858f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449522 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.05 posY: 3.68 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hallowed Mirror 312d38.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hallowed Mirror 312d38.yaml index aef5734c3..3e16bc555 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hallowed Mirror 312d38.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hallowed Mirror 312d38.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378620 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.97 posY: 4.72 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hand of Fate 1ad931.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hand of Fate 1ad931.yaml index 60e86b884..bfc40526e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hand of Fate 1ad931.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hand of Fate 1ad931.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 588314 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.9 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Handcuffs (2) 07c480.yaml b/unpacked/Bag All Player Cards 15bb07/Card Handcuffs (2) 07c480.yaml index 49e8d4363..98c5d94b4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Handcuffs (2) 07c480.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Handcuffs (2) 07c480.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379028 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 17.02 posY: 3.38 posZ: 65.98 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Handcuffs 5f33be.yaml b/unpacked/Bag All Player Cards 15bb07/Card Handcuffs 5f33be.yaml index d89de96f6..c511eb1ae 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Handcuffs 5f33be.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Handcuffs 5f33be.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 313301 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.18 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks (2) 15643b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks (2) 15643b.yaml index 3869b67d0..0b25240a7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks (2) 15643b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks (2) 15643b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315242 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.16 posY: 4.16 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks (4) 9565f0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks (4) 9565f0.yaml index eb8bafbbd..d0c1115fe 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks (4) 9565f0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks (4) 9565f0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449605 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.16 posY: 3.87 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks 132069.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks 132069.yaml index de2c47e32..a02821dc5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks 132069.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks 132069.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587207 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.81 posY: 3.32 posZ: 7.67 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks 68744b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks 68744b.yaml index 92fa1b5e5..c4d6a1213 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks 68744b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks 68744b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368623 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.08 posY: 3.68 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Harmony Restored (2) 7885cf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Harmony Restored (2) 7885cf.yaml index b5e26cabe..dd46e62b6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Harmony Restored (2) 7885cf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Harmony Restored (2) 7885cf.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 580010 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.81 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Harvey Walters 1fa944.yaml b/unpacked/Bag All Player Cards 15bb07/Card Harvey Walters 1fa944.yaml index 36af8beb9..ae9b2a130 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Harvey Walters 1fa944.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Harvey Walters 1fa944.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 234901 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.6 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Harvey Walters 2d6db0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Harvey Walters 2d6db0.yaml index 65d860ce1..3ccd03a6a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Harvey Walters 2d6db0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Harvey Walters 2d6db0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 274217 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 2.2 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Haste (2) 1bd139.yaml b/unpacked/Bag All Player Cards 15bb07/Card Haste (2) 1bd139.yaml index 4eb884394..42374b55d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Haste (2) 1bd139.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Haste (2) 1bd139.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 447632 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 5.13 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hatchet Man 857238.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hatchet Man 857238.yaml index 1a842aa07..617d8b524 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hatchet Man 857238.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hatchet Man 857238.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 261704 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.12 posY: 4.07 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Haunted 249d83.yaml b/unpacked/Bag All Player Cards 15bb07/Card Haunted 249d83.yaml index cec522d44..de74f1fad 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Haunted 249d83.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Haunted 249d83.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 527402 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 78.8 posY: 3.32 posZ: 26.95 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hawk-Eye Folding Camera 5ada0a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hawk-Eye Folding Camera 5ada0a.yaml index 3570e7175..82e8104b0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hawk-Eye Folding Camera 5ada0a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hawk-Eye Folding Camera 5ada0a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 277813 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.83 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Headdress of Y'ha-nthlei e44c96.yaml b/unpacked/Bag All Player Cards 15bb07/Card Headdress of Y'ha-nthlei e44c96.yaml index daeb5677f..f5c63a42d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Headdress of Y'ha-nthlei e44c96.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Headdress of Y'ha-nthlei e44c96.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 451114 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 5.51 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Healing Words (3) f2726b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Healing Words (3) f2726b.yaml index a08da64a1..3e9c693a8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Healing Words (3) f2726b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Healing Words (3) f2726b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379058 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.19 posY: 2.35 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Healing Words bba97a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Healing Words bba97a.yaml index 54142af4f..a96e19ae9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Healing Words bba97a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Healing Words bba97a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 380127 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.15 posY: 3.67 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Heavy Furs 275450.yaml b/unpacked/Bag All Player Cards 15bb07/Card Heavy Furs 275450.yaml index fade05b01..e15c099ff 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Heavy Furs 275450.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Heavy Furs 275450.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378913 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.18 posY: 2.94 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Heed the Dream (2) 3b7419.yaml b/unpacked/Bag All Player Cards 15bb07/Card Heed the Dream (2) 3b7419.yaml index 98f45bddb..39d065b3e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Heed the Dream (2) 3b7419.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Heed the Dream (2) 3b7419.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379139 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Heirloom of Hyperborea bf151d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Heirloom of Hyperborea bf151d.yaml index 79fa87d2e..a41417e63 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Heirloom of Hyperborea bf151d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Heirloom of Hyperborea bf151d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 585400 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.01 posY: 3.69 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Heirloom of Hyperborea e929f9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Heirloom of Hyperborea e929f9.yaml index c85eee8a9..aaa6981de 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Heirloom of Hyperborea e929f9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Heirloom of Hyperborea e929f9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 290422 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Helping Hand 7d93b4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Helping Hand 7d93b4.yaml index f6b6c209b..34ca15147 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Helping Hand 7d93b4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Helping Hand 7d93b4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379024 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 17.03 posY: 3.32 posZ: 65.98 - rotX: 356 - rotY: 270 - rotZ: 358 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 356.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hemispheric Map (3) d2663c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hemispheric Map (3) d2663c.yaml index cc2da58c8..85dbae619 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hemispheric Map (3) d2663c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hemispheric Map (3) d2663c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 261101 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.16 posY: 4.17 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Henry Wan 9df9df.yaml b/unpacked/Bag All Player Cards 15bb07/Card Henry Wan 9df9df.yaml index 8cbef2d32..b06167b15 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Henry Wan 9df9df.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Henry Wan 9df9df.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 277709 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.99 posY: 3.81 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Heroic Rescue (2) 93381d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Heroic Rescue (2) 93381d.yaml index 1618392c7..53b3d5190 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Heroic Rescue (2) 93381d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Heroic Rescue (2) 93381d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 447934 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.04 posY: 3.95 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Heroic Rescue bb0f6a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Heroic Rescue bb0f6a.yaml index fbe7fb146..f368cdfe4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Heroic Rescue bb0f6a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Heroic Rescue bb0f6a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226311 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.76 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hidden Pocket 9bef61.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hidden Pocket 9bef61.yaml index 7cd2f07c7..cd544bd02 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hidden Pocket 9bef61.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hidden Pocket 9bef61.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379058 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 358 - rotY: 270 - rotZ: 358 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hiding Spot dd130e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hiding Spot dd130e.yaml index c29547ad0..d35b76c71 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hiding Spot dd130e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hiding Spot dd130e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368808 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.72 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card High Roller (2) ce1b89.yaml b/unpacked/Bag All Player Cards 15bb07/Card High Roller (2) ce1b89.yaml index 55cc84eb9..ed7ce26bf 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card High Roller (2) ce1b89.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card High Roller (2) ce1b89.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315247 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.05 posY: 3.86 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Higher Education (3) (Taboo) 833501.yaml b/unpacked/Bag All Player Cards 15bb07/Card Higher Education (3) (Taboo) 833501.yaml index af3bd5567..c81c2c785 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Higher Education (3) (Taboo) 833501.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Higher Education (3) (Taboo) 833501.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450604 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.15 posY: 4.11 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Higher Education (3) d48b25.yaml b/unpacked/Bag All Player Cards 15bb07/Card Higher Education (3) d48b25.yaml index 23ece4200..9077036df 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Higher Education (3) d48b25.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Higher Education (3) d48b25.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430649 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.16 posY: 3.71 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Higher Education 8595fb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Higher Education 8595fb.yaml index 251b3cfcd..9935765b1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Higher Education 8595fb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Higher Education 8595fb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538809 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.17 posY: 3.14 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hiking Boots (1) b03e83.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hiking Boots (1) b03e83.yaml index c6e98f85a..f81b9bfae 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hiking Boots (1) b03e83.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hiking Boots (1) b03e83.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379025 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.21 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hired Muscle (1) cdd6aa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hired Muscle (1) cdd6aa.yaml index f282dcb6c..7ac3f1045 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hired Muscle (1) cdd6aa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hired Muscle (1) cdd6aa.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315234 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.02 posY: 4.0 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hit and Run 408bce.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hit and Run 408bce.yaml index 532ae2953..8321f8861 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hit and Run 408bce.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hit and Run 408bce.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379059 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 358 - rotY: 270 - rotZ: 358 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hit me! 431c15.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hit me! 431c15.yaml index 02cbb801c..75ad93aed 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hit me! 431c15.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hit me! 431c15.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378950 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 3.06 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Holy Rosary (2) 2d2246.yaml b/unpacked/Bag All Player Cards 15bb07/Card Holy Rosary (2) 2d2246.yaml index cf8ca2838..1ddb62b9d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Holy Rosary (2) 2d2246.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Holy Rosary (2) 2d2246.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 579300 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.88 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Holy Rosary fa1d67.yaml b/unpacked/Bag All Player Cards 15bb07/Card Holy Rosary fa1d67.yaml index 675923474..5f9f606ed 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Holy Rosary fa1d67.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Holy Rosary fa1d67.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230323 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 32.98 posY: 3.33 posZ: -47.41 - rotX: 1 - rotY: 270 - rotZ: 2 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Holy Spear (5) 28289a.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Holy Spear (5) 28289a.ttslua index 9347ec579..a49dbfa29 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Holy Spear (5) 28289a.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Holy Spear (5) 28289a.ttslua @@ -1,93 +1,349 @@ -function onload() - mode = "Bless" - chaosbag = getChaosBag() - manager = getObjectFromGUID("5933fb") - sealedTokens = { } - IMAGE_TOKEN_MAP = { } - for i,v in pairs(Global.getVar("IMAGE_TOKEN_MAP")) do - IMAGE_TOKEN_MAP[i] = v - end +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} - -- add menu items - self.clearContextMenu() - self.addContextMenuItem("Release Token", releaseTokens, true) - for url,name in pairs(IMAGE_TOKEN_MAP) do - if name == mode then - self.addContextMenuItem("Seal 2 " .. mode, function(playerColor) sealToken(url, playerColor) end, true) - end - end + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("playercards/CardsThatSealTokens", function(require, _LOADED, __bundle_register, __bundle_modules) +--[[ Library for cards that seal tokens +This file is used to add sealing option to cards' context menu. +Valid options (set before requiring this file): + +UPDATE_ON_HOVER --@type: boolean + - automatically updates the context menu options when the card is hovered + - the "Read Bag" function reads the content of the chaos bag to update the context menu + - example usage: "Unrelenting" (to only display valid tokens) + +SHOW_SINGLE_RELEASE --@type: boolean + - enables an entry in the context menu + - this entry allows releasing a single token + - example usage: "Holy Spear" (to keep the other tokens and just release one) + +SHOW_MULTI_RELEASE --@type: number (amount of tokens to release at once) + - enables an entry in the context menu + - this enty allows releasing of multiple tokens at once + - example usage: "Nephthys" (to release 3 bless tokens at once) + +SHOW_MULTI_SEAL --@type: number (amount of tokens to seal at once) + - enables an entry in the context menu + - this entry allows sealing of multiple tokens at once + - example usage: "Holy Spear" (to seal two bless tokens at once) + +VALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens should be abled to be sealed + - needs to be defined for each card -> even if empty + - example usage: "The Chthonian Stone" + > VALID_TOKENS = { + > ["Skull"] = true, + > ["Cultist"] = true, + > ["Tablet"] = true, + > ["Elder Thing"] = true, + > } + +INVALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens are invalid for sealing + - only needs to be defined if needed + - usually combined with empty "VALID_TOKENS" table + - example usage: "Protective Incantation" (not allowed to seal Auto-fail) + +---------------------------------------------------------- +Example 1: Crystalline Elder Sign +This card can only seal the "+1" or "Elder Sign" token, +it does not need specific options for multi-sealing or releasing. +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["+1"] = true, +> ["Elder Sign"] = true +> } +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +---------------------------------------------------------- +Example 2: Holy Spear +This card features the following abilities (just listing the relevant parts): +- releasing a single bless token +- sealing two bless tokens +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["Bless"] = true +> } +> SHOW_SINGLE_RELEASE = true +> SHOW_MULTI_SEAL = 2 +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +----------------------------------------------------------]] + +local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi") +local tokenArrangerApi = require("accessories/TokenArrangerApi") +local sealedTokens = {} +local ID_URL_MAP = {} +local tokensInBag = {} + +function onSave() return JSON.encode(sealedTokens) end + +function onLoad(savedData) + sealedTokens = JSON.decode(savedData) or {} + ID_URL_MAP = Global.getTable("ID_URL_MAP") + generateContextMenu() end -function sealToken(url, playerColor) - local pos = self.getPosition() +-- builds the context menu +function generateContextMenu() + -- conditional single or multi release options + if SHOW_SINGLE_RELEASE then + self.addContextMenuItem("Release token", releaseOneToken) + elseif SHOW_MULTI_RELEASE then + self.addContextMenuItem("Release " .. SHOW_MULTI_RELEASE .. " token(s)", releaseMultipleTokens) + else + self.addContextMenuItem("Release token(s)", releaseAllTokens) + end - local name = IMAGE_TOKEN_MAP[url] - local indexes = {} + -- main context menu options to seal tokens + for _, map in pairs(ID_URL_MAP) do + if (VALID_TOKENS[map.name] ~= nil) or (UPDATE_ON_HOVER and tokensInBag[map.name] and not INVALID_TOKENS[map.name]) then + if not SHOW_MULTI_SEAL then + self.addContextMenuItem("Seal " .. map.name, function(playerColor) + sealToken(map.name, playerColor) + end) + else + self.addContextMenuItem("Seal " .. SHOW_MULTI_SEAL .. " " .. map.name, function(playerColor) + readBag() + local allowed = true + local notFound - for i,obj in ipairs(chaosbag.getObjects()) do - if obj.name == name then - table.insert(indexes, obj.index) - end - end - if #indexes < 2 then - printToColor("Fewer than 2 " .. name .. " tokens in bag", playerColor) - return - end - table.sort(indexes) - chaosbag.takeObject({ - position={ pos.x, pos.y + 1, pos.z }, - index=indexes[#indexes], - smooth=false, - callback_function=_sealToken - }) - chaosbag.takeObject({ - position={ pos.x, pos.y + 2, pos.z }, - index=indexes[#indexes-1], - smooth=false, - callback_function=_sealToken - }) -end - -function _sealToken(obj) - table.insert(sealedTokens, obj) - local guid = obj.getGUID() - local tokensTaken = manager.getVar("tokensTaken") - table.insert(tokensTaken[mode], guid) - manager.setVar("tokensTaken", tokensTaken) - manager.setVar("mode", mode) - printToAll("Sealing " .. mode .. " token " .. manager.call("getTokenCount")) -end - -function releaseTokens(playerColor) - if #sealedTokens == 0 then return end - local token = sealedTokens[#sealedTokens] - if token ~= nil then - local guid = token.getGUID() - chaosbag.putObject(token) - local tokensTaken = manager.getVar("tokensTaken") - for i,v in ipairs(tokensTaken[mode]) do - if v == guid then - table.remove(tokensTaken[mode], i) - break + for name, _ in pairs(VALID_TOKENS) do + if (tokensInBag[name] or 0) < SHOW_MULTI_SEAL then + allowed = false + notFound = name end - end - manager.setVar("tokensTaken", tokensTaken) - manager.setVar("mode", mode) - printToAll("Releasing " .. mode .. " token" .. manager.call("getTokenCount")) - end + end - table.remove(sealedTokens) + if allowed then + for i = 1, SHOW_MULTI_SEAL do + sealToken(map.name, playerColor) + end + else + printToColor("Not enough " .. notFound .. " tokens in the chaos bag.", playerColor) + end + end) + end + end + end end -function getChaosBag() - local items = getObjectFromGUID("83ef06").getObjects() - local chaosbag = nil - for i,v in ipairs(items) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break +-- generates a list of chaos tokens that is in the chaos bag +function readBag() + local chaosbag = Global.call("findChaosBag") + tokensInBag = {} + + for _, token in ipairs(chaosbag.getObjects()) do + tokensInBag[token.name] = (tokensInBag[token.name] or 0) + 1 + end +end + +-- native event from TTS - used to update the context menu for cards like "Unrelenting" +function onHover() + if UPDATE_ON_HOVER then + readBag() + self.clearContextMenu() + generateContextMenu() + end +end + +-- seals the named token on this card +function sealToken(name, playerColor) + if not Global.call("canTouchChaosTokens") then return end + local chaosbag = Global.call("findChaosBag") + for i, obj in ipairs(chaosbag.getObjects()) do + if obj.name == name then + chaosbag.takeObject({ + position = self.getPosition() + Vector(0, 0.5 + 0.1 * #sealedTokens, 0), + rotation = self.getRotation(), + index = i - 1, + smooth = false, + callback_function = function(token) + local guid = token.getGUID() + table.insert(sealedTokens, guid) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.sealedToken(name, guid) + end end + }) + return end - if chaosbag == nil then printToAll("No chaos bag found") end - return chaosbag -end \ No newline at end of file + end + printToColor(name .. " token not found in chaos bag", playerColor) +end + +-- release the last sealed token +function releaseOneToken(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token", playerColor) + putTokenAway(table.remove(sealedTokens)) + end +end + +-- release multiple tokens at once +function releaseMultipleTokens(playerColor) + if SHOW_MULTI_RELEASE >= #sealedTokens then + for i = 1, SHOW_MULTI_RELEASE do + releaseOneToken(playerColor) + end + else + printToColor("Not enough " .. name .. " tokens sealed.", playerColor) + end +end + +-- releases all sealed tokens +function releaseAllTokens(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token(s)", playerColor) + for _, guid in ipairs(sealedTokens) do + putTokenAway(guid) + end + sealedTokens = {} + end +end + +-- returns the token (referenced by GUID) to the chaos bag +function putTokenAway(guid) + local token = getObjectFromGUID(guid) + if not token then return end + + local name = token.getName() + local chaosbag = Global.call("findChaosBag") + chaosbag.putObject(token) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.releasedToken(name, guid) + end +end +end) +__bundle_register("accessories/TokenArrangerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenArrangerApi = {} + + -- local function to call the token arranger, if it is on the table + ---@param functionName String Name of the function to cal + ---@param argument Variant Parameter to pass + local function callIfExistent(functionName, argument) + local tokenArranger = getObjectsWithTag("TokenArranger")[1] + if tokenArranger ~= nil then + tokenArranger.call(functionName, argument) + end + end + + -- updates the token modifiers with the provided data + ---@param tokenData Table Contains the chaos token metadata + TokenArrangerApi.onTokenDataChanged = function(fullData) + callIfExistent("onTokenDataChanged", fullData) + end + + -- deletes already laid out tokens + TokenArrangerApi.deleteCopiedTokens = function() + callIfExistent("deleteCopiedTokens") + end + + -- updates the laid out tokens + TokenArrangerApi.layout = function() + Wait.time(function() callIfExistent("layout") end, 0.1) + end + + return TokenArrangerApi +end +end) +__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local BlessCurseManagerApi = {} + local MANAGER_GUID = "5933fb" + + -- removes all taken tokens and resets the counts + BlessCurseManagerApi.removeTakenTokensAndReset = function() + local BlessCurseManager = getObjectFromGUID(MANAGER_GUID) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10) + Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.sealedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("sealedToken", { type = type, guid = guid }) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.releasedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("releasedToken", { type = type, guid = guid }) + end + + -- broadcasts the current status for bless/curse tokens + ---@param playerColor String Color of the player to show the broadcast to + BlessCurseManagerApi.broadcastStatus = function(playerColor) + getObjectFromGUID(MANAGER_GUID).call("broadcastStatus", playerColor) + end + + -- adds Wendy's menu to the hovered card (allows sealing of tokens) + ---@param color String Color of the player to show the broadcast to + BlessCurseManagerApi.addWendysMenu = function(playerColor, hoveredObject) + getObjectFromGUID(MANAGER_GUID).call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject }) + end + + return BlessCurseManagerApi +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/HolySpear5") +end) +__bundle_register("playercards/cards/HolySpear5", function(require, _LOADED, __bundle_register, __bundle_modules) +VALID_TOKENS = { + ["Bless"] = true +} + +SHOW_SINGLE_RELEASE = true +SHOW_MULTI_SEAL = 2 + +require("playercards/CardsThatSealTokens") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Holy Spear (5) 28289a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Holy Spear (5) 28289a.yaml index ff13b7de0..e17d6036e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Holy Spear (5) 28289a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Holy Spear (5) 28289a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 590001 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 4.16 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Honed Instinct 1cde62.yaml b/unpacked/Bag All Player Cards 15bb07/Card Honed Instinct 1cde62.yaml index 655c76687..b9c213b08 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Honed Instinct 1cde62.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Honed Instinct 1cde62.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379054 ColorDiffuse: @@ -63,11 +63,11 @@ Transform: posX: 16.67 posY: 3.38 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hoods 785f68.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hoods 785f68.yaml index 51136ecc7..dc9ba2048 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hoods 785f68.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hoods 785f68.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378863 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.78 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hope 45c582.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hope 45c582.yaml index 362c48918..7294764a2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hope 45c582.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hope 45c582.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 440624 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.9 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hospital Debts 47d6c9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hospital Debts 47d6c9.yaml index 916998c16..6c5c521ac 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hospital Debts 47d6c9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hospital Debts 47d6c9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 431425 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hot Streak (2) f2508d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hot Streak (2) f2508d.yaml index d80cc2967..d59bae243 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hot Streak (2) f2508d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hot Streak (2) f2508d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315250 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.84 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hot Streak (4) 4eb231.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hot Streak (4) 4eb231.yaml index ed2b9e285..b55f453e1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hot Streak (4) 4eb231.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hot Streak (4) 4eb231.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315258 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hunter's Armor a85f1d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hunter's Armor a85f1d.yaml index e9cead412..8c28b96ee 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hunter's Armor a85f1d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hunter's Armor a85f1d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379014 ColorDiffuse: @@ -62,11 +62,11 @@ Transform: posX: 10.38 posY: 2.2 posZ: 45.51 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness (2) 23c3e5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness (2) 23c3e5.yaml index 5e9448a9e..522c3672a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness (2) 23c3e5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness (2) 23c3e5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430644 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.99 posY: 3.8 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness (4) 78adda.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness (4) 78adda.yaml index 57003c43a..0e08c6766 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness (4) 78adda.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness (4) 78adda.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449603 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.0 posY: 3.93 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness e5dd39.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness e5dd39.yaml index 9cff9de01..67f4d2a9e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness e5dd39.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness e5dd39.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368424 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.99 posY: 3.38 posZ: -56.89 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hyperphysical Shotcaster 2a6e0d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hyperphysical Shotcaster 2a6e0d.yaml index c0fcda151..84eb1486c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hyperphysical Shotcaster 2a6e0d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hyperphysical Shotcaster 2a6e0d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379143 ColorDiffuse: @@ -70,11 +70,11 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Gaze (2) e2bc49.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Gaze (2) e2bc49.yaml index b9e938790..3938ae641 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Gaze (2) e2bc49.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Gaze (2) e2bc49.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538721 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.8 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Gaze 8f3c8e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Gaze 8f3c8e.yaml index 502fa76ce..1e3868650 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Gaze 8f3c8e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Gaze 8f3c8e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230313 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.14 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Therapy 7f1b48.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Therapy 7f1b48.yaml index f08ddbc4c..4c4b8682b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Therapy 7f1b48.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Therapy 7f1b48.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 591753 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.72 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hypochondria 88ee43.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hypochondria 88ee43.yaml index 8df0049e6..806461d9a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hypochondria 88ee43.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hypochondria 88ee43.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 527404 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 79.05 posY: 3.32 posZ: 27.23 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card I'll see you in hell! 84ba9d.yaml b/unpacked/Bag All Player Cards 15bb07/Card I'll see you in hell! 84ba9d.yaml index 81951e206..c63eb1ae3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card I'll see you in hell! 84ba9d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card I'll see you in hell! 84ba9d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226307 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.05 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card I'll take that! 691652.yaml b/unpacked/Bag All Player Cards 15bb07/Card I'll take that! 691652.yaml index cb9b010bf..962fbab67 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card I'll take that! 691652.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card I'll take that! 691652.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379060 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.67 posY: 3.35 posZ: 65.93 - rotX: 358 - rotY: 270 - rotZ: 357 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 357.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card I'm done runnin'! d8a324.yaml b/unpacked/Bag All Player Cards 15bb07/Card I'm done runnin'! d8a324.yaml index 85557f271..6055945fe 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card I'm done runnin'! d8a324.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card I'm done runnin'! d8a324.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378762 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.15 posY: 4.11 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card I'm outta here! 62cf25.yaml b/unpacked/Bag All Player Cards 15bb07/Card I'm outta here! 62cf25.yaml index 960afc0b5..01c0f0d07 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card I'm outta here! 62cf25.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card I'm outta here! 62cf25.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368707 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 5.01 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card I've got a plan! (2) 344e90.yaml b/unpacked/Bag All Player Cards 15bb07/Card I've got a plan! (2) 344e90.yaml index d18f9b916..c187b9d8f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card I've got a plan! (2) 344e90.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card I've got a plan! (2) 344e90.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538823 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.09 posY: 3.69 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card I've got a plan! acd0da.yaml b/unpacked/Bag All Player Cards 15bb07/Card I've got a plan! acd0da.yaml index 1bdbf1645..abf1c3531 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card I've got a plan! acd0da.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card I've got a plan! acd0da.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368418 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 5.2 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card I've had worse (4) 3b6834.yaml b/unpacked/Bag All Player Cards 15bb07/Card I've had worse (4) 3b6834.yaml index f6589e14e..c2a42996d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card I've had worse (4) 3b6834.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card I've had worse (4) 3b6834.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226355 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 19.1 posY: 3.37 posZ: -57.68 - rotX: 0 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card I've had worse... (2) 76147b.yaml b/unpacked/Bag All Player Cards 15bb07/Card I've had worse... (2) 76147b.yaml index 48ae6816d..a55aa7b0f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card I've had worse... (2) 76147b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card I've had worse... (2) 76147b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378619 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.79 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ice Pick (1) 8b065c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ice Pick (1) 8b065c.yaml index b4b289c77..d8f5921a2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ice Pick (1) 8b065c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ice Pick (1) 8b065c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378943 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.18 posY: 2.72 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ice Pick (3) 70f9f7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ice Pick (3) 70f9f7.yaml index 3e48c160f..d352e0e57 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ice Pick (3) 70f9f7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ice Pick (3) 70f9f7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378945 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.18 posY: 2.87 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ichtaca 29fc24.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ichtaca 29fc24.yaml index 6aca83a28..d9b24f8eb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ichtaca 29fc24.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ichtaca 29fc24.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 235648 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.08 posY: 3.73 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Idol of Xanatos 8f6f39.yaml b/unpacked/Bag All Player Cards 15bb07/Card Idol of Xanatos 8f6f39.yaml index ab86e8e88..46cfcc491 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Idol of Xanatos 8f6f39.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Idol of Xanatos 8f6f39.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379126 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.72 posY: 3.38 posZ: 65.64 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card If it bleeds... acf2b0.yaml b/unpacked/Bag All Player Cards 15bb07/Card If it bleeds... acf2b0.yaml index 1dfa99783..a4f6d322c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card If it bleeds... acf2b0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card If it bleeds... acf2b0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226312 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 96.32 posY: 1.99 posZ: 18.18 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ikiaq (3) 9d7d4a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ikiaq (3) 9d7d4a.yaml index b55993519..1ada111be 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ikiaq (3) 9d7d4a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ikiaq (3) 9d7d4a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449606 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.88 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Impromptu Barrier 9591ac.yaml b/unpacked/Bag All Player Cards 15bb07/Card Impromptu Barrier 9591ac.yaml index 990c0648c..dd58207fa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Impromptu Barrier 9591ac.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Impromptu Barrier 9591ac.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430503 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 4.03 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Improvisation 9aee7f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Improvisation 9aee7f.yaml index 1df399eb3..591d04567 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Improvisation 9aee7f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Improvisation 9aee7f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 374834 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 1.99 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Improvised Shield 616c43.yaml b/unpacked/Bag All Player Cards 15bb07/Card Improvised Shield 616c43.yaml index b8c143ff4..c5f74c6e7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Improvised Shield 616c43.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Improvised Shield 616c43.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379127 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.72 posY: 3.38 posZ: 65.64 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Improvised Weapon 30f90b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Improvised Weapon 30f90b.yaml index 7d5085fc4..757690d82 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Improvised Weapon 30f90b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Improvised Weapon 30f90b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368811 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.04 posY: 3.91 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card In the Know (1) 7b42b6.yaml b/unpacked/Bag All Player Cards 15bb07/Card In the Know (1) 7b42b6.yaml index 71040bbaf..d9bafdea1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card In the Know (1) 7b42b6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card In the Know (1) 7b42b6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430640 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.13 posY: 5.56 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card In the Shadows 2561b9.yaml b/unpacked/Bag All Player Cards 15bb07/Card In the Shadows 2561b9.yaml index 6f7cd2d3e..682e9f572 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card In the Shadows 2561b9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card In the Shadows 2561b9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 582904 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.11 posY: 4.01 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card In the Thick of It bdd102.yaml b/unpacked/Bag All Player Cards 15bb07/Card In the Thick of It bdd102.yaml index 25f803f70..c40d2a46a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card In the Thick of It bdd102.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card In the Thick of It bdd102.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378912 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.18 posY: 2.94 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Indebted b2ef43.yaml b/unpacked/Bag All Player Cards 15bb07/Card Indebted b2ef43.yaml index 0e55f6635..6b6409cbe 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Indebted b2ef43.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Indebted b2ef43.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 431205 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.09 posY: 3.69 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth (3) 943332.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth (3) 943332.yaml index 820f9e7ba..53865b2d4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth (3) 943332.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth (3) 943332.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538725 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.17 posY: 3.08 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth (5) f00301.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth (5) f00301.yaml index ae931317e..2b8eff710 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth (5) f00301.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth (5) f00301.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538730 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.1 posY: 3.73 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth c6caf6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth c6caf6.yaml index e2cbb6f3e..b064e802e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth c6caf6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth c6caf6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538707 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.14 posY: 3.68 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Infighting (3) c803ba.yaml b/unpacked/Bag All Player Cards 15bb07/Card Infighting (3) c803ba.yaml index 791de7148..d16fc9433 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Infighting (3) c803ba.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Infighting (3) c803ba.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368854 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.04 posY: 3.9 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Inquiring Mind 5c3aea.yaml b/unpacked/Bag All Player Cards 15bb07/Card Inquiring Mind 5c3aea.yaml index c7027e203..fbd59830f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Inquiring Mind 5c3aea.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Inquiring Mind 5c3aea.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368401 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 5.29 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Inspector Flint 8247a5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Inspector Flint 8247a5.yaml index 75f14f508..cb5e2fb2b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Inspector Flint 8247a5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Inspector Flint 8247a5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 588600 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 79.04 posY: 3.3 posZ: 25.34 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Inspiring Presence 80628f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Inspiring Presence 80628f.yaml index 7106e5ab9..bbd0c8fad 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Inspiring Presence 80628f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Inspiring Presence 80628f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226301 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 5.08 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Intel Report 5115d9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Intel Report 5115d9.yaml index e40999fe0..f6e8677ad 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Intel Report 5115d9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Intel Report 5115d9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 277710 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.76 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Internal Injury 4fb446.yaml b/unpacked/Bag All Player Cards 15bb07/Card Internal Injury 4fb446.yaml index 17a38a202..994bd9da8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Internal Injury 4fb446.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Internal Injury 4fb446.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 431206 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.09 posY: 3.69 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Interrogate c70ad8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Interrogate c70ad8.yaml index e42ae36f3..283cfb1bf 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Interrogate c70ad8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Interrogate c70ad8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 431008 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.05 posY: 3.86 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Intrepid 99d061.yaml b/unpacked/Bag All Player Cards 15bb07/Card Intrepid 99d061.yaml index 6a7166214..f647fd565 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Intrepid 99d061.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Intrepid 99d061.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226304 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.77 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Investments b65011.yaml b/unpacked/Bag All Player Cards 15bb07/Card Investments b65011.yaml index b4f11f254..e10169271 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Investments b65011.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Investments b65011.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 292913 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.03 posY: 3.67 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Isamara Ordoñez 860cd7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Isamara Ordoñez 860cd7.yaml index 193b6b12b..3162fdfb8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Isamara Ordoñez 860cd7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Isamara Ordoñez 860cd7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550927 ColorDiffuse: @@ -19,7 +19,9 @@ CustomDeck: UniqueBack: false Description: The Torch Singer DragSelectable: true -GMNotes: '' +GMNotes: "{\n \"id\": \"88044\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n + \ \"cost\": 3,\n \"traits\": \"Ally. Performer.\",\n \"willpowerIcons\": 1,\n + \ \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}" GUID: 860cd7 Grid: true GridProjection: false @@ -37,17 +39,18 @@ SidewaysCard: false Snap: true Sticky: true Tags: +- Asset - PlayerCard Tooltip: true Transform: - posX: 78.87 - posY: 3.28 - posZ: 27.32 - rotX: 358 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + posX: 78.39 + posY: 3.24 + posZ: 26.74 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jacob Morrison (3) aa38d0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jacob Morrison (3) aa38d0.yaml index 3f131ee26..b87c2728c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jacob Morrison (3) aa38d0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jacob Morrison (3) aa38d0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 589808 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.98 posY: 3.32 posZ: 8.45 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jacqueline Fine 9b0378.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jacqueline Fine 9b0378.yaml index 0faece784..6ae24443f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jacqueline Fine 9b0378.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jacqueline Fine 9b0378.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 274219 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 2.06 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jacqueline Fine a2cd75.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jacqueline Fine a2cd75.yaml index 92a568f75..c89d3ade8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jacqueline Fine a2cd75.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jacqueline Fine a2cd75.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 234903 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.74 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jake Williams 7c958e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jake Williams 7c958e.yaml index 234e32a52..57fa01448 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jake Williams 7c958e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jake Williams 7c958e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 377343 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.75 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes 48b174.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes 48b174.yaml index 921cc1ac8..36ae6abe5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes 48b174.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes 48b174.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 259007 ColorDiffuse: @@ -39,9 +39,9 @@ Snap: true States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 273410 ColorDiffuse: @@ -85,10 +85,10 @@ States: posY: 1.49510384 posZ: 25.2808552 rotX: 2.695551e-07 - rotY: 270 + rotY: 270.0 rotZ: -3.71707358e-07 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' @@ -100,11 +100,11 @@ Transform: posX: 26.57 posY: 3.69 posZ: -9.61 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes 9058d3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes 9058d3.yaml index 53ebb10b8..75c76a782 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes 9058d3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes 9058d3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450104 ColorDiffuse: @@ -41,9 +41,9 @@ Snap: true States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 273631 ColorDiffuse: @@ -90,10 +90,10 @@ States: posY: 1.49510384 posZ: 21.4800034 rotX: 5.375201e-08 - rotY: 180 + rotY: 180.0 rotZ: -3.88488473e-07 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' @@ -106,11 +106,11 @@ Transform: posX: 26.93 posY: 3.69 posZ: -2.77 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jenny's Twin .45s d87128.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jenny's Twin .45s d87128.yaml index 851ebfbfb..7b4f96801 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jenny's Twin .45s d87128.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jenny's Twin .45s d87128.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 371308 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.01 posY: 3.86 posZ: -16.7 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jeremiah Kirby (Taboo) 71e4a0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jeremiah Kirby (Taboo) 71e4a0.yaml index db2fbba95..4923887fd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jeremiah Kirby (Taboo) 71e4a0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jeremiah Kirby (Taboo) 71e4a0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558203 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 21.61 posY: 4.32 posZ: -55.3 - rotX: 0 - rotY: 270 - rotZ: 3 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jeremiah Kirby 98e5f5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jeremiah Kirby 98e5f5.yaml index 5da4966f8..3fd63ee37 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jeremiah Kirby 98e5f5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jeremiah Kirby 98e5f5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379022 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.18 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jerome Davids d99735.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jerome Davids d99735.yaml index a1ce590a9..66b00185d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jerome Davids d99735.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jerome Davids d99735.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 312512 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.06 posY: 3.86 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jessica Hyde (1) b8380d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jessica Hyde (1) b8380d.yaml index 292961fc3..d7651ef27 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jessica Hyde (1) b8380d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jessica Hyde (1) b8380d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 380228 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.04 posY: 3.94 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jewel of Aureolus (3) (Taboo) 213e21.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jewel of Aureolus (3) (Taboo) 213e21.yaml index 87c44aaca..f50e957d7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jewel of Aureolus (3) (Taboo) 213e21.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jewel of Aureolus (3) (Taboo) 213e21.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558206 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 21.83 posY: 4.42 posZ: -47.42 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jewel of Aureolus (3) 6bae15.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jewel of Aureolus (3) 6bae15.yaml index 42d69a8ad..4436003ef 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jewel of Aureolus (3) 6bae15.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jewel of Aureolus (3) 6bae15.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230352 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.98 posY: 3.8 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jim Culver b7a676.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jim Culver b7a676.yaml index 2c9d83fe9..c89bcb9e1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jim Culver b7a676.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jim Culver b7a676.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 259308 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.97 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jim Culver ca079b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jim Culver ca079b.yaml index 1e0a3e782..c74ee7de6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jim Culver ca079b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jim Culver ca079b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449705 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.56 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jim's Trumpet 03c6a7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jim's Trumpet 03c6a7.yaml index 8ebaa7201..f8a068b27 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jim's Trumpet 03c6a7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jim's Trumpet 03c6a7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 372110 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.99 posY: 3.71 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Joe Diamond 6dc626.yaml b/unpacked/Bag All Player Cards 15bb07/Card Joe Diamond 6dc626.yaml index 12c1e9e62..ca42459e2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Joe Diamond 6dc626.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Joe Diamond 6dc626.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 271822 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.53 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Joe Diamond d55364.yaml b/unpacked/Bag All Player Cards 15bb07/Card Joe Diamond d55364.yaml index f0259d574..577c52d03 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Joe Diamond d55364.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Joe Diamond d55364.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 272903 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.99 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Joey The Rat Vigil (3) 48c9ff.yaml b/unpacked/Bag All Player Cards 15bb07/Card Joey The Rat Vigil (3) 48c9ff.yaml index a1513bc0a..5d8cb2acd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Joey The Rat Vigil (3) 48c9ff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Joey The Rat Vigil (3) 48c9ff.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449036 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.15 posY: 4.06 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Joey The Rat Vigil b51688.yaml b/unpacked/Bag All Player Cards 15bb07/Card Joey The Rat Vigil b51688.yaml index 5f30b21a7..a78892f97 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Joey The Rat Vigil b51688.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Joey The Rat Vigil b51688.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368629 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.83 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card John & Jessie Burke cfb393.yaml b/unpacked/Bag All Player Cards 15bb07/Card John & Jessie Burke cfb393.yaml index fc3f3e046..36108dcc4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card John & Jessie Burke cfb393.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card John & Jessie Burke cfb393.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 454740 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.11 posY: 3.67 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Join the Caravan (1) 6367dd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Join the Caravan (1) 6367dd.yaml index d7a4bb73e..82e0444cc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Join the Caravan (1) 6367dd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Join the Caravan (1) 6367dd.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379026 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 2.74 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jury-Rig 29d06d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jury-Rig 29d06d.yaml index 779ca2758..83c502b86 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jury-Rig 29d06d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jury-Rig 29d06d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378903 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.18 posY: 2.91 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Justify the Means (3) 025ed2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Justify the Means (3) 025ed2.yaml index 4acc6af5f..fd3d23751 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Justify the Means (3) 025ed2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Justify the Means (3) 025ed2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 589505 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.8 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Katja Eastbank (2) 2f100c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Katja Eastbank (2) 2f100c.yaml index 8f4acff96..9992cbe15 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Katja Eastbank (2) 2f100c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Katja Eastbank (2) 2f100c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379138 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.72 posY: 3.37 posZ: 65.64 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Keen Eye (3) 2f9de4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Keen Eye (3) 2f9de4.yaml index d4cef8287..998a88a6a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Keen Eye (3) 2f9de4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Keen Eye (3) 2f9de4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226351 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.16 posY: 4.07 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Keen Eye 0dc75e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Keen Eye 0dc75e.yaml index 1b3eb63fc..d9bbf270f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Keen Eye 0dc75e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Keen Eye 0dc75e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232100 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.0 posY: 3.85 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Keep Faith 8b46b2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Keep Faith 8b46b2.yaml index eb1ea0df5..ed82c339e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Keep Faith 8b46b2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Keep Faith 8b46b2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 584328 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.17 posY: 2.96 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Kensler's Log 8d5c12.yaml b/unpacked/Bag All Player Cards 15bb07/Card Kensler's Log 8d5c12.yaml index 5382fe427..ae9fa751b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Kensler's Log 8d5c12.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Kensler's Log 8d5c12.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 452305 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 79.27 posY: 3.32 posZ: 7.38 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Kerosene (1) 25ad44.yaml b/unpacked/Bag All Player Cards 15bb07/Card Kerosene (1) 25ad44.yaml index f556ab8ba..99c685f70 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Kerosene (1) 25ad44.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Kerosene (1) 25ad44.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 314003 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.97 posY: 3.76 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Key of Ys (5) (Taboo) 244d61.yaml b/unpacked/Bag All Player Cards 15bb07/Card Key of Ys (5) (Taboo) 244d61.yaml index 1f63dd287..53c5687b8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Key of Ys (5) (Taboo) 244d61.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Key of Ys (5) (Taboo) 244d61.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450619 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.16 posY: 3.68 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Key of Ys (5) 1c98ff.yaml b/unpacked/Bag All Player Cards 15bb07/Card Key of Ys (5) 1c98ff.yaml index 3bba75720..494cf5013 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Key of Ys (5) 1c98ff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Key of Ys (5) 1c98ff.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368527 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.07 posY: 3.84 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Khopesh of the Abyss dc674e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Khopesh of the Abyss dc674e.yaml index 29c1b4972..c6a048988 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Khopesh of the Abyss dc674e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Khopesh of the Abyss dc674e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 546916 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.07 posY: 3.84 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Kicking the Hornet's Nest 4d6da5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Kicking the Hornet's Nest 4d6da5.yaml index 8a9f3d04f..96caaf39f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Kicking the Hornet's Nest 4d6da5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Kicking the Hornet's Nest 4d6da5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379061 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.67 posY: 3.4 posZ: 65.93 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Kleptomania 447a08.yaml b/unpacked/Bag All Player Cards 15bb07/Card Kleptomania 447a08.yaml index 81febde55..609456f17 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Kleptomania 447a08.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Kleptomania 447a08.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 438126 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.98 posY: 3.96 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Knife 0ab3f1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Knife 0ab3f1.yaml index e8ec34eae..79ac58716 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Knife 0ab3f1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Knife 0ab3f1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368512 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Knight of Swords (3) 159f82.yaml b/unpacked/Bag All Player Cards 15bb07/Card Knight of Swords (3) 159f82.yaml index 1f85d13e1..3ea7d300d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Knight of Swords (3) 159f82.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Knight of Swords (3) 159f82.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449525 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.83 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Knowledge is Power (Taboo) eccb8a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Knowledge is Power (Taboo) eccb8a.yaml index 0891d3d91..34a859525 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Knowledge is Power (Taboo) eccb8a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Knowledge is Power (Taboo) eccb8a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450611 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.07 posY: 3.89 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Knowledge is Power 6de21b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Knowledge is Power 6de21b.yaml index d5cce020a..ed0f71894 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Knowledge is Power 6de21b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Knowledge is Power 6de21b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 293215 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.69 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Knuckleduster 5690d1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Knuckleduster 5690d1.yaml index 34df8467f..660fef974 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Knuckleduster 5690d1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Knuckleduster 5690d1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368627 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.68 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Kukri 756a35.yaml b/unpacked/Bag All Player Cards 15bb07/Card Kukri 756a35.yaml index 8a2fb28d5..cba56342d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Kukri 756a35.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Kukri 756a35.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368516 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.81 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Kymani Jones 9a9830.yaml b/unpacked/Bag All Player Cards 15bb07/Card Kymani Jones 9a9830.yaml index a9fb4dd12..4ff9a9117 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Kymani Jones 9a9830.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Kymani Jones 9a9830.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 843402 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 17.83 posY: 2.21 posZ: 54.01 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Kymani Jones d3d7fb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Kymani Jones d3d7fb.yaml index 270b7912b..52fb8aa68 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Kymani Jones d3d7fb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Kymani Jones d3d7fb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 846102 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 14.2 posY: 2.21 posZ: 57.02 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lab Coat (1) a825ad.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lab Coat (1) a825ad.yaml index faa47f5d6..cb73b55e1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lab Coat (1) a825ad.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lab Coat (1) a825ad.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379043 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 358 - rotY: 270 - rotZ: 358 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Laboratory Assistant 147cb2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Laboratory Assistant 147cb2.yaml index a009d57ca..33dd170ab 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Laboratory Assistant 147cb2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Laboratory Assistant 147cb2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 586506 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.97 posY: 4.76 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lady Esprit ab24a6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lady Esprit ab24a6.yaml index 75ba39e37..272bd18af 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lady Esprit ab24a6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lady Esprit ab24a6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449703 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 5.46 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lantern (2) bda4fd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lantern (2) bda4fd.yaml index fdf52da9a..f69250a17 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lantern (2) bda4fd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lantern (2) bda4fd.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 440621 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.69 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lantern e66002.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lantern e66002.yaml index aab6e0760..50899613a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lantern e66002.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lantern e66002.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368827 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.12 posY: 3.95 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Last Chance 1fe462.yaml b/unpacked/Bag All Player Cards 15bb07/Card Last Chance 1fe462.yaml index f3f0f7750..caea470ff 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Last Chance 1fe462.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Last Chance 1fe462.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368804 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.05 posY: 3.75 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Leadership (2) 80fafa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Leadership (2) 80fafa.yaml index 3e835dca6..1fd391e07 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Leadership (2) 80fafa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Leadership (2) 80fafa.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 447935 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.8 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Leadership 83d8d7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Leadership 83d8d7.yaml index 80ade8e15..0b3dc529e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Leadership 83d8d7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Leadership 83d8d7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226303 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.77 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Leather Coat (1) 5b1550.yaml b/unpacked/Bag All Player Cards 15bb07/Card Leather Coat (1) 5b1550.yaml index de1c81b2f..647cfa815 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Leather Coat (1) 5b1550.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Leather Coat (1) 5b1550.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550819 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.09 posY: 3.68 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Leather Coat 593deb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Leather Coat 593deb.yaml index 4853fd3b4..2a69fef21 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Leather Coat 593deb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Leather Coat 593deb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368820 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 32.98 posY: 3.33 posZ: -47.41 - rotX: 1 - rotY: 270 - rotZ: 2 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Leather Jacket dfbc13.yaml b/unpacked/Bag All Player Cards 15bb07/Card Leather Jacket dfbc13.yaml index 66ab020ba..190a68c0b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Leather Jacket dfbc13.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Leather Jacket dfbc13.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538608 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.69 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Leg Injury 46b4a0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Leg Injury 46b4a0.yaml index 9ec3956ba..108972948 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Leg Injury 46b4a0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Leg Injury 46b4a0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378918 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.19 posY: 2.37 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Leo Anderson 126932.yaml b/unpacked/Bag All Player Cards 15bb07/Card Leo Anderson 126932.yaml index 5a2b364a0..f8efaf9e5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Leo Anderson 126932.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Leo Anderson 126932.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 271316 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 18.45 posY: 1.76 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Leo Anderson 8925b0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Leo Anderson 8925b0.yaml index b2c2b4e29..ad50fee66 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Leo Anderson 8925b0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Leo Anderson 8925b0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 262016 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.77 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Leo De Luca (1) 27446e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Leo De Luca (1) 27446e.yaml index 6b3156389..5c610b357 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Leo De Luca (1) 27446e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Leo De Luca (1) 27446e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315240 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Leo De Luca eaa415.yaml b/unpacked/Bag All Player Cards 15bb07/Card Leo De Luca eaa415.yaml index 1a090cf17..d8cb2560c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Leo De Luca eaa415.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Leo De Luca eaa415.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368631 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lesson Learned (2) 037b2e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lesson Learned (2) 037b2e.yaml index 7ab7cd798..323fabb1e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lesson Learned (2) 037b2e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lesson Learned (2) 037b2e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545322 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.69 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Let God sort them out... d3dcf1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Let God sort them out... d3dcf1.yaml index f9331a4ad..5b9406535 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Let God sort them out... d3dcf1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Let God sort them out... d3dcf1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 380027 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.9 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Let me handle this! 36c0cb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Let me handle this! 36c0cb.yaml index e09d7e515..4a312f048 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Let me handle this! 36c0cb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Let me handle this! 36c0cb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226305 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.07 posY: 3.69 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Library Docent (1) fab3a9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Library Docent (1) fab3a9.yaml index 9dea46a4a..62e783c10 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Library Docent (1) fab3a9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Library Docent (1) fab3a9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538818 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.12 posY: 4.02 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lifeline (1) 895047.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lifeline (1) 895047.yaml index d0fa93f12..1e62d2b54 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lifeline (1) 895047.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lifeline (1) 895047.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379134 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.72 posY: 3.37 posZ: 65.64 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lightning Gun (5) 2d362c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lightning Gun (5) 2d362c.yaml index c4e026e3f..057fb3b28 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lightning Gun (5) 2d362c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lightning Gun (5) 2d362c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226361 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.14 posY: 3.73 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lily Chen 4d0128.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lily Chen 4d0128.yaml index 32ce9d12b..fc593fc57 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lily Chen 4d0128.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lily Chen 4d0128.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379202 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 2.13 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lily Chen cc21e0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lily Chen cc21e0.yaml index 7e45483c1..38ccdffa7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lily Chen cc21e0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lily Chen cc21e0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379503 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.87 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Liquid Courage (1) 5065a6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Liquid Courage (1) 5065a6.yaml index 9948a109d..45a91f530 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Liquid Courage (1) 5065a6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Liquid Courage (1) 5065a6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538618 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.97 posY: 4.18 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Liquid Courage c33a10.yaml b/unpacked/Bag All Player Cards 15bb07/Card Liquid Courage c33a10.yaml index 8c4893805..0440a7f0e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Liquid Courage c33a10.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Liquid Courage c33a10.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368620 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.13 posY: 5.32 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lita Chantler 3c1944.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lita Chantler 3c1944.yaml index cd2f66b82..47ca1a248 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lita Chantler 3c1944.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lita Chantler 3c1944.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 295128 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 4.43 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Live and Learn 050ba1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Live and Learn 050ba1.yaml index b2ca0a845..fc5f07169 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Live and Learn 050ba1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Live and Learn 050ba1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368807 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.1 posY: 3.72 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Living Ink 42b36d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Living Ink 42b36d.yaml index f9a587bde..8e16fe561 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Living Ink 42b36d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Living Ink 42b36d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379103 ColorDiffuse: @@ -64,11 +64,11 @@ Transform: posX: 16.67 posY: 3.35 posZ: 65.93 - rotX: 358 - rotY: 270 - rotZ: 358 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Livre d'Eibon 55001f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Livre d'Eibon 55001f.yaml index 74fbca598..b28faf38c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Livre d'Eibon 55001f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Livre d'Eibon 55001f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379003 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.99 posY: 3.75 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lockpicks (1) edd6c4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lockpicks (1) edd6c4.yaml index c4e3bf20e..bf138659b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lockpicks (1) edd6c4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lockpicks (1) edd6c4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315237 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lockpicks cc11e4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lockpicks cc11e4.yaml index e0be8242e..0185ac547 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lockpicks cc11e4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lockpicks cc11e4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538603 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.9 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lodge Debts acce72.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lodge Debts acce72.yaml index 3cfaaa6f3..c579ec91a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lodge Debts acce72.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lodge Debts acce72.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 591858 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 5.02 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Logical Reasoning (4) 1258c6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Logical Reasoning (4) 1258c6.yaml index 2c11057b0..905400d08 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Logical Reasoning (4) 1258c6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Logical Reasoning (4) 1258c6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 441023 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 5.48 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Logical Reasoning 812175.yaml b/unpacked/Bag All Player Cards 15bb07/Card Logical Reasoning 812175.yaml index 38e799653..29d9faf10 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Logical Reasoning 812175.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Logical Reasoning 812175.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368417 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.75 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes (Taboo) 475460.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes (Taboo) 475460.yaml index 47c0d6705..10d1f070f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes (Taboo) 475460.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes (Taboo) 475460.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558300 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 99.07 posY: 1.9 posZ: 4.6 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes b127ab.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes b127ab.yaml index f57b66eb8..887ed36ca 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes b127ab.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes b127ab.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 259915 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.89 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes d37332.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes d37332.yaml index 76c44a81c..bd2c5d867 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes d37332.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes d37332.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 271215 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.48 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lola Santiago (3) 8bec05.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lola Santiago (3) 8bec05.yaml index 06c3d3088..a8ef4ca83 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lola Santiago (3) 8bec05.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lola Santiago (3) 8bec05.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315256 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.08 posY: 3.73 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lone Wolf dc3b07.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lone Wolf dc3b07.yaml index 6936af8d7..6e5fcaf07 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lone Wolf dc3b07.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lone Wolf dc3b07.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368619 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.1 posY: 3.73 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lonnie Ritter ad0ef0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lonnie Ritter ad0ef0.yaml index 2e3f2d8d7..29898b7fc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lonnie Ritter ad0ef0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lonnie Ritter ad0ef0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538607 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.05 posY: 3.89 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Look what I found! (2) fd393b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Look what I found! (2) fd393b.yaml index 74162c1b5..bdca8a673 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Look what I found! (2) fd393b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Look what I found! (2) fd393b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550822 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 26.1 posY: 3.54 posZ: -7.17 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Look what I found! 88d3c0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Look what I found! 88d3c0.yaml index 5fd3da87e..5e99e7f73 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Look what I found! 88d3c0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Look what I found! 88d3c0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368816 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lost Soul 4f903e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lost Soul 4f903e.yaml index aa88d5b4e..b45b02054 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lost Soul 4f903e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lost Soul 4f903e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232348 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.11 posY: 3.79 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lt. Wilson Stewart 4120f3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lt. Wilson Stewart 4120f3.yaml index 85fbed303..fa222257c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lt. Wilson Stewart 4120f3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lt. Wilson Stewart 4120f3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 233607 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.67 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lucid Dreaming (2) 122e98.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lucid Dreaming (2) 122e98.yaml index 09ec8a741..093c62b81 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lucid Dreaming (2) 122e98.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lucid Dreaming (2) 122e98.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 527312 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.16 posY: 4.17 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lucky Cigarette Case (3) 0feb74.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lucky Cigarette Case (3) 0feb74.yaml index 037a092a4..539d6dff3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lucky Cigarette Case (3) 0feb74.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lucky Cigarette Case (3) 0feb74.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538624 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.0 posY: 3.81 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lucky Cigarette Case c607c5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lucky Cigarette Case c607c5.yaml index b1ec8cc3d..ee2bce104 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lucky Cigarette Case c607c5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lucky Cigarette Case c607c5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368624 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 5.39 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lucky Dice (2) 07b163.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lucky Dice (2) 07b163.yaml index 8fd3514e8..fafd2c23c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lucky Dice (2) 07b163.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lucky Dice (2) 07b163.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 580707 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.08 posY: 3.73 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lucky Dice (3) c8bb2a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lucky Dice (3) c8bb2a.yaml index cf88be31a..a49388062 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lucky Dice (3) c8bb2a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lucky Dice (3) c8bb2a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 589606 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 4.01 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lucky Penny (2) aae31c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lucky Penny (2) aae31c.yaml index 9ef78d67c..7b752922e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lucky Penny (2) aae31c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lucky Penny (2) aae31c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 579504 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.99 posY: 3.77 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lucky! (2) 439af2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lucky! (2) 439af2.yaml index a282cbc85..7e005343e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lucky! (2) 439af2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lucky! (2) 439af2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368846 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lucky! (3) 04d33d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lucky! (3) 04d33d.yaml index 32dbf27a9..b4c3c5f05 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lucky! (3) 04d33d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lucky! (3) 04d33d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550826 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.86 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lucky! ce0dd5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lucky! ce0dd5.yaml index a1ebe7188..7742c93b6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lucky! ce0dd5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lucky! ce0dd5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368810 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Luke Robinson 88c4f4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Luke Robinson 88c4f4.yaml index 719931f92..7eb05bfc1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Luke Robinson 88c4f4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Luke Robinson 88c4f4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 274013 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.83 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Luke Robinson c59b75.yaml b/unpacked/Bag All Player Cards 15bb07/Card Luke Robinson c59b75.yaml index 16a4279c4..cba7b6cfa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Luke Robinson c59b75.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Luke Robinson c59b75.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 536234 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.94 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lupara (3) a6af13.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lupara (3) a6af13.yaml index 1ef35df2a..33ce0ac90 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lupara (3) a6af13.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lupara (3) a6af13.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315255 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.15 posY: 4.15 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lure (1) d88407.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lure (1) d88407.yaml index 3baea5a78..ff58f3fa0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lure (1) d88407.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lure (1) d88407.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368836 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.15 posY: 4.13 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lure (2) 1a90a4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lure (2) 1a90a4.yaml index 08151e08c..f324ed4d8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lure (2) 1a90a4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lure (2) 1a90a4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 374420 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 4.06 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lurker in the Dark 79cc11.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lurker in the Dark 79cc11.yaml index 0c11b8027..b15c4bcdf 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lurker in the Dark 79cc11.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lurker in the Dark 79cc11.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379148 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.72 posY: 3.38 posZ: 65.64 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card M1918 BAR (4) b1ad65.yaml b/unpacked/Bag All Player Cards 15bb07/Card M1918 BAR (4) b1ad65.yaml index cf5e95e0e..497b50789 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card M1918 BAR (4) b1ad65.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card M1918 BAR (4) b1ad65.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226358 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.97 posY: 4.76 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Machete 86ee68.yaml b/unpacked/Bag All Player Cards 15bb07/Card Machete 86ee68.yaml index 470afc9cd..b5d11b694 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Machete 86ee68.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Machete 86ee68.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226327 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 19.19 posY: 3.37 posZ: -56.85 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Madame Labranche 1ee492.yaml b/unpacked/Bag All Player Cards 15bb07/Card Madame Labranche 1ee492.yaml index a4cd3ac4d..9e82ad0a1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Madame Labranche 1ee492.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Madame Labranche 1ee492.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368828 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 5.53 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Magnifying Glass (1) 378e84.yaml b/unpacked/Bag All Player Cards 15bb07/Card Magnifying Glass (1) 378e84.yaml index 72c022ed8..4c6bd5dae 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Magnifying Glass (1) 378e84.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Magnifying Glass (1) 378e84.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430637 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 19.32 posY: 3.37 posZ: -57.55 - rotX: 0 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Magnifying Glass 8cc0a6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Magnifying Glass 8cc0a6.yaml index 452f1d930..e535bc038 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Magnifying Glass 8cc0a6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Magnifying Glass 8cc0a6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368421 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 19.43 posY: 3.37 posZ: -57.03 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Makeshift Trap aa897f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Makeshift Trap aa897f.yaml index b2d610d5d..bb3b58a2e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Makeshift Trap aa897f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Makeshift Trap aa897f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379124 ColorDiffuse: @@ -62,11 +62,11 @@ Transform: posX: 16.72 posY: 3.37 posZ: 65.64 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Making Preparations 18247d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Making Preparations 18247d.yaml index c82001b4a..722c51dcb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Making Preparations 18247d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Making Preparations 18247d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379130 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson (Taboo) 754b0a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson (Taboo) 754b0a.yaml index 92a39c310..77ecee90f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson (Taboo) 754b0a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson (Taboo) 754b0a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558301 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 98.64 posY: 1.95 posZ: 13.55 - rotX: 2 - rotY: 180 - rotZ: 0 + rotX: 2.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson 12d3de.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson 12d3de.yaml index b65c2051f..012181b9e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson 12d3de.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson 12d3de.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 274012 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 2.13 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson 57d586.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson 57d586.yaml index 40948f2a6..fb80822a8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson 57d586.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson 57d586.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 536333 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.84 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Manipulate Destiny (2) 5606b3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Manipulate Destiny (2) 5606b3.yaml index aff2a1433..47238722e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Manipulate Destiny (2) 5606b3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Manipulate Destiny (2) 5606b3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232110 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.02 posY: 3.92 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mano a Mano (1) c55160.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mano a Mano (1) c55160.yaml index 269fd8643..75f513e75 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mano a Mano (1) c55160.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mano a Mano (1) c55160.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226333 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.07 posY: 3.84 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mano a Mano (2) 14424c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mano a Mano (2) 14424c.yaml index 351baffec..d8c59c223 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mano a Mano (2) 14424c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mano a Mano (2) 14424c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545323 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 5.08 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Manual Dexterity (2) 982716.yaml b/unpacked/Bag All Player Cards 15bb07/Card Manual Dexterity (2) 982716.yaml index f690ac2cc..61eec686d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Manual Dexterity (2) 982716.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Manual Dexterity (2) 982716.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538623 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.15 posY: 3.97 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Manual Dexterity 679b13.yaml b/unpacked/Bag All Player Cards 15bb07/Card Manual Dexterity 679b13.yaml index e79df6608..0a9195318 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Manual Dexterity 679b13.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Manual Dexterity 679b13.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368504 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Map the Area 1760be.yaml b/unpacked/Bag All Player Cards 15bb07/Card Map the Area 1760be.yaml index 5e61c7756..7c7893b64 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Map the Area 1760be.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Map the Area 1760be.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379041 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.67 posY: 3.4 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Marie Lambeau 11122f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Marie Lambeau 11122f.yaml index b6d47bf0c..fe0f6b2fe 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Marie Lambeau 11122f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Marie Lambeau 11122f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 272226 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 18.45 posY: 2.06 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Marie Lambeau b05c03.yaml b/unpacked/Bag All Player Cards 15bb07/Card Marie Lambeau b05c03.yaml index 9f0e37802..39690aa56 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Marie Lambeau b05c03.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Marie Lambeau b05c03.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 272705 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 21.23 posY: 1.89 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mariner's Compass 4e2d75.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mariner's Compass 4e2d75.yaml index 66f6d5198..33f11fc8b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mariner's Compass 4e2d75.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mariner's Compass 4e2d75.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 553113 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.04 posY: 3.85 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mark Harrigan 01ac1b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mark Harrigan 01ac1b.yaml index dd22c526a..7c9aa1f75 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mark Harrigan 01ac1b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mark Harrigan 01ac1b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 270710 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.78 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mark Harrigan cc354d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mark Harrigan cc354d.yaml index 78fb657e8..31299bd7f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mark Harrigan cc354d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mark Harrigan cc354d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 259610 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.85 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Marksmanship (1) 6a9021.yaml b/unpacked/Bag All Player Cards 15bb07/Card Marksmanship (1) 6a9021.yaml index ff12f7e5f..2d0047035 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Marksmanship (1) 6a9021.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Marksmanship (1) 6a9021.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226339 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.84 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Martyr's Vambrace (3) c795c8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Martyr's Vambrace (3) c795c8.yaml index 505d083fc..58b9dffc1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Martyr's Vambrace (3) c795c8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Martyr's Vambrace (3) c795c8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379030 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 17.02 posY: 3.37 posZ: 66.02 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mauser C96 (2) 725690.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mauser C96 (2) 725690.yaml index 36c5a0f83..d563db99b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mauser C96 (2) 725690.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mauser C96 (2) 725690.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538619 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.13 posY: 5.51 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mauser C96 f32343.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mauser C96 f32343.yaml index e1afdcb43..2ed2ef90d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mauser C96 f32343.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mauser C96 f32343.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538604 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.08 posY: 3.68 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Meat Cleaver a57f19.yaml b/unpacked/Bag All Player Cards 15bb07/Card Meat Cleaver a57f19.yaml index 293284911..caae9d61b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Meat Cleaver a57f19.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Meat Cleaver a57f19.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 277912 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.0 posY: 3.85 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mechanic's Wrench 598ba0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mechanic's Wrench 598ba0.yaml index dffcfb8a6..eaef09b09 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mechanic's Wrench 598ba0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mechanic's Wrench 598ba0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379001 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.67 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Medical Student e419b4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Medical Student e419b4.yaml index 67277a308..cd9c37c63 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Medical Student e419b4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Medical Student e419b4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378921 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.99 posY: 3.73 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Medical Texts (2) 0d3bfa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Medical Texts (2) 0d3bfa.yaml index e5f7b2236..a7a02ff8d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Medical Texts (2) 0d3bfa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Medical Texts (2) 0d3bfa.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379028 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.17 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Medical Texts 85822c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Medical Texts 85822c.yaml index d4fab9623..56e3643cd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Medical Texts 85822c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Medical Texts 85822c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587202 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.81 posY: 3.32 posZ: 7.67 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Medical Texts ba16cb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Medical Texts ba16cb.yaml index 60bdec961..62327febe 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Medical Texts ba16cb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Medical Texts ba16cb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368425 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 5.2 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Medico Della Peste 6179d5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Medico Della Peste 6179d5.yaml index 941655bb2..5fca60a6a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Medico Della Peste 6179d5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Medico Della Peste 6179d5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 295602 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.98 posY: 3.77 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Meditative Trance ef46e9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Meditative Trance ef46e9.yaml index 04da9c4d2..73331a92b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Meditative Trance ef46e9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Meditative Trance ef46e9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379051 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.08 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mi-Go Weapon 2fc31c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mi-Go Weapon 2fc31c.yaml index 41ea480a7..f09d76b52 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mi-Go Weapon 2fc31c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mi-Go Weapon 2fc31c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 233606 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.13 posY: 3.72 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Miasmic Crystal bad631.yaml b/unpacked/Bag All Player Cards 15bb07/Card Miasmic Crystal bad631.yaml index 14cd8d71b..a906f7bf5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Miasmic Crystal bad631.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Miasmic Crystal bad631.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450309 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 79.39 posY: 3.32 posZ: 7.89 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Michael Leigh (5) 573765.yaml b/unpacked/Bag All Player Cards 15bb07/Card Michael Leigh (5) 573765.yaml index 3c9553468..fd74af21d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Michael Leigh (5) 573765.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Michael Leigh (5) 573765.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378924 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.99 posY: 3.76 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mind Wipe (1) 5d6e57.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mind Wipe (1) 5d6e57.yaml index 0d6a6d71d..83e090c4b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mind Wipe (1) 5d6e57.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mind Wipe (1) 5d6e57.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230334 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 32.98 posY: 3.33 posZ: -47.41 - rotX: 1 - rotY: 270 - rotZ: 2 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mind Wipe (3) e72762.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mind Wipe (3) e72762.yaml index ba8f88001..d62331296 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mind Wipe (3) e72762.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mind Wipe (3) e72762.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230351 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.18 posY: 2.97 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mind over Matter (2) 9b1c5b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mind over Matter (2) 9b1c5b.yaml index 12e643376..5f2e8b779 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mind over Matter (2) 9b1c5b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mind over Matter (2) 9b1c5b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538824 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.04 posY: 3.85 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mind over Matter 8cf335.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mind over Matter 8cf335.yaml index a6443efc2..97e94c78f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mind over Matter 8cf335.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mind over Matter 8cf335.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368408 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 19.07 posY: 3.37 posZ: -56.82 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mind's Eye (2) ad58aa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mind's Eye (2) ad58aa.yaml index 828936b28..e4a4db69c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mind's Eye (2) ad58aa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mind's Eye (2) ad58aa.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 527237 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.17 posY: 3.15 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mineral Specimen 08dd86.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mineral Specimen 08dd86.yaml index 6d668a185..2f529d775 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mineral Specimen 08dd86.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mineral Specimen 08dd86.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450310 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 79.27 posY: 3.32 posZ: 8.26 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Minh Thi Phan 6c4c58.yaml b/unpacked/Bag All Player Cards 15bb07/Card Minh Thi Phan 6c4c58.yaml index bcb5f0943..8810162d5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Minh Thi Phan 6c4c58.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Minh Thi Phan 6c4c58.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 270811 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.84 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Minh Thi Phan fe6430.yaml b/unpacked/Bag All Player Cards 15bb07/Card Minh Thi Phan fe6430.yaml index 59557ed39..3167f44be 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Minh Thi Phan fe6430.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Minh Thi Phan fe6430.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 259711 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.91 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Miskatonic Archaeology Funding (4) 1a1b58.yaml b/unpacked/Bag All Player Cards 15bb07/Card Miskatonic Archaeology Funding (4) 1a1b58.yaml index d3fc3fb06..78e0ab425 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Miskatonic Archaeology Funding (4) 1a1b58.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Miskatonic Archaeology Funding (4) 1a1b58.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538830 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.08 posY: 3.73 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Miss Doyle (1) e1aedf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Miss Doyle (1) e1aedf.yaml index c482cfcc6..7b96654ff 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Miss Doyle (1) e1aedf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Miss Doyle (1) e1aedf.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 440623 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 8.97 posY: 4.72 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh (2) 3d57b4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh (2) 3d57b4.yaml index bbed28c39..fec406cec 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh (2) 3d57b4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh (2) 3d57b4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545206 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.98 posY: 3.82 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh (4) 68fce2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh (4) 68fce2.yaml index 60fb389fa..622d8422b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh (4) 68fce2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh (4) 68fce2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230357 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 8.97 posY: 4.25 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh 5558f1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh 5558f1.yaml index 495660829..346965118 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh 5558f1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh 5558f1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230326 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.01 posY: 3.85 posZ: -16.7 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mitch Brown f91fd9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mitch Brown f91fd9.yaml index 9795b84ff..ec9be4579 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mitch Brown f91fd9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mitch Brown f91fd9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 377042 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.06 posY: 3.84 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mk 1 Grenades (4) 0ab574.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mk 1 Grenades (4) 0ab574.yaml index 9e508e1f2..8f767dbd4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mk 1 Grenades (4) 0ab574.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mk 1 Grenades (4) 0ab574.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378617 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.97 posY: 3.94 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mob Enforcer b239d7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mob Enforcer b239d7.yaml index b81d05078..8d9418ce4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mob Enforcer b239d7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mob Enforcer b239d7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 527416 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 78.68 posY: 3.32 posZ: 26.53 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mob Goons fc1506.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mob Goons fc1506.yaml index 3dfaaf7da..13ca64532 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mob Goons fc1506.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mob Goons fc1506.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379002 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 78.79 posY: 3.33 posZ: 8.12 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Molly Maxwell 692ced.yaml b/unpacked/Bag All Player Cards 15bb07/Card Molly Maxwell 692ced.yaml index be571c374..796bc2157 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Molly Maxwell 692ced.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Molly Maxwell 692ced.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 466112 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.06 posY: 3.84 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Moment of Respite (3) 523b76.yaml b/unpacked/Bag All Player Cards 15bb07/Card Moment of Respite (3) 523b76.yaml index d641a9a68..c9895b51f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Moment of Respite (3) 523b76.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Moment of Respite (3) 523b76.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368525 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.78 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Momentum (1) d753d7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Momentum (1) d753d7.yaml index c016632d2..594f801c5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Momentum (1) d753d7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Momentum (1) d753d7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 380026 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.11 posY: 3.91 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Money Talks (2) 67eb69.yaml b/unpacked/Bag All Player Cards 15bb07/Card Money Talks (2) 67eb69.yaml index 0ee07d12c..0b1da5038 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Money Talks (2) 67eb69.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Money Talks (2) 67eb69.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379044 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.19 posY: 2.24 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Money Talks 276477.yaml b/unpacked/Bag All Player Cards 15bb07/Card Money Talks 276477.yaml index 17b01e6fb..9566190ee 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Money Talks 276477.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Money Talks 276477.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 527607 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 5.51 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Monster Slayer (5) e21854.yaml b/unpacked/Bag All Player Cards 15bb07/Card Monster Slayer (5) e21854.yaml index 6dc1a834a..6f2ac8301 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Monster Slayer (5) e21854.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Monster Slayer (5) e21854.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226359 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.8 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Monster Slayer 63b3e5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Monster Slayer 63b3e5.yaml index 807d7feda..4f02b3c0d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Monster Slayer 63b3e5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Monster Slayer 63b3e5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545314 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 4.07 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Monstrous Transformation a49751.yaml b/unpacked/Bag All Player Cards 15bb07/Card Monstrous Transformation a49751.yaml index 483170e91..c3a9cea32 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Monstrous Transformation a49751.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Monstrous Transformation a49751.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 296804 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.03 posY: 3.69 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Monterey Jack 46b145.yaml b/unpacked/Bag All Player Cards 15bb07/Card Monterey Jack 46b145.yaml index 40e8e5eb3..14bdf7ade 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Monterey Jack 46b145.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Monterey Jack 46b145.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379502 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 53.27 posY: 3.14 posZ: 22.08 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Monterey Jack f74398.yaml b/unpacked/Bag All Player Cards 15bb07/Card Monterey Jack f74398.yaml index aad8641f1..749da72b5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Monterey Jack f74398.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Monterey Jack f74398.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379203 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.89 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Moon Pendant (2) 72deff.yaml b/unpacked/Bag All Player Cards 15bb07/Card Moon Pendant (2) 72deff.yaml index 0d12588ce..49ad89fde 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Moon Pendant (2) 72deff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Moon Pendant (2) 72deff.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449531 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.07 posY: 3.79 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Moonlight Ritual (2) ad3efc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Moonlight Ritual (2) ad3efc.yaml index ca575aa43..ec8f53d5d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Moonlight Ritual (2) ad3efc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Moonlight Ritual (2) ad3efc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379117 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.74 posY: 3.34 posZ: 65.49 - rotX: 358 - rotY: 270 - rotZ: 3 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 3.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Moonlight Ritual 1cd2bd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Moonlight Ritual 1cd2bd.yaml index e4209160e..b875a0291 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Moonlight Ritual 1cd2bd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Moonlight Ritual 1cd2bd.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230306 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.73 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Moonstone 0d006f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Moonstone 0d006f.yaml index 40838d19d..5c9df1d42 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Moonstone 0d006f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Moonstone 0d006f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 447731 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.05 posY: 3.83 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Motivational Speech 1b2331.yaml b/unpacked/Bag All Player Cards 15bb07/Card Motivational Speech 1b2331.yaml index c7604b633..7f0715db7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Motivational Speech 1b2331.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Motivational Speech 1b2331.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379600 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.93 posY: 3.37 posZ: 65.89 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Moxie (1) 5fe780.yaml b/unpacked/Bag All Player Cards 15bb07/Card Moxie (1) 5fe780.yaml index cd89d200a..f329b5d12 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Moxie (1) 5fe780.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Moxie (1) 5fe780.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315235 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.98 posY: 3.94 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Moxie (3) 6b3a27.yaml b/unpacked/Bag All Player Cards 15bb07/Card Moxie (3) 6b3a27.yaml index da234f154..3959b107e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Moxie (3) 6b3a27.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Moxie (3) 6b3a27.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379046 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.19 posY: 2.27 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mr. Rook (Taboo) 7fe728.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mr. Rook (Taboo) 7fe728.yaml index 2118befa4..d1ff9ec8f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mr. Rook (Taboo) 7fe728.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mr. Rook (Taboo) 7fe728.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558212 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 21.62 posY: 4.33 posZ: -59.25 - rotX: 0 - rotY: 270 - rotZ: 3 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mr. Rook 1339b0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mr. Rook 1339b0.yaml index d2eb7ac5b..2dc2c0fad 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mr. Rook 1339b0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mr. Rook 1339b0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 277811 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.0 posY: 3.67 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mysteries Remain 274daa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mysteries Remain 274daa.yaml index 5525e6672..fa596d56b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mysteries Remain 274daa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mysteries Remain 274daa.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 370046 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.14 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mysterious Raven 59e40d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mysterious Raven 59e40d.yaml index 4ecd7a783..2358446be 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mysterious Raven 59e40d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mysterious Raven 59e40d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550807 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.98 posY: 3.78 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mystifying Song 3b8cb7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mystifying Song 3b8cb7.yaml index 52970c328..978116fb2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mystifying Song 3b8cb7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mystifying Song 3b8cb7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 444451 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.69 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Naomi O'Bannion 7f7ecc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Naomi O'Bannion 7f7ecc.yaml index 924973cf1..13f446614 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Naomi O'Bannion 7f7ecc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Naomi O'Bannion 7f7ecc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 233135 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.05 posY: 3.87 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Narcolepsy 57e648.yaml b/unpacked/Bag All Player Cards 15bb07/Card Narcolepsy 57e648.yaml index c7af3daca..924a0cfaa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Narcolepsy 57e648.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Narcolepsy 57e648.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 438127 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.0 posY: 3.74 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Narrow Escape f6ff32.yaml b/unpacked/Bag All Player Cards 15bb07/Card Narrow Escape f6ff32.yaml index dd18abbb7..41006434b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Narrow Escape f6ff32.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Narrow Escape f6ff32.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368708 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 4.37 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nathaniel Cho 1806e5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nathaniel Cho 1806e5.yaml index 9590ef82d..a709b36d5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nathaniel Cho 1806e5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nathaniel Cho 1806e5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 274216 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.8 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nathaniel Cho 65588a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nathaniel Cho 65588a.yaml index 7570b8c71..8e919b296 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nathaniel Cho 65588a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nathaniel Cho 65588a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 234900 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.61 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nature of the Beast (1) 9c4015.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nature of the Beast (1) 9c4015.yaml index c6fb7abcd..800e3eb79 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nature of the Beast (1) 9c4015.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nature of the Beast (1) 9c4015.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379135 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nautical Prowess 9d6e9a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nautical Prowess 9d6e9a.yaml index 44719340d..8eea0edb7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nautical Prowess 9d6e9a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nautical Prowess 9d6e9a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 444348 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.99 posY: 3.75 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Neither Rain nor Snow 6da7c4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Neither Rain nor Snow 6da7c4.yaml index 3354fb84d..fdd07add0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Neither Rain nor Snow 6da7c4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Neither Rain nor Snow 6da7c4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550800 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 5.41 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nephthys (4) 5659d1.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Nephthys (4) 5659d1.ttslua index d819038d5..5c54b3fdd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nephthys (4) 5659d1.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Nephthys (4) 5659d1.ttslua @@ -1,81 +1,348 @@ -function onload() - mode = "Bless" - chaosbag = getChaosBag() - manager = getObjectFromGUID("5933fb") - sealedTokens = { } - IMAGE_TOKEN_MAP = { } - for i,v in pairs(Global.getVar("IMAGE_TOKEN_MAP")) do - IMAGE_TOKEN_MAP[i] = v - end +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} - -- add menu items - self.clearContextMenu() - self.addContextMenuItem("Release Token", releaseTokens, true) - for url,name in pairs(IMAGE_TOKEN_MAP) do - if name == mode then - self.addContextMenuItem("Seal " .. mode, function(playerColor) sealToken(url, playerColor) end, true) - end - end + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("playercards/CardsThatSealTokens", function(require, _LOADED, __bundle_register, __bundle_modules) +--[[ Library for cards that seal tokens +This file is used to add sealing option to cards' context menu. +Valid options (set before requiring this file): + +UPDATE_ON_HOVER --@type: boolean + - automatically updates the context menu options when the card is hovered + - the "Read Bag" function reads the content of the chaos bag to update the context menu + - example usage: "Unrelenting" (to only display valid tokens) + +SHOW_SINGLE_RELEASE --@type: boolean + - enables an entry in the context menu + - this entry allows releasing a single token + - example usage: "Holy Spear" (to keep the other tokens and just release one) + +SHOW_MULTI_RELEASE --@type: number (amount of tokens to release at once) + - enables an entry in the context menu + - this enty allows releasing of multiple tokens at once + - example usage: "Nephthys" (to release 3 bless tokens at once) + +SHOW_MULTI_SEAL --@type: number (amount of tokens to seal at once) + - enables an entry in the context menu + - this entry allows sealing of multiple tokens at once + - example usage: "Holy Spear" (to seal two bless tokens at once) + +VALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens should be abled to be sealed + - needs to be defined for each card -> even if empty + - example usage: "The Chthonian Stone" + > VALID_TOKENS = { + > ["Skull"] = true, + > ["Cultist"] = true, + > ["Tablet"] = true, + > ["Elder Thing"] = true, + > } + +INVALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens are invalid for sealing + - only needs to be defined if needed + - usually combined with empty "VALID_TOKENS" table + - example usage: "Protective Incantation" (not allowed to seal Auto-fail) + +---------------------------------------------------------- +Example 1: Crystalline Elder Sign +This card can only seal the "+1" or "Elder Sign" token, +it does not need specific options for multi-sealing or releasing. +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["+1"] = true, +> ["Elder Sign"] = true +> } +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +---------------------------------------------------------- +Example 2: Holy Spear +This card features the following abilities (just listing the relevant parts): +- releasing a single bless token +- sealing two bless tokens +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["Bless"] = true +> } +> SHOW_SINGLE_RELEASE = true +> SHOW_MULTI_SEAL = 2 +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +----------------------------------------------------------]] + +local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi") +local tokenArrangerApi = require("accessories/TokenArrangerApi") +local sealedTokens = {} +local ID_URL_MAP = {} +local tokensInBag = {} + +function onSave() return JSON.encode(sealedTokens) end + +function onLoad(savedData) + sealedTokens = JSON.decode(savedData) or {} + ID_URL_MAP = Global.getTable("ID_URL_MAP") + generateContextMenu() end -function sealToken(url, playerColor) - local pos = self.getPosition() +-- builds the context menu +function generateContextMenu() + -- conditional single or multi release options + if SHOW_SINGLE_RELEASE then + self.addContextMenuItem("Release token", releaseOneToken) + elseif SHOW_MULTI_RELEASE then + self.addContextMenuItem("Release " .. SHOW_MULTI_RELEASE .. " token(s)", releaseMultipleTokens) + else + self.addContextMenuItem("Release token(s)", releaseAllTokens) + end - local name = IMAGE_TOKEN_MAP[url] - for i,obj in ipairs(chaosbag.getObjects()) do - if obj.name == name then - chaosbag.takeObject({ - position={ pos.x, pos.y + 1, pos.z }, - index=i-1, - smooth=false, - callback_function=_sealToken - }) - return - end - end - printToColor(name .. " token not found in bag", playerColor) -end + -- main context menu options to seal tokens + for _, map in pairs(ID_URL_MAP) do + if (VALID_TOKENS[map.name] ~= nil) or (UPDATE_ON_HOVER and tokensInBag[map.name] and not INVALID_TOKENS[map.name]) then + if not SHOW_MULTI_SEAL then + self.addContextMenuItem("Seal " .. map.name, function(playerColor) + sealToken(map.name, playerColor) + end) + else + self.addContextMenuItem("Seal " .. SHOW_MULTI_SEAL .. " " .. map.name, function(playerColor) + readBag() + local allowed = true + local notFound -function _sealToken(obj) - table.insert(sealedTokens, obj) - local guid = obj.getGUID() - local tokensTaken = manager.getVar("tokensTaken") - table.insert(tokensTaken[mode], guid) - manager.setVar("tokensTaken", tokensTaken) - manager.setVar("mode", mode) - printToAll("Sealing " .. mode .. " token " .. manager.call("getTokenCount")) -end - -function releaseTokens(playerColor) - if #sealedTokens == 0 then return end - local token = sealedTokens[#sealedTokens] - if token ~= nil then - local guid = token.getGUID() - chaosbag.putObject(token) - local tokensTaken = manager.getVar("tokensTaken") - for i,v in ipairs(tokensTaken[mode]) do - if v == guid then - table.remove(tokensTaken[mode], i) - break + for name, _ in pairs(VALID_TOKENS) do + if (tokensInBag[name] or 0) < SHOW_MULTI_SEAL then + allowed = false + notFound = name end - end - manager.setVar("tokensTaken", tokensTaken) - manager.setVar("mode", mode) - printToAll("Releasing " .. mode .. " token" .. manager.call("getTokenCount")) - end + end - table.remove(sealedTokens) + if allowed then + for i = 1, SHOW_MULTI_SEAL do + sealToken(map.name, playerColor) + end + else + printToColor("Not enough " .. notFound .. " tokens in the chaos bag.", playerColor) + end + end) + end + end + end end -function getChaosBag() - local items = getObjectFromGUID("83ef06").getObjects() - local chaosbag = nil - for i,v in ipairs(items) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break +-- generates a list of chaos tokens that is in the chaos bag +function readBag() + local chaosbag = Global.call("findChaosBag") + tokensInBag = {} + + for _, token in ipairs(chaosbag.getObjects()) do + tokensInBag[token.name] = (tokensInBag[token.name] or 0) + 1 + end +end + +-- native event from TTS - used to update the context menu for cards like "Unrelenting" +function onHover() + if UPDATE_ON_HOVER then + readBag() + self.clearContextMenu() + generateContextMenu() + end +end + +-- seals the named token on this card +function sealToken(name, playerColor) + if not Global.call("canTouchChaosTokens") then return end + local chaosbag = Global.call("findChaosBag") + for i, obj in ipairs(chaosbag.getObjects()) do + if obj.name == name then + chaosbag.takeObject({ + position = self.getPosition() + Vector(0, 0.5 + 0.1 * #sealedTokens, 0), + rotation = self.getRotation(), + index = i - 1, + smooth = false, + callback_function = function(token) + local guid = token.getGUID() + table.insert(sealedTokens, guid) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.sealedToken(name, guid) + end end + }) + return end - if chaosbag == nil then printToAll("No chaos bag found") end - return chaosbag -end \ No newline at end of file + end + printToColor(name .. " token not found in chaos bag", playerColor) +end + +-- release the last sealed token +function releaseOneToken(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token", playerColor) + putTokenAway(table.remove(sealedTokens)) + end +end + +-- release multiple tokens at once +function releaseMultipleTokens(playerColor) + if SHOW_MULTI_RELEASE >= #sealedTokens then + for i = 1, SHOW_MULTI_RELEASE do + releaseOneToken(playerColor) + end + else + printToColor("Not enough " .. name .. " tokens sealed.", playerColor) + end +end + +-- releases all sealed tokens +function releaseAllTokens(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token(s)", playerColor) + for _, guid in ipairs(sealedTokens) do + putTokenAway(guid) + end + sealedTokens = {} + end +end + +-- returns the token (referenced by GUID) to the chaos bag +function putTokenAway(guid) + local token = getObjectFromGUID(guid) + if not token then return end + + local name = token.getName() + local chaosbag = Global.call("findChaosBag") + chaosbag.putObject(token) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.releasedToken(name, guid) + end +end +end) +__bundle_register("accessories/TokenArrangerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenArrangerApi = {} + + -- local function to call the token arranger, if it is on the table + ---@param functionName String Name of the function to cal + ---@param argument Variant Parameter to pass + local function callIfExistent(functionName, argument) + local tokenArranger = getObjectsWithTag("TokenArranger")[1] + if tokenArranger ~= nil then + tokenArranger.call(functionName, argument) + end + end + + -- updates the token modifiers with the provided data + ---@param tokenData Table Contains the chaos token metadata + TokenArrangerApi.onTokenDataChanged = function(fullData) + callIfExistent("onTokenDataChanged", fullData) + end + + -- deletes already laid out tokens + TokenArrangerApi.deleteCopiedTokens = function() + callIfExistent("deleteCopiedTokens") + end + + -- updates the laid out tokens + TokenArrangerApi.layout = function() + Wait.time(function() callIfExistent("layout") end, 0.1) + end + + return TokenArrangerApi +end +end) +__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local BlessCurseManagerApi = {} + local MANAGER_GUID = "5933fb" + + -- removes all taken tokens and resets the counts + BlessCurseManagerApi.removeTakenTokensAndReset = function() + local BlessCurseManager = getObjectFromGUID(MANAGER_GUID) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10) + Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.sealedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("sealedToken", { type = type, guid = guid }) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.releasedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("releasedToken", { type = type, guid = guid }) + end + + -- broadcasts the current status for bless/curse tokens + ---@param playerColor String Color of the player to show the broadcast to + BlessCurseManagerApi.broadcastStatus = function(playerColor) + getObjectFromGUID(MANAGER_GUID).call("broadcastStatus", playerColor) + end + + -- adds Wendy's menu to the hovered card (allows sealing of tokens) + ---@param color String Color of the player to show the broadcast to + BlessCurseManagerApi.addWendysMenu = function(playerColor, hoveredObject) + getObjectFromGUID(MANAGER_GUID).call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject }) + end + + return BlessCurseManagerApi +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/Nephthys4") +end) +__bundle_register("playercards/cards/Nephthys4", function(require, _LOADED, __bundle_register, __bundle_modules) +VALID_TOKENS = { + ["Bless"] = true +} + +SHOW_MULTI_RELEASE = 3 + +require("playercards/CardsThatSealTokens") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nephthys (4) 5659d1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nephthys (4) 5659d1.yaml index 5dbeb16a2..55a1816dc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nephthys (4) 5659d1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nephthys (4) 5659d1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449601 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.0 posY: 3.92 posZ: -16.7 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Newspaper (2) 9bcdee.yaml b/unpacked/Bag All Player Cards 15bb07/Card Newspaper (2) 9bcdee.yaml index 85eb5f2be..f78bdb7df 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Newspaper (2) 9bcdee.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Newspaper (2) 9bcdee.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368847 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 4.95 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Newspaper ee20c9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Newspaper ee20c9.yaml index a78ae66c3..c5fc966db 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Newspaper ee20c9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Newspaper ee20c9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368826 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.95 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nightmare Bauble (3) d6f6f1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nightmare Bauble (3) d6f6f1.yaml index 8bda5e5d2..9eac782c7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nightmare Bauble (3) d6f6f1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nightmare Bauble (3) d6f6f1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 448735 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.16 posY: 3.6 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nihilism fc4168.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nihilism fc4168.yaml index 31632b394..211f36c1b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nihilism fc4168.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nihilism fc4168.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538702 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.02 posY: 4.04 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nikola Tesla 03695f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nikola Tesla 03695f.yaml index 7b00c527b..fcb3cad2f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nikola Tesla 03695f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nikola Tesla 03695f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558002 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 79.06 posY: 3.33 posZ: 8.09 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nimble b8843c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nimble b8843c.yaml index e794f2c33..281bc92f3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nimble b8843c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nimble b8843c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538615 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.17 posY: 3.08 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nine of Rods (3) c7fe4a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nine of Rods (3) c7fe4a.yaml index ffc4fdc1e..51bfe62c8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nine of Rods (3) c7fe4a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nine of Rods (3) c7fe4a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449529 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 5.54 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nkosi Mabati (3) 6c5628.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nkosi Mabati (3) 6c5628.yaml index 7430d5593..a3d893620 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nkosi Mabati (3) 6c5628.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nkosi Mabati (3) 6c5628.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378929 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.18 posY: 2.8 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card No Stone Unturned (5) 1f3f16.yaml b/unpacked/Bag All Player Cards 15bb07/Card No Stone Unturned (5) 1f3f16.yaml index 8bba5fbe8..4d9589ac0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card No Stone Unturned (5) 1f3f16.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card No Stone Unturned (5) 1f3f16.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430658 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 5.54 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card No Stone Unturned 44cf4a.yaml b/unpacked/Bag All Player Cards 15bb07/Card No Stone Unturned 44cf4a.yaml index c822e956a..5cc6ce2d1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card No Stone Unturned 44cf4a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card No Stone Unturned 44cf4a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368415 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 5.03 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Norman Withers a5d9bb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Norman Withers a5d9bb.yaml index 29fef4a39..cb4a44339 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Norman Withers a5d9bb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Norman Withers a5d9bb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379204 ColorDiffuse: @@ -39,9 +39,9 @@ Snap: true States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 272607 ColorDiffuse: @@ -85,10 +85,10 @@ States: posY: 1.49510384 posZ: 10.4751749 rotX: -1.76099633e-07 - rotY: 270 + rotY: 270.0 rotZ: -6.83984069e-07 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' @@ -100,11 +100,11 @@ Transform: posX: 25.38 posY: 3.55 posZ: 2.79 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Norman Withers e0a155.yaml b/unpacked/Bag All Player Cards 15bb07/Card Norman Withers e0a155.yaml index 3bf428822..9b0ace10b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Norman Withers e0a155.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Norman Withers e0a155.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379501 ColorDiffuse: @@ -41,9 +41,9 @@ Snap: true States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 440900 ColorDiffuse: @@ -93,7 +93,7 @@ States: rotY: 179.994492 rotZ: -3.71937716e-07 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' @@ -106,11 +106,11 @@ Transform: posX: 26.93 posY: 3.69 posZ: -15.85 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Not without a fight! d1d7fa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Not without a fight! d1d7fa.yaml index dfa7d5fb6..1934f53b2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Not without a fight! d1d7fa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Not without a fight! d1d7fa.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368803 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.06 posY: 3.81 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nothing Left to Lose (3) f0389b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nothing Left to Lose (3) f0389b.yaml index 70862be87..edbeeb2d1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nothing Left to Lose (3) f0389b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nothing Left to Lose (3) f0389b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 448738 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.17 posY: 3.2 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Obfuscation 5ec6d0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Obfuscation 5ec6d0.yaml index b2a3f992c..0a91af1db 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Obfuscation 5ec6d0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Obfuscation 5ec6d0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587421 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.04 posY: 3.95 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Obscure Studies c5d8a9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Obscure Studies c5d8a9.yaml index 827a039d9..2508967a0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Obscure Studies c5d8a9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Obscure Studies c5d8a9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 588202 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.08 posY: 3.73 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Observed (4) cf5ac8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Observed (4) cf5ac8.yaml index e0fe62e49..3cc5f9572 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Observed (4) cf5ac8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Observed (4) cf5ac8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449533 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 5.53 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Obsessive a2e7d7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Obsessive a2e7d7.yaml index ccb69f9b2..3f1b1b155 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Obsessive a2e7d7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Obsessive a2e7d7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538802 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.08 posY: 3.76 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Obsidian Bracelet 972250.yaml b/unpacked/Bag All Player Cards 15bb07/Card Obsidian Bracelet 972250.yaml index 07e556752..9004da8e4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Obsidian Bracelet 972250.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Obsidian Bracelet 972250.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379017 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 13.24 posY: 2.21 posZ: 49.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Occult Evidence 3586e6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Occult Evidence 3586e6.yaml index 07d6f0b5b..8c9e9cd1e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Occult Evidence 3586e6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Occult Evidence 3586e6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 582702 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 5.29 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Occult Invocation 010509.yaml b/unpacked/Bag All Player Cards 15bb07/Card Occult Invocation 010509.yaml index b8611da6e..5d9289036 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Occult Invocation 010509.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Occult Invocation 010509.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538815 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 5.56 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Occult Lexicon (3) 71d99c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Occult Lexicon (3) 71d99c.yaml index a5166ea88..99ba5d4a6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Occult Lexicon (3) 71d99c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Occult Lexicon (3) 71d99c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449524 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.97 posY: 3.69 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Occult Lexicon 5d6728.yaml b/unpacked/Bag All Player Cards 15bb07/Card Occult Lexicon 5d6728.yaml index 7b3948fca..53bb33dd5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Occult Lexicon 5d6728.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Occult Lexicon 5d6728.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 592120 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.05 posY: 3.87 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Occult Scraps 6aea76.yaml b/unpacked/Bag All Player Cards 15bb07/Card Occult Scraps 6aea76.yaml index 5abe13e3c..a15ced697 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Occult Scraps 6aea76.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Occult Scraps 6aea76.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587707 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 5.17 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Occult Theory (1) 49a338.yaml b/unpacked/Bag All Player Cards 15bb07/Card Occult Theory (1) 49a338.yaml index 3847ca0da..e3175d133 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Occult Theory (1) 49a338.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Occult Theory (1) 49a338.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379055 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.19 posY: 2.32 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Offer You Cannot Refuse e27c93.yaml b/unpacked/Bag All Player Cards 15bb07/Card Offer You Cannot Refuse e27c93.yaml index fe99817ee..560cec83f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Offer You Cannot Refuse e27c93.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Offer You Cannot Refuse e27c93.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545212 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.84 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Old Book of Lore (3) 8a0060.yaml b/unpacked/Bag All Player Cards 15bb07/Card Old Book of Lore (3) 8a0060.yaml index d50cee5e0..4ba7e22b6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Old Book of Lore (3) 8a0060.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Old Book of Lore (3) 8a0060.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 448837 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 18.18 posY: 3.38 posZ: -57.02 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Old Book of Lore 063fd8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Old Book of Lore 063fd8.yaml index 982309e41..5ddb1d19c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Old Book of Lore 063fd8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Old Book of Lore 063fd8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368431 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 19.69 posY: 3.37 posZ: -56.67 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Old Hunting Rifle (3) 44a37f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Old Hunting Rifle (3) 44a37f.yaml index b39033073..f6f8703ee 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Old Hunting Rifle (3) 44a37f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Old Hunting Rifle (3) 44a37f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 314800 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.13 posY: 3.8 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Old Keyring (3) e7d988.yaml b/unpacked/Bag All Player Cards 15bb07/Card Old Keyring (3) e7d988.yaml index 16398596f..668929ce0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Old Keyring (3) e7d988.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Old Keyring (3) e7d988.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379141 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 16.72 posY: 3.38 posZ: 65.64 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Old Keyring 5888da.yaml b/unpacked/Bag All Player Cards 15bb07/Card Old Keyring 5888da.yaml index 3c6e5bc00..62008d063 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Old Keyring 5888da.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Old Keyring 5888da.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550805 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.97 posY: 3.73 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Old Shotgun (2) 7eb1ec.yaml b/unpacked/Bag All Player Cards 15bb07/Card Old Shotgun (2) 7eb1ec.yaml index fd85919aa..cb673e7a5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Old Shotgun (2) 7eb1ec.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Old Shotgun (2) 7eb1ec.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378926 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.19 posY: 2.42 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Olive McBride 9683d0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Olive McBride 9683d0.yaml index 49170db1c..c82b20385 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Olive McBride 9683d0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Olive McBride 9683d0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230321 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.79 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card On Your Own (3) 2ebdf1.yaml b/unpacked/Bag All Player Cards 15bb07/Card On Your Own (3) 2ebdf1.yaml index 0526032e7..5f1ba4cb5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card On Your Own (3) 2ebdf1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card On Your Own (3) 2ebdf1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545209 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.18 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card On Your Own (3) b0c61c.yaml b/unpacked/Bag All Player Cards 15bb07/Card On Your Own (3) b0c61c.yaml index 0e9e63e2e..5113e669c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card On Your Own (3) b0c61c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card On Your Own (3) b0c61c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368858 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.15 posY: 4.14 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card On the Hunt (3) a336de.yaml b/unpacked/Bag All Player Cards 15bb07/Card On the Hunt (3) a336de.yaml index 7c4732c80..b891d5f54 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card On the Hunt (3) a336de.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card On the Hunt (3) a336de.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379018 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.13 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card On the Hunt a13ca4.yaml b/unpacked/Bag All Player Cards 15bb07/Card On the Hunt a13ca4.yaml index 9c46da1df..d65e003b1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card On the Hunt a13ca4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card On the Hunt a13ca4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226314 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.03 posY: 3.69 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card On the Lam ea6d44.yaml b/unpacked/Bag All Player Cards 15bb07/Card On the Lam ea6d44.yaml index 970abf3c8..a362715da 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card On the Lam ea6d44.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card On the Lam ea6d44.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 586823 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card On the Mend ac3502.yaml b/unpacked/Bag All Player Cards 15bb07/Card On the Mend ac3502.yaml index bae116c1d..89fc3a1bc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card On the Mend ac3502.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card On the Mend ac3502.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587703 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 15.8 posY: 2.21 posZ: 59.63 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card On the Trail (1) 4e4179.yaml b/unpacked/Bag All Player Cards 15bb07/Card On the Trail (1) 4e4179.yaml index 209d723ad..adc019f0f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card On the Trail (1) 4e4179.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card On the Trail (1) 4e4179.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378922 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.19 posY: 2.41 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card On the Trail (3) b94090.yaml b/unpacked/Bag All Player Cards 15bb07/Card On the Trail (3) b94090.yaml index 635825ca6..51845d949 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card On the Trail (3) b94090.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card On the Trail (3) b94090.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378923 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.19 posY: 2.6 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card One in the Chamber 919856.yaml b/unpacked/Bag All Player Cards 15bb07/Card One in the Chamber 919856.yaml index c22b3e0e5..ba17e039a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card One in the Chamber 919856.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card One in the Chamber 919856.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379022 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 17.02 posY: 3.33 posZ: 65.98 - rotX: 356 - rotY: 270 - rotZ: 358 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 356.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card One-Two Punch (5) 8ffa44.yaml b/unpacked/Bag All Player Cards 15bb07/Card One-Two Punch (5) 8ffa44.yaml index 3f76c5b37..d498cf1d5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card One-Two Punch (5) 8ffa44.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card One-Two Punch (5) 8ffa44.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545330 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.73 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card One-Two Punch 22bb1e.yaml b/unpacked/Bag All Player Cards 15bb07/Card One-Two Punch 22bb1e.yaml index daed897a6..c85ee70e8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card One-Two Punch 22bb1e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card One-Two Punch 22bb1e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545315 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 4.06 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Onyx Pentacle (4) 647c62.yaml b/unpacked/Bag All Player Cards 15bb07/Card Onyx Pentacle (4) 647c62.yaml index 7073b9a4a..a5bbd58b1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Onyx Pentacle (4) 647c62.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Onyx Pentacle (4) 647c62.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379122 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.74 posY: 3.35 posZ: 65.49 - rotX: 359 - rotY: 270 - rotZ: 2 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 2.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Onyx Pentacle 95f4b0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Onyx Pentacle 95f4b0.yaml index 99bdd22a4..778963c1f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Onyx Pentacle 95f4b0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Onyx Pentacle 95f4b0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379109 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 358 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Oops! (2) 70772b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Oops! (2) 70772b.yaml index ccaf5f44f..fc51b26f4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Oops! (2) 70772b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Oops! (2) 70772b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 314905 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.05 posY: 3.83 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Oops! 59d89b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Oops! 59d89b.yaml index a47e12f1a..5bcebdf6a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Oops! 59d89b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Oops! 59d89b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368815 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.16 posY: 4.15 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Open Gate a33acd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Open Gate a33acd.yaml index a01daf8fb..e3343d3a8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Open Gate a33acd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Open Gate a33acd.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 444024 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.79 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Opportunist (2) 63f145.yaml b/unpacked/Bag All Player Cards 15bb07/Card Opportunist (2) 63f145.yaml index 3d4ca42da..bab4179d5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Opportunist (2) 63f145.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Opportunist (2) 63f145.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315241 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.68 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Opportunist a88392.yaml b/unpacked/Bag All Player Cards 15bb07/Card Opportunist a88392.yaml index 635818588..06b6bb3b1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Opportunist a88392.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Opportunist a88392.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 261702 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ornate Bow (3) 2acced.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ornate Bow (3) 2acced.yaml index 71f9854f7..b0647fdba 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ornate Bow (3) 2acced.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ornate Bow (3) 2acced.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368528 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 8.97 posY: 4.59 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Orphic Theory (1) d084d7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Orphic Theory (1) d084d7.yaml index f4d68034a..7aaf0f317 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Orphic Theory (1) d084d7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Orphic Theory (1) d084d7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379044 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 16.67 posY: 3.39 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Otherworld Codex (2) df0e22.yaml b/unpacked/Bag All Player Cards 15bb07/Card Otherworld Codex (2) df0e22.yaml index f4bb86a45..fe441fdf3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Otherworld Codex (2) df0e22.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Otherworld Codex (2) df0e22.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379930 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.11 posY: 3.67 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Otherworldly Compass (2) 19ab7c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Otherworldly Compass (2) 19ab7c.yaml index b8b279104..6e593ee97 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Otherworldly Compass (2) 19ab7c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Otherworldly Compass (2) 19ab7c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430647 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.84 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Out of Body Experience d64b8f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Out of Body Experience d64b8f.yaml index d32b6c056..7c5198525 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Out of Body Experience d64b8f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Out of Body Experience d64b8f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 235822 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.04 posY: 3.93 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Overpower (2) 017e1f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Overpower (2) 017e1f.yaml index d12353168..41d4e6df5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Overpower (2) 017e1f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Overpower (2) 017e1f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545324 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.14 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Overpower 5ab9f4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Overpower 5ab9f4.yaml index d870ec85b..fb8a8bdc6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Overpower 5ab9f4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Overpower 5ab9f4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368502 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 4.01 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Overpower e0881e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Overpower e0881e.yaml index 95ff18430..d910cfd1e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Overpower e0881e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Overpower e0881e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587208 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 78.81 posY: 3.32 posZ: 7.67 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Overzealous 88a9b3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Overzealous 88a9b3.yaml index 2a4910172..c60208b37 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Overzealous 88a9b3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Overzealous 88a9b3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 431110 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.72 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Painkillers 0c859f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Painkillers 0c859f.yaml index f68bcc400..3ed0925db 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Painkillers 0c859f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Painkillers 0c859f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368513 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.99 posY: 3.73 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Panic 93e52d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Panic 93e52d.yaml index 3604b8ae7..d8b3aa149 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Panic 93e52d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Panic 93e52d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378919 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.19 posY: 2.41 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pantalone adf028.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pantalone adf028.yaml index d6e6bc4d4..16db4531c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pantalone adf028.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pantalone adf028.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 295603 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.88 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Paradimensional Understanding 3c3dfa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Paradimensional Understanding 3c3dfa.yaml index d7cabb967..efec717f5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Paradimensional Understanding 3c3dfa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Paradimensional Understanding 3c3dfa.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 588605 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 82.2 posY: 3.3 posZ: 23.05 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Paradoxical Covenant (2) 541ee9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Paradoxical Covenant (2) 541ee9.yaml index d9b1439e3..f61df3f60 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Paradoxical Covenant (2) 541ee9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Paradoxical Covenant (2) 541ee9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 553112 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.07 posY: 3.86 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Parallel Fates (2) 583026.yaml b/unpacked/Bag All Player Cards 15bb07/Card Parallel Fates (2) 583026.yaml index 49f45e8c9..6da836f43 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Parallel Fates (2) 583026.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Parallel Fates (2) 583026.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379056 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.19 posY: 2.3 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Parallel Fates 47bdba.yaml b/unpacked/Bag All Player Cards 15bb07/Card Parallel Fates 47bdba.yaml index 4591438cd..d1ea237c1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Parallel Fates 47bdba.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Parallel Fates 47bdba.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538713 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.88 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Paranoia c17498.yaml b/unpacked/Bag All Player Cards 15bb07/Card Paranoia c17498.yaml index e353b37c0..dce26ed34 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Paranoia c17498.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Paranoia c17498.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 527401 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 78.88 posY: 3.29 posZ: 26.84 - rotX: 358 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pathfinder (1) (Taboo) ecbea8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pathfinder (1) (Taboo) ecbea8.yaml index 14b7bdf74..9ed2871e4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pathfinder (1) (Taboo) ecbea8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pathfinder (1) (Taboo) ecbea8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450602 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.03 posY: 3.68 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pathfinder (1) 7f99cc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pathfinder (1) 7f99cc.yaml index 662987ea5..ee720c294 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pathfinder (1) 7f99cc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pathfinder (1) 7f99cc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430641 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.14 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Patrice Hathaway 877f4d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Patrice Hathaway 877f4d.yaml index 4a73d1ff3..7b25a388d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Patrice Hathaway 877f4d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Patrice Hathaway 877f4d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 274014 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.98 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Patrice Hathaway a7b79f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Patrice Hathaway a7b79f.yaml index c3bfb78e5..df7ed8b57 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Patrice Hathaway a7b79f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Patrice Hathaway a7b79f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 536635 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.91 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Patrice's Violin ea0007.yaml b/unpacked/Bag All Player Cards 15bb07/Card Patrice's Violin ea0007.yaml index b2a8b966d..93f378989 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Patrice's Violin ea0007.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Patrice's Violin ea0007.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 586210 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.12 posY: 3.94 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pay Day (1) 9f0b34.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pay Day (1) 9f0b34.yaml index f033ea712..1e881665f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pay Day (1) 9f0b34.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pay Day (1) 9f0b34.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315262 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.12 posY: 4.02 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pay Your Due 5b6c9f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pay Your Due 5b6c9f.yaml index 04f5ab794..03ce3e5b2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pay Your Due 5b6c9f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pay Your Due 5b6c9f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379150 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pendant of the Queen (Taboo) 6047d6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pendant of the Queen (Taboo) 6047d6.yaml index 751de692f..dadf0d2f7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pendant of the Queen (Taboo) 6047d6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pendant of the Queen (Taboo) 6047d6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 584709 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.11 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pendant of the Queen 9b0dcf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pendant of the Queen 9b0dcf.yaml index b3cc79099..97af28d5f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pendant of the Queen 9b0dcf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pendant of the Queen 9b0dcf.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 441027 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.75 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Penny White 73bccf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Penny White 73bccf.yaml index 397788ea7..542b51993 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Penny White 73bccf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Penny White 73bccf.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 312513 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.9 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Perception (2) 96b5ed.yaml b/unpacked/Bag All Player Cards 15bb07/Card Perception (2) 96b5ed.yaml index 2a8c7d13f..8985daeb4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Perception (2) 96b5ed.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Perception (2) 96b5ed.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538826 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.72 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Perception c6ac19.yaml b/unpacked/Bag All Player Cards 15bb07/Card Perception c6ac19.yaml index 06a633f0b..39f33538a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Perception c6ac19.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Perception c6ac19.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368506 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Perseverance 0a390e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Perseverance 0a390e.yaml index ca6af3839..e0f6f2877 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Perseverance 0a390e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Perseverance 0a390e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368817 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.17 posY: 3.24 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Persuasion 1b0235.yaml b/unpacked/Bag All Player Cards 15bb07/Card Persuasion 1b0235.yaml index 778cd3ecf..6f9e220ce 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Persuasion 1b0235.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Persuasion 1b0235.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368414 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.69 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pet Oozeling 26398a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pet Oozeling 26398a.yaml index 770f634fd..bad116f42 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pet Oozeling 26398a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pet Oozeling 26398a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 233605 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.16 posY: 3.39 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Peter Sylvestre (2) e1e098.yaml b/unpacked/Bag All Player Cards 15bb07/Card Peter Sylvestre (2) e1e098.yaml index 301a55549..bb09ac2c2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Peter Sylvestre (2) e1e098.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Peter Sylvestre (2) e1e098.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368852 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.99 posY: 3.68 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Peter Sylvestre ffdeb5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Peter Sylvestre ffdeb5.yaml index aa6724783..61bad55eb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Peter Sylvestre ffdeb5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Peter Sylvestre ffdeb5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368832 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 5.52 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Physical Training (2) d708d9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Physical Training (2) d708d9.yaml index 70451cce1..58cac0d3b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Physical Training (2) d708d9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Physical Training (2) d708d9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226343 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 5.22 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Physical Training (4) ab51ce.yaml b/unpacked/Bag All Player Cards 15bb07/Card Physical Training (4) ab51ce.yaml index f42baf511..45f63c17c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Physical Training (4) ab51ce.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Physical Training (4) ab51ce.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545329 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.03 posY: 3.69 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Physical Training 1165db.yaml b/unpacked/Bag All Player Cards 15bb07/Card Physical Training 1165db.yaml index 07ab6ab78..26191491c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Physical Training 1165db.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Physical Training 1165db.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226323 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 18.91 posY: 3.37 posZ: -57.24 - rotX: 0 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pickpocketing (2) 2f4db2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pickpocketing (2) 2f4db2.yaml index e474bed94..b0c357c9c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pickpocketing (2) 2f4db2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pickpocketing (2) 2f4db2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315246 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.02 posY: 4.13 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pickpocketing da7c01.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pickpocketing da7c01.yaml index cd594b80e..b05c33020 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pickpocketing da7c01.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pickpocketing da7c01.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368625 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pilfer (3) e503ce.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pilfer (3) e503ce.yaml index a65d65737..f041a1099 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pilfer (3) e503ce.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pilfer (3) e503ce.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538626 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.96 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pilfer cc9563.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pilfer cc9563.yaml index d1e5d4479..4eb4d12de 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pilfer cc9563.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pilfer cc9563.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538613 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 5.24 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Plan of Action 96fd5d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Plan of Action 96fd5d.yaml index 0b45f8ccc..b690278ee 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Plan of Action 96fd5d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Plan of Action 96fd5d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 580418 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.08 posY: 3.77 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Plucky (1) 86b9c5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Plucky (1) 86b9c5.yaml index 9cc68d255..1725aa62d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Plucky (1) 86b9c5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Plucky (1) 86b9c5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368834 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.76 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Plucky (3) 7a2fe9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Plucky (3) 7a2fe9.yaml index 240ebdf6d..789b53193 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Plucky (3) 7a2fe9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Plucky (3) 7a2fe9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378910 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.18 posY: 2.96 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pnakotic Manuscripts (5) 344d98.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pnakotic Manuscripts (5) 344d98.yaml index 3e2ab90cc..c0a3f7254 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pnakotic Manuscripts (5) 344d98.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pnakotic Manuscripts (5) 344d98.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 262204 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.07 posY: 3.87 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pocket Multi Tool 7421ed.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pocket Multi Tool 7421ed.yaml index c2ed18fe8..fc01e4f6c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pocket Multi Tool 7421ed.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pocket Multi Tool 7421ed.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379123 ColorDiffuse: @@ -61,11 +61,11 @@ Transform: posX: 16.77 posY: 3.37 posZ: 65.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pocket Portal 35e8e2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pocket Portal 35e8e2.yaml index cbb4e81f5..81113f642 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pocket Portal 35e8e2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pocket Portal 35e8e2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 584027 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.18 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pocket Telescope 98eb87.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pocket Telescope 98eb87.yaml index 8e6a0fd3f..283b9e143 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pocket Telescope 98eb87.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pocket Telescope 98eb87.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378935 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.18 posY: 2.62 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Poisoned 819f52.yaml b/unpacked/Bag All Player Cards 15bb07/Card Poisoned 819f52.yaml index 3c7bab84f..8bc60a14f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Poisoned 819f52.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Poisoned 819f52.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 235644 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.02 posY: 4.01 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Police Badge (2) da46e0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Police Badge (2) da46e0.yaml index 8be7380cb..26373774c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Police Badge (2) da46e0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Police Badge (2) da46e0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226346 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 19.07 posY: 3.37 posZ: -56.79 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Possessed 04b3a9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Possessed 04b3a9.yaml index cca53fff0..329342425 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Possessed 04b3a9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Possessed 04b3a9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450319 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 79.42 posY: 3.32 posZ: 7.65 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Powder of Ibn Ghazi f96ed0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Powder of Ibn Ghazi f96ed0.yaml index a61b5cfe4..bbe13d8bb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Powder of Ibn Ghazi f96ed0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Powder of Ibn Ghazi f96ed0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232951 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.99 posY: 3.75 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Power Word c91c1d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Power Word c91c1d.yaml index edc25c385..38084984e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Power Word c91c1d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Power Word c91c1d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379105 ColorDiffuse: @@ -67,11 +67,11 @@ Transform: posX: 16.67 posY: 3.38 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Practice Makes Perfect 1ac667.yaml b/unpacked/Bag All Player Cards 15bb07/Card Practice Makes Perfect 1ac667.yaml index 1b3a0d829..d81233cf8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Practice Makes Perfect 1ac667.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Practice Makes Perfect 1ac667.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 447832 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.73 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Precious Memento (4) 358be4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Precious Memento (4) 358be4.yaml index 9da8c3e6c..d583a753e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Precious Memento (4) 358be4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Precious Memento (4) 358be4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378953 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.18 posY: 2.86 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Precious Memento (4) f69d3f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Precious Memento (4) f69d3f.yaml index e56f1c091..70ceb5e81 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Precious Memento (4) f69d3f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Precious Memento (4) f69d3f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378952 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.18 posY: 2.78 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Predator or Prey 6c726b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Predator or Prey 6c726b.yaml index 6387c0258..c4867eb88 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Predator or Prey 6c726b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Predator or Prey 6c726b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379131 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.72 posY: 3.37 posZ: 65.64 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Predestined ec7702.yaml b/unpacked/Bag All Player Cards 15bb07/Card Predestined ec7702.yaml index b06730dcd..801697d03 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Predestined ec7702.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Predestined ec7702.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 586029 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.02 posY: 4.0 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Premonition e470cd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Premonition e470cd.yaml index 65e3e4f10..62bbf86d7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Premonition e470cd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Premonition e470cd.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 276300 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.01 posY: 3.88 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Prepared for the Worst (2) a4f62a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Prepared for the Worst (2) a4f62a.yaml index cf87b4de0..dfc2aebfd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Prepared for the Worst (2) a4f62a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Prepared for the Worst (2) a4f62a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379029 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 17.02 posY: 3.35 posZ: 65.98 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Prepared for the Worst 831b6b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Prepared for the Worst 831b6b.yaml index c5c8c3d05..49d7fd7c0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Prepared for the Worst 831b6b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Prepared for the Worst 831b6b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226310 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.94 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Preposterous Sketches (2) 5e32a5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Preposterous Sketches (2) 5e32a5.yaml index 69c6d4116..0eaefa371 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Preposterous Sketches (2) 5e32a5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Preposterous Sketches (2) 5e32a5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 313906 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.06 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Preposterous Sketches 60b353.yaml b/unpacked/Bag All Player Cards 15bb07/Card Preposterous Sketches 60b353.yaml index abc5386b8..1610b118b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Preposterous Sketches 60b353.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Preposterous Sketches 60b353.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368416 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.72 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Prescient 7e7873.yaml b/unpacked/Bag All Player Cards 15bb07/Card Prescient 7e7873.yaml index 2400fe044..649cf3a43 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Prescient 7e7873.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Prescient 7e7873.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538717 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 5.01 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Press Pass (2) a6c839.yaml b/unpacked/Bag All Player Cards 15bb07/Card Press Pass (2) a6c839.yaml index 9e8c855c8..4ce890692 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Press Pass (2) a6c839.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Press Pass (2) a6c839.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379048 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.67 posY: 3.38 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 358 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Preston Fairmont 5e6298.yaml b/unpacked/Bag All Player Cards 15bb07/Card Preston Fairmont 5e6298.yaml index 880d5f14b..2c07cf6f3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Preston Fairmont 5e6298.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Preston Fairmont 5e6298.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 271923 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.58 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Preston Fairmont 78c512.yaml b/unpacked/Bag All Player Cards 15bb07/Card Preston Fairmont 78c512.yaml index a35bd5826..92657f158 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Preston Fairmont 78c512.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Preston Fairmont 78c512.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 272804 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.89 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Priest of Two Faiths (1) 48e4a3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Priest of Two Faiths (1) 48e4a3.yaml index 5a5622a07..2b4a07bc3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Priest of Two Faiths (1) 48e4a3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Priest of Two Faiths (1) 48e4a3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232104 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 4.43 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Professor Warren Rice 42806b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Professor Warren Rice 42806b.yaml index 35d90c936..94afbdae6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Professor Warren Rice 42806b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Professor Warren Rice 42806b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232904 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 4.66 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Professor William Webb (2) 1905cf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Professor William Webb (2) 1905cf.yaml index fb9bdd236..22fef1fb1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Professor William Webb (2) 1905cf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Professor William Webb (2) 1905cf.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378944 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.18 posY: 2.85 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Professor William Webb cc8571.yaml b/unpacked/Bag All Player Cards 15bb07/Card Professor William Webb cc8571.yaml index 7ce0a98ac..8e80180e1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Professor William Webb cc8571.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Professor William Webb cc8571.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378942 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.18 posY: 2.71 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Promise of Power d8b64b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Promise of Power d8b64b.yaml index c93cf67b3..ca3812ee8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Promise of Power d8b64b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Promise of Power d8b64b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 584926 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.96 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Prophesiae Profana (5) (Taboo) 3c2561.yaml b/unpacked/Bag All Player Cards 15bb07/Card Prophesiae Profana (5) (Taboo) 3c2561.yaml index 90b631229..5480ab16e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Prophesiae Profana (5) (Taboo) 3c2561.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Prophesiae Profana (5) (Taboo) 3c2561.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558214 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 21.63 posY: 4.34 posZ: -60.24 - rotX: 0 - rotY: 270 - rotZ: 3 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Prophesiae Profana (5) 55999d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Prophesiae Profana (5) 55999d.yaml index 6191fc217..2fc6a652b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Prophesiae Profana (5) 55999d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Prophesiae Profana (5) 55999d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379035 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.08 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Prophesy 493b03.yaml b/unpacked/Bag All Player Cards 15bb07/Card Prophesy 493b03.yaml index 510f8725e..f0d5d9add 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Prophesy 493b03.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Prophesy 493b03.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430906 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.08 posY: 3.7 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Prophetic (3) 0e64cb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Prophetic (3) 0e64cb.yaml index 0a749b72b..ce32e0a37 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Prophetic (3) 0e64cb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Prophetic (3) 0e64cb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378958 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.18 posY: 2.91 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Protecting the Anirniq (2) 91204c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Protecting the Anirniq (2) 91204c.yaml index ac5e7699f..fb314abaa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Protecting the Anirniq (2) 91204c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Protecting the Anirniq (2) 91204c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378940 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.18 posY: 2.63 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Protective Gear (2) 9a5cb1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Protective Gear (2) 9a5cb1.yaml index 74269ecec..3fd69219c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Protective Gear (2) 9a5cb1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Protective Gear (2) 9a5cb1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378933 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.65 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Protective Incantation (1) 0fd4ae.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Protective Incantation (1) 0fd4ae.ttslua index b6136d44d..2a9b3e2b5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Protective Incantation (1) 0fd4ae.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Protective Incantation (1) 0fd4ae.ttslua @@ -1,75 +1,350 @@ -function onload() - chaosbag = getChaosBag() - sealedTokens = { } - IMAGE_TOKEN_MAP = { } - for i,v in pairs(Global.getVar("IMAGE_TOKEN_MAP")) do - IMAGE_TOKEN_MAP[i] = v +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("playercards/CardsThatSealTokens", function(require, _LOADED, __bundle_register, __bundle_modules) +--[[ Library for cards that seal tokens +This file is used to add sealing option to cards' context menu. +Valid options (set before requiring this file): + +UPDATE_ON_HOVER --@type: boolean + - automatically updates the context menu options when the card is hovered + - the "Read Bag" function reads the content of the chaos bag to update the context menu + - example usage: "Unrelenting" (to only display valid tokens) + +SHOW_SINGLE_RELEASE --@type: boolean + - enables an entry in the context menu + - this entry allows releasing a single token + - example usage: "Holy Spear" (to keep the other tokens and just release one) + +SHOW_MULTI_RELEASE --@type: number (amount of tokens to release at once) + - enables an entry in the context menu + - this enty allows releasing of multiple tokens at once + - example usage: "Nephthys" (to release 3 bless tokens at once) + +SHOW_MULTI_SEAL --@type: number (amount of tokens to seal at once) + - enables an entry in the context menu + - this entry allows sealing of multiple tokens at once + - example usage: "Holy Spear" (to seal two bless tokens at once) + +VALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens should be abled to be sealed + - needs to be defined for each card -> even if empty + - example usage: "The Chthonian Stone" + > VALID_TOKENS = { + > ["Skull"] = true, + > ["Cultist"] = true, + > ["Tablet"] = true, + > ["Elder Thing"] = true, + > } + +INVALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens are invalid for sealing + - only needs to be defined if needed + - usually combined with empty "VALID_TOKENS" table + - example usage: "Protective Incantation" (not allowed to seal Auto-fail) + +---------------------------------------------------------- +Example 1: Crystalline Elder Sign +This card can only seal the "+1" or "Elder Sign" token, +it does not need specific options for multi-sealing or releasing. +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["+1"] = true, +> ["Elder Sign"] = true +> } +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +---------------------------------------------------------- +Example 2: Holy Spear +This card features the following abilities (just listing the relevant parts): +- releasing a single bless token +- sealing two bless tokens +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["Bless"] = true +> } +> SHOW_SINGLE_RELEASE = true +> SHOW_MULTI_SEAL = 2 +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +----------------------------------------------------------]] + +local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi") +local tokenArrangerApi = require("accessories/TokenArrangerApi") +local sealedTokens = {} +local ID_URL_MAP = {} +local tokensInBag = {} + +function onSave() return JSON.encode(sealedTokens) end + +function onLoad(savedData) + sealedTokens = JSON.decode(savedData) or {} + ID_URL_MAP = Global.getTable("ID_URL_MAP") + generateContextMenu() +end + +-- builds the context menu +function generateContextMenu() + -- conditional single or multi release options + if SHOW_SINGLE_RELEASE then + self.addContextMenuItem("Release token", releaseOneToken) + elseif SHOW_MULTI_RELEASE then + self.addContextMenuItem("Release " .. SHOW_MULTI_RELEASE .. " token(s)", releaseMultipleTokens) + else + self.addContextMenuItem("Release token(s)", releaseAllTokens) + end + + -- main context menu options to seal tokens + for _, map in pairs(ID_URL_MAP) do + if (VALID_TOKENS[map.name] ~= nil) or (UPDATE_ON_HOVER and tokensInBag[map.name] and not INVALID_TOKENS[map.name]) then + if not SHOW_MULTI_SEAL then + self.addContextMenuItem("Seal " .. map.name, function(playerColor) + sealToken(map.name, playerColor) + end) + else + self.addContextMenuItem("Seal " .. SHOW_MULTI_SEAL .. " " .. map.name, function(playerColor) + readBag() + local allowed = true + local notFound + + for name, _ in pairs(VALID_TOKENS) do + if (tokensInBag[name] or 0) < SHOW_MULTI_SEAL then + allowed = false + notFound = name + end + end + + if allowed then + for i = 1, SHOW_MULTI_SEAL do + sealToken(map.name, playerColor) + end + else + printToColor("Not enough " .. notFound .. " tokens in the chaos bag.", playerColor) + end + end) + end end + end +end + +-- generates a list of chaos tokens that is in the chaos bag +function readBag() + local chaosbag = Global.call("findChaosBag") + tokensInBag = {} + + for _, token in ipairs(chaosbag.getObjects()) do + tokensInBag[token.name] = (tokensInBag[token.name] or 0) + 1 + end +end + +-- native event from TTS - used to update the context menu for cards like "Unrelenting" +function onHover() + if UPDATE_ON_HOVER then readBag() -end - -function readBag(playerColor) - if playerColor ~= nil then - printToColor("Reading chaos bag", playerColor) - end - - local tokensInBag = { } - for i,token in ipairs(chaosbag.getObjects()) do - if token.name ~= nil and token.name ~= "" then - tokensInBag[token.name] = true - end - end - - -- add menu items self.clearContextMenu() - self.addContextMenuItem("Release Token", releaseTokens) - for url,name in pairs(IMAGE_TOKEN_MAP) do - if tokensInBag[name] and name ~= "Auto-fail" then - self.addContextMenuItem("Seal " .. name, function(playerColor) sealToken(url, playerColor) end) + generateContextMenu() + end +end + +-- seals the named token on this card +function sealToken(name, playerColor) + if not Global.call("canTouchChaosTokens") then return end + local chaosbag = Global.call("findChaosBag") + for i, obj in ipairs(chaosbag.getObjects()) do + if obj.name == name then + chaosbag.takeObject({ + position = self.getPosition() + Vector(0, 0.5 + 0.1 * #sealedTokens, 0), + rotation = self.getRotation(), + index = i - 1, + smooth = false, + callback_function = function(token) + local guid = token.getGUID() + table.insert(sealedTokens, guid) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.sealedToken(name, guid) + end end + }) + return end - self.addContextMenuItem("Read Chaos Bag", readBag) + end + printToColor(name .. " token not found in chaos bag", playerColor) end -function sealToken(url, playerColor) - local pos = self.getPosition() - - local name = IMAGE_TOKEN_MAP[url] - for i,obj in ipairs(chaosbag.getObjects()) do - if obj.name == name then - chaosbag.takeObject({ - position={ pos.x, pos.y + 1, pos.z }, - index=i-1, - smooth=false, - callback_function=_sealToken - }) - return - end - end - printToColor(name .. " token not found in bag", playerColor) -end - -function _sealToken(obj) - table.insert(sealedTokens, obj) -end - -function releaseTokens(playerColor) +-- release the last sealed token +function releaseOneToken(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else printToColor("Releasing token", playerColor) - for i,obj in ipairs(sealedTokens) do - chaosbag.putObject(obj) - end - sealedTokens = { } + putTokenAway(table.remove(sealedTokens)) + end end -function getChaosBag() - local items = getObjectFromGUID("83ef06").getObjects() - local chaosbag = nil - for i,v in ipairs(items) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break - end +-- release multiple tokens at once +function releaseMultipleTokens(playerColor) + if SHOW_MULTI_RELEASE >= #sealedTokens then + for i = 1, SHOW_MULTI_RELEASE do + releaseOneToken(playerColor) end - if chaosbag == nil then printToAll("No chaos bag found") end - return chaosbag -end \ No newline at end of file + else + printToColor("Not enough " .. name .. " tokens sealed.", playerColor) + end +end + +-- releases all sealed tokens +function releaseAllTokens(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token(s)", playerColor) + for _, guid in ipairs(sealedTokens) do + putTokenAway(guid) + end + sealedTokens = {} + end +end + +-- returns the token (referenced by GUID) to the chaos bag +function putTokenAway(guid) + local token = getObjectFromGUID(guid) + if not token then return end + + local name = token.getName() + local chaosbag = Global.call("findChaosBag") + chaosbag.putObject(token) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.releasedToken(name, guid) + end +end +end) +__bundle_register("accessories/TokenArrangerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenArrangerApi = {} + + -- local function to call the token arranger, if it is on the table + ---@param functionName String Name of the function to cal + ---@param argument Variant Parameter to pass + local function callIfExistent(functionName, argument) + local tokenArranger = getObjectsWithTag("TokenArranger")[1] + if tokenArranger ~= nil then + tokenArranger.call(functionName, argument) + end + end + + -- updates the token modifiers with the provided data + ---@param tokenData Table Contains the chaos token metadata + TokenArrangerApi.onTokenDataChanged = function(fullData) + callIfExistent("onTokenDataChanged", fullData) + end + + -- deletes already laid out tokens + TokenArrangerApi.deleteCopiedTokens = function() + callIfExistent("deleteCopiedTokens") + end + + -- updates the laid out tokens + TokenArrangerApi.layout = function() + Wait.time(function() callIfExistent("layout") end, 0.1) + end + + return TokenArrangerApi +end +end) +__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local BlessCurseManagerApi = {} + local MANAGER_GUID = "5933fb" + + -- removes all taken tokens and resets the counts + BlessCurseManagerApi.removeTakenTokensAndReset = function() + local BlessCurseManager = getObjectFromGUID(MANAGER_GUID) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10) + Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.sealedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("sealedToken", { type = type, guid = guid }) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.releasedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("releasedToken", { type = type, guid = guid }) + end + + -- broadcasts the current status for bless/curse tokens + ---@param playerColor String Color of the player to show the broadcast to + BlessCurseManagerApi.broadcastStatus = function(playerColor) + getObjectFromGUID(MANAGER_GUID).call("broadcastStatus", playerColor) + end + + -- adds Wendy's menu to the hovered card (allows sealing of tokens) + ---@param color String Color of the player to show the broadcast to + BlessCurseManagerApi.addWendysMenu = function(playerColor, hoveredObject) + getObjectFromGUID(MANAGER_GUID).call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject }) + end + + return BlessCurseManagerApi +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/ProtectiveIncantation1") +end) +__bundle_register("playercards/cards/ProtectiveIncantation1", function(require, _LOADED, __bundle_register, __bundle_modules) +VALID_TOKENS = {} + +INVALID_TOKENS = { + ["Auto-fail"] = true +} + +UPDATE_ON_HOVER = true + +require("playercards/CardsThatSealTokens") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Protective Incantation (1) 0fd4ae.yaml b/unpacked/Bag All Player Cards 15bb07/Card Protective Incantation (1) 0fd4ae.yaml index 19b33bc2d..dfef10169 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Protective Incantation (1) 0fd4ae.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Protective Incantation (1) 0fd4ae.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230333 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.99 posY: 3.75 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Psychosis d83baf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Psychosis d83baf.yaml index 8b08c0bdc..990a25b79 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Psychosis d83baf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Psychosis d83baf.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 527403 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 79.24 posY: 3.32 posZ: 26.14 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Purifying Corruption (4) ac9763.yaml b/unpacked/Bag All Player Cards 15bb07/Card Purifying Corruption (4) ac9763.yaml index f1742e5da..7428627e7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Purifying Corruption (4) ac9763.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Purifying Corruption (4) ac9763.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449612 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.79 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Puzzle Box 44334c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Puzzle Box 44334c.yaml index 8d4f73441..6bd3eeb81 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Puzzle Box 44334c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Puzzle Box 44334c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 312510 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.71 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Quantum Flux edd34a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Quantum Flux edd34a.yaml index 1dca38cd0..b41d23717 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Quantum Flux edd34a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Quantum Flux edd34a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230307 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.0 posY: 3.79 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Quantum Paradox 0e4c07.yaml b/unpacked/Bag All Player Cards 15bb07/Card Quantum Paradox 0e4c07.yaml index 0db353543..900fb7a9a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Quantum Paradox 0e4c07.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Quantum Paradox 0e4c07.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379149 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.72 posY: 3.38 posZ: 65.64 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Quick Getaway 5cc3d2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Quick Getaway 5cc3d2.yaml index 5fce86da9..6648b0982 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Quick Getaway 5cc3d2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Quick Getaway 5cc3d2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379062 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.67 posY: 3.35 posZ: 65.93 - rotX: 358 - rotY: 270 - rotZ: 358 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Quick Learner (4) 3bbc0b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Quick Learner (4) 3bbc0b.yaml index bfb07bb53..f35e12176 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Quick Learner (4) 3bbc0b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Quick Learner (4) 3bbc0b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550828 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.01 posY: 3.74 posZ: -16.7 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Quick Study (2) 092e92.yaml b/unpacked/Bag All Player Cards 15bb07/Card Quick Study (2) 092e92.yaml index 76d93f10a..5b5492d73 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Quick Study (2) 092e92.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Quick Study (2) 092e92.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430645 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.09 posY: 3.68 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Quick Thinking (Taboo) 308967.yaml b/unpacked/Bag All Player Cards 15bb07/Card Quick Thinking (Taboo) 308967.yaml index 4674cc4de..30ebab9eb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Quick Thinking (Taboo) 308967.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Quick Thinking (Taboo) 308967.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450616 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.02 posY: 4.01 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Quick Thinking 99989c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Quick Thinking 99989c.yaml index 1a0b20caa..e0cea28bc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Quick Thinking 99989c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Quick Thinking 99989c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 261703 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 5.1 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Quickdraw Holster (4) 859736.yaml b/unpacked/Bag All Player Cards 15bb07/Card Quickdraw Holster (4) 859736.yaml index 0a1f98559..daafac8fa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Quickdraw Holster (4) 859736.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Quickdraw Holster (4) 859736.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378927 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.19 posY: 2.5 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rabbit's Foot (3) 3f91af.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rabbit's Foot (3) 3f91af.yaml index 2ca59dfb4..fb687fe65 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rabbit's Foot (3) 3f91af.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rabbit's Foot (3) 3f91af.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368855 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 5.35 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rabbit's Foot f34090.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rabbit's Foot f34090.yaml index 4a09e34ce..1d5d0b30c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rabbit's Foot f34090.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rabbit's Foot f34090.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368823 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 34.73 posY: 3.38 posZ: -45.83 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Radiant Smite (1) 92c295.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Radiant Smite (1) 92c295.ttslua index d819038d5..606b1342e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Radiant Smite (1) 92c295.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Radiant Smite (1) 92c295.ttslua @@ -1,81 +1,346 @@ -function onload() - mode = "Bless" - chaosbag = getChaosBag() - manager = getObjectFromGUID("5933fb") - sealedTokens = { } - IMAGE_TOKEN_MAP = { } - for i,v in pairs(Global.getVar("IMAGE_TOKEN_MAP")) do - IMAGE_TOKEN_MAP[i] = v - end +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} - -- add menu items - self.clearContextMenu() - self.addContextMenuItem("Release Token", releaseTokens, true) - for url,name in pairs(IMAGE_TOKEN_MAP) do - if name == mode then - self.addContextMenuItem("Seal " .. mode, function(playerColor) sealToken(url, playerColor) end, true) - end - end + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/RadiantSmite1") +end) +__bundle_register("playercards/cards/RadiantSmite1", function(require, _LOADED, __bundle_register, __bundle_modules) +VALID_TOKENS = { + ["Bless"] = true +} + +require("playercards/CardsThatSealTokens") +end) +__bundle_register("playercards/CardsThatSealTokens", function(require, _LOADED, __bundle_register, __bundle_modules) +--[[ Library for cards that seal tokens +This file is used to add sealing option to cards' context menu. +Valid options (set before requiring this file): + +UPDATE_ON_HOVER --@type: boolean + - automatically updates the context menu options when the card is hovered + - the "Read Bag" function reads the content of the chaos bag to update the context menu + - example usage: "Unrelenting" (to only display valid tokens) + +SHOW_SINGLE_RELEASE --@type: boolean + - enables an entry in the context menu + - this entry allows releasing a single token + - example usage: "Holy Spear" (to keep the other tokens and just release one) + +SHOW_MULTI_RELEASE --@type: number (amount of tokens to release at once) + - enables an entry in the context menu + - this enty allows releasing of multiple tokens at once + - example usage: "Nephthys" (to release 3 bless tokens at once) + +SHOW_MULTI_SEAL --@type: number (amount of tokens to seal at once) + - enables an entry in the context menu + - this entry allows sealing of multiple tokens at once + - example usage: "Holy Spear" (to seal two bless tokens at once) + +VALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens should be abled to be sealed + - needs to be defined for each card -> even if empty + - example usage: "The Chthonian Stone" + > VALID_TOKENS = { + > ["Skull"] = true, + > ["Cultist"] = true, + > ["Tablet"] = true, + > ["Elder Thing"] = true, + > } + +INVALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens are invalid for sealing + - only needs to be defined if needed + - usually combined with empty "VALID_TOKENS" table + - example usage: "Protective Incantation" (not allowed to seal Auto-fail) + +---------------------------------------------------------- +Example 1: Crystalline Elder Sign +This card can only seal the "+1" or "Elder Sign" token, +it does not need specific options for multi-sealing or releasing. +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["+1"] = true, +> ["Elder Sign"] = true +> } +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +---------------------------------------------------------- +Example 2: Holy Spear +This card features the following abilities (just listing the relevant parts): +- releasing a single bless token +- sealing two bless tokens +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["Bless"] = true +> } +> SHOW_SINGLE_RELEASE = true +> SHOW_MULTI_SEAL = 2 +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +----------------------------------------------------------]] + +local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi") +local tokenArrangerApi = require("accessories/TokenArrangerApi") +local sealedTokens = {} +local ID_URL_MAP = {} +local tokensInBag = {} + +function onSave() return JSON.encode(sealedTokens) end + +function onLoad(savedData) + sealedTokens = JSON.decode(savedData) or {} + ID_URL_MAP = Global.getTable("ID_URL_MAP") + generateContextMenu() end -function sealToken(url, playerColor) - local pos = self.getPosition() +-- builds the context menu +function generateContextMenu() + -- conditional single or multi release options + if SHOW_SINGLE_RELEASE then + self.addContextMenuItem("Release token", releaseOneToken) + elseif SHOW_MULTI_RELEASE then + self.addContextMenuItem("Release " .. SHOW_MULTI_RELEASE .. " token(s)", releaseMultipleTokens) + else + self.addContextMenuItem("Release token(s)", releaseAllTokens) + end - local name = IMAGE_TOKEN_MAP[url] - for i,obj in ipairs(chaosbag.getObjects()) do - if obj.name == name then - chaosbag.takeObject({ - position={ pos.x, pos.y + 1, pos.z }, - index=i-1, - smooth=false, - callback_function=_sealToken - }) - return - end - end - printToColor(name .. " token not found in bag", playerColor) -end + -- main context menu options to seal tokens + for _, map in pairs(ID_URL_MAP) do + if (VALID_TOKENS[map.name] ~= nil) or (UPDATE_ON_HOVER and tokensInBag[map.name] and not INVALID_TOKENS[map.name]) then + if not SHOW_MULTI_SEAL then + self.addContextMenuItem("Seal " .. map.name, function(playerColor) + sealToken(map.name, playerColor) + end) + else + self.addContextMenuItem("Seal " .. SHOW_MULTI_SEAL .. " " .. map.name, function(playerColor) + readBag() + local allowed = true + local notFound -function _sealToken(obj) - table.insert(sealedTokens, obj) - local guid = obj.getGUID() - local tokensTaken = manager.getVar("tokensTaken") - table.insert(tokensTaken[mode], guid) - manager.setVar("tokensTaken", tokensTaken) - manager.setVar("mode", mode) - printToAll("Sealing " .. mode .. " token " .. manager.call("getTokenCount")) -end - -function releaseTokens(playerColor) - if #sealedTokens == 0 then return end - local token = sealedTokens[#sealedTokens] - if token ~= nil then - local guid = token.getGUID() - chaosbag.putObject(token) - local tokensTaken = manager.getVar("tokensTaken") - for i,v in ipairs(tokensTaken[mode]) do - if v == guid then - table.remove(tokensTaken[mode], i) - break + for name, _ in pairs(VALID_TOKENS) do + if (tokensInBag[name] or 0) < SHOW_MULTI_SEAL then + allowed = false + notFound = name end - end - manager.setVar("tokensTaken", tokensTaken) - manager.setVar("mode", mode) - printToAll("Releasing " .. mode .. " token" .. manager.call("getTokenCount")) - end + end - table.remove(sealedTokens) + if allowed then + for i = 1, SHOW_MULTI_SEAL do + sealToken(map.name, playerColor) + end + else + printToColor("Not enough " .. notFound .. " tokens in the chaos bag.", playerColor) + end + end) + end + end + end end -function getChaosBag() - local items = getObjectFromGUID("83ef06").getObjects() - local chaosbag = nil - for i,v in ipairs(items) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break +-- generates a list of chaos tokens that is in the chaos bag +function readBag() + local chaosbag = Global.call("findChaosBag") + tokensInBag = {} + + for _, token in ipairs(chaosbag.getObjects()) do + tokensInBag[token.name] = (tokensInBag[token.name] or 0) + 1 + end +end + +-- native event from TTS - used to update the context menu for cards like "Unrelenting" +function onHover() + if UPDATE_ON_HOVER then + readBag() + self.clearContextMenu() + generateContextMenu() + end +end + +-- seals the named token on this card +function sealToken(name, playerColor) + if not Global.call("canTouchChaosTokens") then return end + local chaosbag = Global.call("findChaosBag") + for i, obj in ipairs(chaosbag.getObjects()) do + if obj.name == name then + chaosbag.takeObject({ + position = self.getPosition() + Vector(0, 0.5 + 0.1 * #sealedTokens, 0), + rotation = self.getRotation(), + index = i - 1, + smooth = false, + callback_function = function(token) + local guid = token.getGUID() + table.insert(sealedTokens, guid) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.sealedToken(name, guid) + end end + }) + return end - if chaosbag == nil then printToAll("No chaos bag found") end - return chaosbag -end \ No newline at end of file + end + printToColor(name .. " token not found in chaos bag", playerColor) +end + +-- release the last sealed token +function releaseOneToken(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token", playerColor) + putTokenAway(table.remove(sealedTokens)) + end +end + +-- release multiple tokens at once +function releaseMultipleTokens(playerColor) + if SHOW_MULTI_RELEASE >= #sealedTokens then + for i = 1, SHOW_MULTI_RELEASE do + releaseOneToken(playerColor) + end + else + printToColor("Not enough " .. name .. " tokens sealed.", playerColor) + end +end + +-- releases all sealed tokens +function releaseAllTokens(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token(s)", playerColor) + for _, guid in ipairs(sealedTokens) do + putTokenAway(guid) + end + sealedTokens = {} + end +end + +-- returns the token (referenced by GUID) to the chaos bag +function putTokenAway(guid) + local token = getObjectFromGUID(guid) + if not token then return end + + local name = token.getName() + local chaosbag = Global.call("findChaosBag") + chaosbag.putObject(token) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.releasedToken(name, guid) + end +end +end) +__bundle_register("accessories/TokenArrangerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenArrangerApi = {} + + -- local function to call the token arranger, if it is on the table + ---@param functionName String Name of the function to cal + ---@param argument Variant Parameter to pass + local function callIfExistent(functionName, argument) + local tokenArranger = getObjectsWithTag("TokenArranger")[1] + if tokenArranger ~= nil then + tokenArranger.call(functionName, argument) + end + end + + -- updates the token modifiers with the provided data + ---@param tokenData Table Contains the chaos token metadata + TokenArrangerApi.onTokenDataChanged = function(fullData) + callIfExistent("onTokenDataChanged", fullData) + end + + -- deletes already laid out tokens + TokenArrangerApi.deleteCopiedTokens = function() + callIfExistent("deleteCopiedTokens") + end + + -- updates the laid out tokens + TokenArrangerApi.layout = function() + Wait.time(function() callIfExistent("layout") end, 0.1) + end + + return TokenArrangerApi +end +end) +__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local BlessCurseManagerApi = {} + local MANAGER_GUID = "5933fb" + + -- removes all taken tokens and resets the counts + BlessCurseManagerApi.removeTakenTokensAndReset = function() + local BlessCurseManager = getObjectFromGUID(MANAGER_GUID) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10) + Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.sealedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("sealedToken", { type = type, guid = guid }) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.releasedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("releasedToken", { type = type, guid = guid }) + end + + -- broadcasts the current status for bless/curse tokens + ---@param playerColor String Color of the player to show the broadcast to + BlessCurseManagerApi.broadcastStatus = function(playerColor) + getObjectFromGUID(MANAGER_GUID).call("broadcastStatus", playerColor) + end + + -- adds Wendy's menu to the hovered card (allows sealing of tokens) + ---@param color String Color of the player to show the broadcast to + BlessCurseManagerApi.addWendysMenu = function(playerColor, hoveredObject) + getObjectFromGUID(MANAGER_GUID).call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject }) + end + + return BlessCurseManagerApi +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Radiant Smite (1) 92c295.yaml b/unpacked/Bag All Player Cards 15bb07/Card Radiant Smite (1) 92c295.yaml index b144b13e5..ecdd28e20 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Radiant Smite (1) 92c295.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Radiant Smite (1) 92c295.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232101 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.15 posY: 4.13 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Randall Cho 1f50e9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Randall Cho 1f50e9.yaml index fdae3e5ba..d3cae4529 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Randall Cho 1f50e9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Randall Cho 1f50e9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 585024 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.15 posY: 3.99 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Randolph Carter b04c8e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Randolph Carter b04c8e.yaml index 966f83760..77ae3fb55 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Randolph Carter b04c8e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Randolph Carter b04c8e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 452300 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 5.51 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Randolph Carter d253a6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Randolph Carter d253a6.yaml index ea34613a5..6129f840e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Randolph Carter d253a6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Randolph Carter d253a6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 452504 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.01 posY: 3.83 posZ: -16.7 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rational Thought 1c7a00.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rational Thought 1c7a00.yaml index b2a6b8d96..96db636a7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rational Thought 1c7a00.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rational Thought 1c7a00.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379154 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.05 posY: 3.91 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Read the Signs 75eca5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Read the Signs 75eca5.yaml index b591dfada..2e86764d9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Read the Signs 75eca5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Read the Signs 75eca5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 380126 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.02 posY: 3.92 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Recall the Future (2) a06aa7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Recall the Future (2) a06aa7.yaml index 1ae1b2522..d71584978 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Recall the Future (2) a06aa7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Recall the Future (2) a06aa7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230344 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 4.24 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Recharge (2) e27b3c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Recharge (2) e27b3c.yaml index 15c13d9b7..35c3aed00 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Recharge (2) e27b3c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Recharge (2) e27b3c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230339 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.17 posY: 3.17 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Recharge (4) 591789.yaml b/unpacked/Bag All Player Cards 15bb07/Card Recharge (4) 591789.yaml index 52c5aac6d..0528343e3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Recharge (4) 591789.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Recharge (4) 591789.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538727 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.81 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Reckless Assault 3ff641.yaml b/unpacked/Bag All Player Cards 15bb07/Card Reckless Assault 3ff641.yaml index 9f92ea152..3ed2a036b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Reckless Assault 3ff641.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Reckless Assault 3ff641.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368503 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.69 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Reckless c45e67.yaml b/unpacked/Bag All Player Cards 15bb07/Card Reckless c45e67.yaml index de9f2f7a6..01f5ce909 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Reckless c45e67.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Reckless c45e67.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538602 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.81 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Refine 482b10.yaml b/unpacked/Bag All Player Cards 15bb07/Card Refine 482b10.yaml index d47b2fe9b..487e9aab1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Refine 482b10.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Refine 482b10.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379145 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Relentless af3efd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Relentless af3efd.yaml index 853af2a07..1fd1c5a0c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Relentless af3efd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Relentless af3efd.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545307 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.77 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Reliable (1) 102fad.yaml b/unpacked/Bag All Player Cards 15bb07/Card Reliable (1) 102fad.yaml index 1ac5b1de9..c46eff3ef 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Reliable (1) 102fad.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Reliable (1) 102fad.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226336 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.17 posY: 2.93 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Relic Hunter (3) 3c959c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Relic Hunter (3) 3c959c.yaml index f886cbf53..4592f9c40 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Relic Hunter (3) 3c959c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Relic Hunter (3) 3c959c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368523 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 30.5 posY: 2.3 posZ: -81.43 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 35bc58.yaml b/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 35bc58.yaml index 29bb90a8e..411e006c4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 35bc58.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 35bc58.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 235857 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.21 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 7667ef.yaml b/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 7667ef.yaml index 820e01496..7d5033dfd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 7667ef.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 7667ef.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 235667 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.12 posY: 3.95 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 87718c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 87718c.yaml index a67b8b818..c81148251 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 87718c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 87718c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 235840 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.08 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages e27a30.yaml b/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages e27a30.yaml index 3e0b74f18..d20d1c76f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages e27a30.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages e27a30.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 235603 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 101.08 posY: 1.99 posZ: -13.62 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Research Librarian 8f91ce.yaml b/unpacked/Bag All Player Cards 15bb07/Card Research Librarian 8f91ce.yaml index b5b656974..e3900f010 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Research Librarian 8f91ce.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Research Librarian 8f91ce.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368426 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 19.65 posY: 3.37 posZ: -56.91 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Research Notes a37bd4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Research Notes a37bd4.yaml index ceedacf9c..0e6a44d40 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Research Notes a37bd4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Research Notes a37bd4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379038 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 358 - rotY: 270 - rotZ: 357 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 357.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Resourceful 334f03.yaml b/unpacked/Bag All Player Cards 15bb07/Card Resourceful 334f03.yaml index a7d8049dd..3705ea488 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Resourceful 334f03.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Resourceful 334f03.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368802 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.12 posY: 3.94 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy (Taboo) 9724b7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy (Taboo) 9724b7.yaml index 7d8ffb064..380f96895 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy (Taboo) 9724b7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy (Taboo) 9724b7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 592900 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.51 posY: 1.07 posZ: 27.14 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy 4271cb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy 4271cb.yaml index 53d1a5c03..6f800563a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy 4271cb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy 4271cb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450003 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.51 posY: 1.06 posZ: 27.14 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy 9ba3f0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy 9ba3f0.yaml index 0959fa1fb..af9be6c3f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy 9ba3f0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy 9ba3f0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 259206 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 78.51 posY: 1.07 posZ: 27.14 - rotX: 359 - rotY: 270 - rotZ: 0 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rex's Curse 033a35.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rex's Curse 033a35.yaml index 6a489703a..5b33e0551 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rex's Curse 033a35.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rex's Curse 033a35.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 371907 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.13 posY: 5.51 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Righteous Hunt (1) 491c09.yaml b/unpacked/Bag All Player Cards 15bb07/Card Righteous Hunt (1) 491c09.yaml index 8b625dff0..bfa3934ca 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Righteous Hunt (1) 491c09.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Righteous Hunt (1) 491c09.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 553101 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.15 posY: 4.1 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Riot Whistle 55fc3d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Riot Whistle 55fc3d.yaml index cb626bfee..b8f228481 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Riot Whistle 55fc3d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Riot Whistle 55fc3d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 553100 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.99 posY: 3.67 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rise to the Occasion (3) bb501b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rise to the Occasion (3) bb501b.yaml index 23241481d..ebc621a4a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rise to the Occasion (3) bb501b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rise to the Occasion (3) bb501b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 314904 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.72 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rise to the Occasion 358387.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rise to the Occasion 358387.yaml index 3af266a3b..32774423b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rise to the Occasion 358387.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rise to the Occasion 358387.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368801 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.18 posY: 2.94 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rita Young bb8296.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rita Young bb8296.yaml index 75e8d15c7..d1168a5cb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rita Young bb8296.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rita Young bb8296.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 272024 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 2.14 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rita Young bdef4d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rita Young bdef4d.yaml index 4c750fe9f..1ce9ec1b2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rita Young bdef4d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rita Young bdef4d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 591100 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 2.05 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rite of Equilibrium (5) (Taboo) d45a81.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rite of Equilibrium (5) (Taboo) d45a81.yaml index 70b36ff0a..ccea43c59 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rite of Equilibrium (5) (Taboo) d45a81.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rite of Equilibrium (5) (Taboo) d45a81.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558202 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 21.83 posY: 4.37 posZ: -46.43 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rite of Equilibrium (5) 315b45.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rite of Equilibrium (5) 315b45.yaml index 14a564c7d..b1d5d2b50 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rite of Equilibrium (5) 315b45.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rite of Equilibrium (5) 315b45.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 589707 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.68 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rite of Sanctification 974743.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Rite of Sanctification 974743.ttslua index d819038d5..bd04e8aac 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rite of Sanctification 974743.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Rite of Sanctification 974743.ttslua @@ -1,81 +1,348 @@ -function onload() - mode = "Bless" - chaosbag = getChaosBag() - manager = getObjectFromGUID("5933fb") - sealedTokens = { } - IMAGE_TOKEN_MAP = { } - for i,v in pairs(Global.getVar("IMAGE_TOKEN_MAP")) do - IMAGE_TOKEN_MAP[i] = v - end +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} - -- add menu items - self.clearContextMenu() - self.addContextMenuItem("Release Token", releaseTokens, true) - for url,name in pairs(IMAGE_TOKEN_MAP) do - if name == mode then - self.addContextMenuItem("Seal " .. mode, function(playerColor) sealToken(url, playerColor) end, true) - end - end + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local BlessCurseManagerApi = {} + local MANAGER_GUID = "5933fb" + + -- removes all taken tokens and resets the counts + BlessCurseManagerApi.removeTakenTokensAndReset = function() + local BlessCurseManager = getObjectFromGUID(MANAGER_GUID) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10) + Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.sealedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("sealedToken", { type = type, guid = guid }) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.releasedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("releasedToken", { type = type, guid = guid }) + end + + -- broadcasts the current status for bless/curse tokens + ---@param playerColor String Color of the player to show the broadcast to + BlessCurseManagerApi.broadcastStatus = function(playerColor) + getObjectFromGUID(MANAGER_GUID).call("broadcastStatus", playerColor) + end + + -- adds Wendy's menu to the hovered card (allows sealing of tokens) + ---@param color String Color of the player to show the broadcast to + BlessCurseManagerApi.addWendysMenu = function(playerColor, hoveredObject) + getObjectFromGUID(MANAGER_GUID).call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject }) + end + + return BlessCurseManagerApi +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/RiteofSanctification") +end) +__bundle_register("playercards/cards/RiteofSanctification", function(require, _LOADED, __bundle_register, __bundle_modules) +VALID_TOKENS = { + ["Bless"] = true +} + +SHOW_SINGLE_RELEASE = true + +require("playercards/CardsThatSealTokens") +end) +__bundle_register("playercards/CardsThatSealTokens", function(require, _LOADED, __bundle_register, __bundle_modules) +--[[ Library for cards that seal tokens +This file is used to add sealing option to cards' context menu. +Valid options (set before requiring this file): + +UPDATE_ON_HOVER --@type: boolean + - automatically updates the context menu options when the card is hovered + - the "Read Bag" function reads the content of the chaos bag to update the context menu + - example usage: "Unrelenting" (to only display valid tokens) + +SHOW_SINGLE_RELEASE --@type: boolean + - enables an entry in the context menu + - this entry allows releasing a single token + - example usage: "Holy Spear" (to keep the other tokens and just release one) + +SHOW_MULTI_RELEASE --@type: number (amount of tokens to release at once) + - enables an entry in the context menu + - this enty allows releasing of multiple tokens at once + - example usage: "Nephthys" (to release 3 bless tokens at once) + +SHOW_MULTI_SEAL --@type: number (amount of tokens to seal at once) + - enables an entry in the context menu + - this entry allows sealing of multiple tokens at once + - example usage: "Holy Spear" (to seal two bless tokens at once) + +VALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens should be abled to be sealed + - needs to be defined for each card -> even if empty + - example usage: "The Chthonian Stone" + > VALID_TOKENS = { + > ["Skull"] = true, + > ["Cultist"] = true, + > ["Tablet"] = true, + > ["Elder Thing"] = true, + > } + +INVALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens are invalid for sealing + - only needs to be defined if needed + - usually combined with empty "VALID_TOKENS" table + - example usage: "Protective Incantation" (not allowed to seal Auto-fail) + +---------------------------------------------------------- +Example 1: Crystalline Elder Sign +This card can only seal the "+1" or "Elder Sign" token, +it does not need specific options for multi-sealing or releasing. +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["+1"] = true, +> ["Elder Sign"] = true +> } +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +---------------------------------------------------------- +Example 2: Holy Spear +This card features the following abilities (just listing the relevant parts): +- releasing a single bless token +- sealing two bless tokens +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["Bless"] = true +> } +> SHOW_SINGLE_RELEASE = true +> SHOW_MULTI_SEAL = 2 +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +----------------------------------------------------------]] + +local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi") +local tokenArrangerApi = require("accessories/TokenArrangerApi") +local sealedTokens = {} +local ID_URL_MAP = {} +local tokensInBag = {} + +function onSave() return JSON.encode(sealedTokens) end + +function onLoad(savedData) + sealedTokens = JSON.decode(savedData) or {} + ID_URL_MAP = Global.getTable("ID_URL_MAP") + generateContextMenu() end -function sealToken(url, playerColor) - local pos = self.getPosition() +-- builds the context menu +function generateContextMenu() + -- conditional single or multi release options + if SHOW_SINGLE_RELEASE then + self.addContextMenuItem("Release token", releaseOneToken) + elseif SHOW_MULTI_RELEASE then + self.addContextMenuItem("Release " .. SHOW_MULTI_RELEASE .. " token(s)", releaseMultipleTokens) + else + self.addContextMenuItem("Release token(s)", releaseAllTokens) + end - local name = IMAGE_TOKEN_MAP[url] - for i,obj in ipairs(chaosbag.getObjects()) do - if obj.name == name then - chaosbag.takeObject({ - position={ pos.x, pos.y + 1, pos.z }, - index=i-1, - smooth=false, - callback_function=_sealToken - }) - return - end - end - printToColor(name .. " token not found in bag", playerColor) -end + -- main context menu options to seal tokens + for _, map in pairs(ID_URL_MAP) do + if (VALID_TOKENS[map.name] ~= nil) or (UPDATE_ON_HOVER and tokensInBag[map.name] and not INVALID_TOKENS[map.name]) then + if not SHOW_MULTI_SEAL then + self.addContextMenuItem("Seal " .. map.name, function(playerColor) + sealToken(map.name, playerColor) + end) + else + self.addContextMenuItem("Seal " .. SHOW_MULTI_SEAL .. " " .. map.name, function(playerColor) + readBag() + local allowed = true + local notFound -function _sealToken(obj) - table.insert(sealedTokens, obj) - local guid = obj.getGUID() - local tokensTaken = manager.getVar("tokensTaken") - table.insert(tokensTaken[mode], guid) - manager.setVar("tokensTaken", tokensTaken) - manager.setVar("mode", mode) - printToAll("Sealing " .. mode .. " token " .. manager.call("getTokenCount")) -end - -function releaseTokens(playerColor) - if #sealedTokens == 0 then return end - local token = sealedTokens[#sealedTokens] - if token ~= nil then - local guid = token.getGUID() - chaosbag.putObject(token) - local tokensTaken = manager.getVar("tokensTaken") - for i,v in ipairs(tokensTaken[mode]) do - if v == guid then - table.remove(tokensTaken[mode], i) - break + for name, _ in pairs(VALID_TOKENS) do + if (tokensInBag[name] or 0) < SHOW_MULTI_SEAL then + allowed = false + notFound = name end - end - manager.setVar("tokensTaken", tokensTaken) - manager.setVar("mode", mode) - printToAll("Releasing " .. mode .. " token" .. manager.call("getTokenCount")) - end + end - table.remove(sealedTokens) + if allowed then + for i = 1, SHOW_MULTI_SEAL do + sealToken(map.name, playerColor) + end + else + printToColor("Not enough " .. notFound .. " tokens in the chaos bag.", playerColor) + end + end) + end + end + end end -function getChaosBag() - local items = getObjectFromGUID("83ef06").getObjects() - local chaosbag = nil - for i,v in ipairs(items) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break +-- generates a list of chaos tokens that is in the chaos bag +function readBag() + local chaosbag = Global.call("findChaosBag") + tokensInBag = {} + + for _, token in ipairs(chaosbag.getObjects()) do + tokensInBag[token.name] = (tokensInBag[token.name] or 0) + 1 + end +end + +-- native event from TTS - used to update the context menu for cards like "Unrelenting" +function onHover() + if UPDATE_ON_HOVER then + readBag() + self.clearContextMenu() + generateContextMenu() + end +end + +-- seals the named token on this card +function sealToken(name, playerColor) + if not Global.call("canTouchChaosTokens") then return end + local chaosbag = Global.call("findChaosBag") + for i, obj in ipairs(chaosbag.getObjects()) do + if obj.name == name then + chaosbag.takeObject({ + position = self.getPosition() + Vector(0, 0.5 + 0.1 * #sealedTokens, 0), + rotation = self.getRotation(), + index = i - 1, + smooth = false, + callback_function = function(token) + local guid = token.getGUID() + table.insert(sealedTokens, guid) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.sealedToken(name, guid) + end end + }) + return end - if chaosbag == nil then printToAll("No chaos bag found") end - return chaosbag -end \ No newline at end of file + end + printToColor(name .. " token not found in chaos bag", playerColor) +end + +-- release the last sealed token +function releaseOneToken(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token", playerColor) + putTokenAway(table.remove(sealedTokens)) + end +end + +-- release multiple tokens at once +function releaseMultipleTokens(playerColor) + if SHOW_MULTI_RELEASE >= #sealedTokens then + for i = 1, SHOW_MULTI_RELEASE do + releaseOneToken(playerColor) + end + else + printToColor("Not enough " .. name .. " tokens sealed.", playerColor) + end +end + +-- releases all sealed tokens +function releaseAllTokens(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token(s)", playerColor) + for _, guid in ipairs(sealedTokens) do + putTokenAway(guid) + end + sealedTokens = {} + end +end + +-- returns the token (referenced by GUID) to the chaos bag +function putTokenAway(guid) + local token = getObjectFromGUID(guid) + if not token then return end + + local name = token.getName() + local chaosbag = Global.call("findChaosBag") + chaosbag.putObject(token) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.releasedToken(name, guid) + end +end +end) +__bundle_register("accessories/TokenArrangerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenArrangerApi = {} + + -- local function to call the token arranger, if it is on the table + ---@param functionName String Name of the function to cal + ---@param argument Variant Parameter to pass + local function callIfExistent(functionName, argument) + local tokenArranger = getObjectsWithTag("TokenArranger")[1] + if tokenArranger ~= nil then + tokenArranger.call(functionName, argument) + end + end + + -- updates the token modifiers with the provided data + ---@param tokenData Table Contains the chaos token metadata + TokenArrangerApi.onTokenDataChanged = function(fullData) + callIfExistent("onTokenDataChanged", fullData) + end + + -- deletes already laid out tokens + TokenArrangerApi.deleteCopiedTokens = function() + callIfExistent("deleteCopiedTokens") + end + + -- updates the laid out tokens + TokenArrangerApi.layout = function() + Wait.time(function() callIfExistent("layout") end, 0.1) + end + + return TokenArrangerApi +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rite of Sanctification 974743.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rite of Sanctification 974743.yaml index 60c1f390d..54baa6d6e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rite of Sanctification 974743.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rite of Sanctification 974743.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 554413 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.99 posY: 3.8 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking (2) 4f2668.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking (2) 4f2668.yaml index e29a994bb..0e3866f11 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking (2) 4f2668.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking (2) 4f2668.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 313604 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 34.32 posY: 3.38 posZ: -45.6 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking (4) 194adb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking (4) 194adb.yaml index 63b08b10e..cbbefef22 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking (4) 194adb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking (4) 194adb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230358 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 26.02 posY: 3.53 posZ: -7.55 - rotX: 0 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking 29b842.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking 29b842.yaml index 8ac739ea8..8a3fbcae7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking 29b842.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking 29b842.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230329 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.15 posY: 3.83 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ritual Candles (Taboo) e99e75.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ritual Candles (Taboo) e99e75.yaml index df7c3bad7..0264d0e1c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ritual Candles (Taboo) e99e75.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ritual Candles (Taboo) e99e75.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558205 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 21.63 posY: 4.34 posZ: -61.23 - rotX: 0 - rotY: 270 - rotZ: 3 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ritual Candles 0a4db3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ritual Candles 0a4db3.yaml index 8fc48074a..e79aa2ccc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ritual Candles 0a4db3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ritual Candles 0a4db3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230317 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.98 posY: 3.82 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Robes of Endless Night (2) ef43db.yaml b/unpacked/Bag All Player Cards 15bb07/Card Robes of Endless Night (2) ef43db.yaml index ac83feef5..e61def7b2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Robes of Endless Night (2) ef43db.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Robes of Endless Night (2) ef43db.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538720 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.93 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Robes of Endless Night d9292f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Robes of Endless Night d9292f.yaml index 3e7e62d68..52a290434 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Robes of Endless Night d9292f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Robes of Endless Night d9292f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538710 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.98 posY: 4.1 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rod of Animalism (1) 0fc42c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rod of Animalism (1) 0fc42c.yaml index 8eb81d8f0..85f936031 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rod of Animalism (1) 0fc42c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rod of Animalism (1) 0fc42c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378915 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.18 posY: 2.94 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel Back) 560cef.yaml b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel Back) 560cef.yaml index 841aaa17d..2b41e5244 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel Back) 560cef.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel Back) 560cef.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 536100 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 18.45 posY: 1.66 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel Front) f7361e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel Front) f7361e.yaml index 8fa8c6b00..92b25e4a4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel Front) f7361e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel Front) f7361e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 536101 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 18.45 posY: 1.67 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel) 502768.yaml b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel) 502768.yaml index e42cb42e4..34a92e451 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel) 502768.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel) 502768.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 536102 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 2.08 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks 5bde90.yaml b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks 5bde90.yaml index b5463023b..5fa778835 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks 5bde90.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks 5bde90.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 258600 ColorDiffuse: @@ -39,9 +39,9 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587100 ColorDiffuse: @@ -85,18 +85,18 @@ States: posY: 1.29860592 posZ: 67.153 rotX: -9.60612141e-08 - rotY: 270 + rotY: 270.0 rotZ: -2.07587263e-08 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' '3': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 535809 ColorDiffuse: @@ -140,10 +140,10 @@ States: posY: 1.29860592 posZ: 67.153 rotX: -2.02330909e-07 - rotY: 270 + rotY: 270.0 rotZ: -1.38793665e-09 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' @@ -155,11 +155,11 @@ Transform: posX: 26.57 posY: 3.69 posZ: -7.01 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks 9e9e98.yaml b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks 9e9e98.yaml index 3f0428a3f..d66d3e0a3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks 9e9e98.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks 9e9e98.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 273800 ColorDiffuse: @@ -41,9 +41,9 @@ Snap: true States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587400 ColorDiffuse: @@ -90,18 +90,18 @@ States: posY: 1.29860592 posZ: 62.553 rotX: 2.400226e-08 - rotY: 180 + rotY: 180.0 rotZ: -3.06262358e-08 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' '3': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 273830 ColorDiffuse: @@ -148,10 +148,10 @@ States: posY: 1.29860592 posZ: 62.553 rotX: 7.42376072e-09 - rotY: 180 + rotY: 180.0 rotZ: -3.84156351e-08 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' @@ -164,11 +164,11 @@ Transform: posX: 26.93 posY: 3.69 posZ: -5.39 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Roland's .38 Special 4edb91.yaml b/unpacked/Bag All Player Cards 15bb07/Card Roland's .38 Special 4edb91.yaml index 27e31deb8..0cfbf60a9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Roland's .38 Special 4edb91.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Roland's .38 Special 4edb91.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 586125 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 28.5 posY: 2.3 posZ: -68.83 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Roland's .38 Special dbdaff.yaml b/unpacked/Bag All Player Cards 15bb07/Card Roland's .38 Special dbdaff.yaml index ed42a0f99..636c8ec9e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Roland's .38 Special dbdaff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Roland's .38 Special dbdaff.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 536205 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.15 posY: 3.67 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rookie Mistake e567ff.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rookie Mistake e567ff.yaml index d6cd1d354..3f0fa61f9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rookie Mistake e567ff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rookie Mistake e567ff.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 583901 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.06 posY: 3.92 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ruined Film 6d2eae.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ruined Film 6d2eae.yaml index 9707fae4a..522a1c595 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ruined Film 6d2eae.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ruined Film 6d2eae.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379011 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 10.44 posY: 2.2 posZ: 46.33 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Run For Your Life 0f32e8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Run For Your Life 0f32e8.yaml index 1623f7015..2df8b5369 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Run For Your Life 0f32e8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Run For Your Life 0f32e8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368505 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.16 posY: 4.15 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Runic Axe 7cdb0a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Runic Axe 7cdb0a.yaml index 3af108919..9c39aa2ee 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Runic Axe 7cdb0a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Runic Axe 7cdb0a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379015 ColorDiffuse: @@ -71,11 +71,11 @@ Transform: posX: 9.92 posY: 2.2 posZ: 47.49 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ríastrad (1) f1f24e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ríastrad (1) f1f24e.yaml index 4ca1cf86c..30fd5c556 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ríastrad (1) f1f24e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ríastrad (1) f1f24e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 588604 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.73 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sacred Covenant (2) 87226d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sacred Covenant (2) 87226d.yaml index a66e6fb9c..727eb405a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sacred Covenant (2) 87226d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sacred Covenant (2) 87226d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 553102 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.7 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sacrifice (1) f2877e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sacrifice (1) f2877e.yaml index 92b75aeea..73330a15e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sacrifice (1) f2877e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sacrifice (1) f2877e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230362 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.12 posY: 3.88 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sacrificial Beast 46812e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sacrificial Beast 46812e.yaml index 61f85cb7e..261cf3520 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sacrificial Beast 46812e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sacrificial Beast 46812e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 371466 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 8.97 posY: 3.79 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Safeguard (2) 7dc42a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Safeguard (2) 7dc42a.yaml index 0880a4c03..3332cf27c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Safeguard (2) 7dc42a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Safeguard (2) 7dc42a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 447933 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 25.86 posY: 3.53 posZ: -7.41 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Safeguard 8d6ae6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Safeguard 8d6ae6.yaml index 5f3c54a30..c21db5e3a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Safeguard 8d6ae6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Safeguard 8d6ae6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545308 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.98 posY: 3.73 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Salvage (2) f2e87d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Salvage (2) f2e87d.yaml index dbda4d8ba..2afe850c2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Salvage (2) f2e87d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Salvage (2) f2e87d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379140 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Savant (1) 5e3aac.yaml b/unpacked/Bag All Player Cards 15bb07/Card Savant (1) 5e3aac.yaml index a089516ac..0d8188318 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Savant (1) 5e3aac.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Savant (1) 5e3aac.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379042 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.19 posY: 2.25 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sawed-Off Shotgun (5) 4f5f0f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sawed-Off Shotgun (5) 4f5f0f.yaml index a27312db5..8f9cf0b34 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sawed-Off Shotgun (5) 4f5f0f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sawed-Off Shotgun (5) 4f5f0f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449037 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.02 posY: 4.09 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Say Your Prayers 5c3dd0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Say Your Prayers 5c3dd0.yaml index e7c3ed78b..3d660c49a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Say Your Prayers 5c3dd0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Say Your Prayers 5c3dd0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368501 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.68 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scavenging (2) ff4aea.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scavenging (2) ff4aea.yaml index 40f74d26d..02354967f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scavenging (2) ff4aea.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scavenging (2) ff4aea.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 448737 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.89 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scavenging 1b76c9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scavenging 1b76c9.yaml index 5076f9b0c..537120213 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scavenging 1b76c9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scavenging 1b76c9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368822 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.16 posY: 3.87 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scavenging b9e532.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scavenging b9e532.yaml index 547f96f61..0d80918dc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scavenging b9e532.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scavenging b9e532.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587210 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.92 posY: 3.32 posZ: 7.6 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scene of the Crime ab37af.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scene of the Crime ab37af.yaml index 9c00d4dc1..f0c1223f2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scene of the Crime ab37af.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scene of the Crime ab37af.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226318 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.99 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Schoffner's Catalogue 699a99.yaml b/unpacked/Bag All Player Cards 15bb07/Card Schoffner's Catalogue 699a99.yaml index 3d4df8a30..7c03966bc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Schoffner's Catalogue 699a99.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Schoffner's Catalogue 699a99.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378901 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.18 posY: 2.9 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scientific Theory (1) 3a0df6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scientific Theory (1) 3a0df6.yaml index ee3f0d6ef..377ed6316 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scientific Theory (1) 3a0df6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scientific Theory (1) 3a0df6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430638 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.16 posY: 4.15 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scientific Theory (3) 158450.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scientific Theory (3) 158450.yaml index cfaac7b76..90c820ba0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scientific Theory (3) 158450.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scientific Theory (3) 158450.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379030 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 3.05 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scout Ahead 927d34.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scout Ahead 927d34.yaml index d3c815d90..ed088bb7e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scout Ahead 927d34.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scout Ahead 927d34.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379037 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.19 posY: 2.34 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scrapper (3) (Taboo) fcffa3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scrapper (3) (Taboo) fcffa3.yaml index bc21638fe..c8c125818 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scrapper (3) (Taboo) fcffa3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scrapper (3) (Taboo) fcffa3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450606 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.8 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scrapper (3) dffe4a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scrapper (3) dffe4a.yaml index 6dda3e7e5..db4948928 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scrapper (3) dffe4a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scrapper (3) dffe4a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368853 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.66 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scrapper c8505c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scrapper c8505c.yaml index fa3af6fbf..8ae22ae8b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scrapper c8505c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scrapper c8505c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550809 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.05 posY: 3.75 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Prophecies 0d926f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Prophecies 0d926f.yaml index f531f6fe6..95835770c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Prophecies 0d926f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Prophecies 0d926f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 380125 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.07 posY: 3.76 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) (Taboo) 5839e4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) (Taboo) 5839e4.yaml index 35d55feeb..cc7c616fb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) (Taboo) 5839e4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) (Taboo) 5839e4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450623 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.16 posY: 3.85 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) (Taboo) a2136a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) (Taboo) a2136a.yaml index d65b75dd5..a700cde8d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) (Taboo) a2136a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) (Taboo) a2136a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450622 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.16 posY: 4.16 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) 0b12ac.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) 0b12ac.yaml index 1e2376c91..69010974f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) 0b12ac.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) 0b12ac.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 293214 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.98 posY: 3.99 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) 194d88.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) 194d88.yaml index 450f74653..6334906a0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) 194d88.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) 194d88.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 293315 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 8.97 posY: 4.59 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (Taboo) 19b705.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (Taboo) 19b705.yaml index c156fcc35..a23697c1d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (Taboo) 19b705.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (Taboo) 19b705.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450621 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.97 posY: 3.8 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (Taboo) a2136a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (Taboo) a2136a.yaml index 5a7dc42d7..2492be1a9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (Taboo) a2136a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (Taboo) a2136a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450621 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.16 posY: 4.16 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets 230835.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets 230835.yaml index 55f2ae95e..961e9be09 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets 230835.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets 230835.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 277604 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.0 posY: 3.93 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scrounge for Supplies 7651f3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scrounge for Supplies 7651f3.yaml index 0951316b8..5eb6a37e6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scrounge for Supplies 7651f3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scrounge for Supplies 7651f3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 380229 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.84 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scrying (3) e58d2a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scrying (3) e58d2a.yaml index f3dacc2a3..ec43983a3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scrying (3) e58d2a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scrying (3) e58d2a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230350 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 32.98 posY: 3.33 posZ: -47.41 - rotX: 1 - rotY: 270 - rotZ: 2 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scrying 8a927c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scrying 8a927c.yaml index 9d196b7ac..41f3995ee 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scrying 8a927c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scrying 8a927c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230319 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 32.98 posY: 3.33 posZ: -47.41 - rotX: 1 - rotY: 270 - rotZ: 2 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scrying Mirror 6446d1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scrying Mirror 6446d1.yaml index 782a7b70d..a1c4efef7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scrying Mirror 6446d1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scrying Mirror 6446d1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538704 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.97 posY: 3.81 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sea Change Harpoon 4e405d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sea Change Harpoon 4e405d.yaml index 1eb600efe..a66fffcb8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sea Change Harpoon 4e405d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sea Change Harpoon 4e405d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587308 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.79 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Seal of the Elder Sign (5) 91e890.yaml b/unpacked/Bag All Player Cards 15bb07/Card Seal of the Elder Sign (5) 91e890.yaml index d8342f1a4..9dad72f05 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Seal of the Elder Sign (5) 91e890.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Seal of the Elder Sign (5) 91e890.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230359 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.76 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Seal of the Seventh Sign (5) 9cbac1.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Seal of the Seventh Sign (5) 9cbac1.ttslua index 48d937faf..b0e146d67 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Seal of the Seventh Sign (5) 9cbac1.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Seal of the Seventh Sign (5) 9cbac1.ttslua @@ -1,60 +1,346 @@ -function onload() - chaosbag = getChaosBag() - sealedTokens = { } - IMAGE_TOKEN_MAP = { } - for i,v in pairs(Global.getVar("IMAGE_TOKEN_MAP")) do - IMAGE_TOKEN_MAP[i] = v - end +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} - -- add menu items + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("accessories/TokenArrangerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenArrangerApi = {} + + -- local function to call the token arranger, if it is on the table + ---@param functionName String Name of the function to cal + ---@param argument Variant Parameter to pass + local function callIfExistent(functionName, argument) + local tokenArranger = getObjectsWithTag("TokenArranger")[1] + if tokenArranger ~= nil then + tokenArranger.call(functionName, argument) + end + end + + -- updates the token modifiers with the provided data + ---@param tokenData Table Contains the chaos token metadata + TokenArrangerApi.onTokenDataChanged = function(fullData) + callIfExistent("onTokenDataChanged", fullData) + end + + -- deletes already laid out tokens + TokenArrangerApi.deleteCopiedTokens = function() + callIfExistent("deleteCopiedTokens") + end + + -- updates the laid out tokens + TokenArrangerApi.layout = function() + Wait.time(function() callIfExistent("layout") end, 0.1) + end + + return TokenArrangerApi +end +end) +__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local BlessCurseManagerApi = {} + local MANAGER_GUID = "5933fb" + + -- removes all taken tokens and resets the counts + BlessCurseManagerApi.removeTakenTokensAndReset = function() + local BlessCurseManager = getObjectFromGUID(MANAGER_GUID) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10) + Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.sealedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("sealedToken", { type = type, guid = guid }) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.releasedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("releasedToken", { type = type, guid = guid }) + end + + -- broadcasts the current status for bless/curse tokens + ---@param playerColor String Color of the player to show the broadcast to + BlessCurseManagerApi.broadcastStatus = function(playerColor) + getObjectFromGUID(MANAGER_GUID).call("broadcastStatus", playerColor) + end + + -- adds Wendy's menu to the hovered card (allows sealing of tokens) + ---@param color String Color of the player to show the broadcast to + BlessCurseManagerApi.addWendysMenu = function(playerColor, hoveredObject) + getObjectFromGUID(MANAGER_GUID).call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject }) + end + + return BlessCurseManagerApi +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/SealoftheSeventhSign5") +end) +__bundle_register("playercards/cards/SealoftheSeventhSign5", function(require, _LOADED, __bundle_register, __bundle_modules) +VALID_TOKENS = { + ["Auto-fail"] = true +} + +require("playercards/CardsThatSealTokens") +end) +__bundle_register("playercards/CardsThatSealTokens", function(require, _LOADED, __bundle_register, __bundle_modules) +--[[ Library for cards that seal tokens +This file is used to add sealing option to cards' context menu. +Valid options (set before requiring this file): + +UPDATE_ON_HOVER --@type: boolean + - automatically updates the context menu options when the card is hovered + - the "Read Bag" function reads the content of the chaos bag to update the context menu + - example usage: "Unrelenting" (to only display valid tokens) + +SHOW_SINGLE_RELEASE --@type: boolean + - enables an entry in the context menu + - this entry allows releasing a single token + - example usage: "Holy Spear" (to keep the other tokens and just release one) + +SHOW_MULTI_RELEASE --@type: number (amount of tokens to release at once) + - enables an entry in the context menu + - this enty allows releasing of multiple tokens at once + - example usage: "Nephthys" (to release 3 bless tokens at once) + +SHOW_MULTI_SEAL --@type: number (amount of tokens to seal at once) + - enables an entry in the context menu + - this entry allows sealing of multiple tokens at once + - example usage: "Holy Spear" (to seal two bless tokens at once) + +VALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens should be abled to be sealed + - needs to be defined for each card -> even if empty + - example usage: "The Chthonian Stone" + > VALID_TOKENS = { + > ["Skull"] = true, + > ["Cultist"] = true, + > ["Tablet"] = true, + > ["Elder Thing"] = true, + > } + +INVALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens are invalid for sealing + - only needs to be defined if needed + - usually combined with empty "VALID_TOKENS" table + - example usage: "Protective Incantation" (not allowed to seal Auto-fail) + +---------------------------------------------------------- +Example 1: Crystalline Elder Sign +This card can only seal the "+1" or "Elder Sign" token, +it does not need specific options for multi-sealing or releasing. +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["+1"] = true, +> ["Elder Sign"] = true +> } +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +---------------------------------------------------------- +Example 2: Holy Spear +This card features the following abilities (just listing the relevant parts): +- releasing a single bless token +- sealing two bless tokens +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["Bless"] = true +> } +> SHOW_SINGLE_RELEASE = true +> SHOW_MULTI_SEAL = 2 +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +----------------------------------------------------------]] + +local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi") +local tokenArrangerApi = require("accessories/TokenArrangerApi") +local sealedTokens = {} +local ID_URL_MAP = {} +local tokensInBag = {} + +function onSave() return JSON.encode(sealedTokens) end + +function onLoad(savedData) + sealedTokens = JSON.decode(savedData) or {} + ID_URL_MAP = Global.getTable("ID_URL_MAP") + generateContextMenu() +end + +-- builds the context menu +function generateContextMenu() + -- conditional single or multi release options + if SHOW_SINGLE_RELEASE then + self.addContextMenuItem("Release token", releaseOneToken) + elseif SHOW_MULTI_RELEASE then + self.addContextMenuItem("Release " .. SHOW_MULTI_RELEASE .. " token(s)", releaseMultipleTokens) + else + self.addContextMenuItem("Release token(s)", releaseAllTokens) + end + + -- main context menu options to seal tokens + for _, map in pairs(ID_URL_MAP) do + if (VALID_TOKENS[map.name] ~= nil) or (UPDATE_ON_HOVER and tokensInBag[map.name] and not INVALID_TOKENS[map.name]) then + if not SHOW_MULTI_SEAL then + self.addContextMenuItem("Seal " .. map.name, function(playerColor) + sealToken(map.name, playerColor) + end) + else + self.addContextMenuItem("Seal " .. SHOW_MULTI_SEAL .. " " .. map.name, function(playerColor) + readBag() + local allowed = true + local notFound + + for name, _ in pairs(VALID_TOKENS) do + if (tokensInBag[name] or 0) < SHOW_MULTI_SEAL then + allowed = false + notFound = name + end + end + + if allowed then + for i = 1, SHOW_MULTI_SEAL do + sealToken(map.name, playerColor) + end + else + printToColor("Not enough " .. notFound .. " tokens in the chaos bag.", playerColor) + end + end) + end + end + end +end + +-- generates a list of chaos tokens that is in the chaos bag +function readBag() + local chaosbag = Global.call("findChaosBag") + tokensInBag = {} + + for _, token in ipairs(chaosbag.getObjects()) do + tokensInBag[token.name] = (tokensInBag[token.name] or 0) + 1 + end +end + +-- native event from TTS - used to update the context menu for cards like "Unrelenting" +function onHover() + if UPDATE_ON_HOVER then + readBag() self.clearContextMenu() - self.addContextMenuItem("Release Token", releaseTokens) - for url,name in pairs(IMAGE_TOKEN_MAP) do - if name == "Auto-fail" then - self.addContextMenuItem("Seal Auto-fail", function(playerColor) sealToken(url, playerColor) end) + generateContextMenu() + end +end + +-- seals the named token on this card +function sealToken(name, playerColor) + if not Global.call("canTouchChaosTokens") then return end + local chaosbag = Global.call("findChaosBag") + for i, obj in ipairs(chaosbag.getObjects()) do + if obj.name == name then + chaosbag.takeObject({ + position = self.getPosition() + Vector(0, 0.5 + 0.1 * #sealedTokens, 0), + rotation = self.getRotation(), + index = i - 1, + smooth = false, + callback_function = function(token) + local guid = token.getGUID() + table.insert(sealedTokens, guid) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.sealedToken(name, guid) + end end + }) + return end + end + printToColor(name .. " token not found in chaos bag", playerColor) end -function sealToken(url, playerColor) - local pos = self.getPosition() - - local name = IMAGE_TOKEN_MAP[url] - for i,obj in ipairs(chaosbag.getObjects()) do - if obj.name == name then - chaosbag.takeObject({ - position={ pos.x, pos.y + 1, pos.z }, - index=i-1, - smooth=false, - callback_function=_sealToken - }) - return - end - end - printToColor(name .. " token not found in bag", playerColor) -end - -function _sealToken(obj) - table.insert(sealedTokens, obj) -end - -function releaseTokens(playerColor) +-- release the last sealed token +function releaseOneToken(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else printToColor("Releasing token", playerColor) - for i,obj in ipairs(sealedTokens) do - chaosbag.putObject(obj) - end - sealedTokens = { } + putTokenAway(table.remove(sealedTokens)) + end end -function getChaosBag() - local items = getObjectFromGUID("83ef06").getObjects() - local chaosbag = nil - for i,v in ipairs(items) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break - end +-- release multiple tokens at once +function releaseMultipleTokens(playerColor) + if SHOW_MULTI_RELEASE >= #sealedTokens then + for i = 1, SHOW_MULTI_RELEASE do + releaseOneToken(playerColor) end - if chaosbag == nil then printToAll("No chaos bag found") end - return chaosbag -end \ No newline at end of file + else + printToColor("Not enough " .. name .. " tokens sealed.", playerColor) + end +end + +-- releases all sealed tokens +function releaseAllTokens(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token(s)", playerColor) + for _, guid in ipairs(sealedTokens) do + putTokenAway(guid) + end + sealedTokens = {} + end +end + +-- returns the token (referenced by GUID) to the chaos bag +function putTokenAway(guid) + local token = getObjectFromGUID(guid) + if not token then return end + + local name = token.getName() + local chaosbag = Global.call("findChaosBag") + chaosbag.putObject(token) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.releasedToken(name, guid) + end +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Seal of the Seventh Sign (5) 9cbac1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Seal of the Seventh Sign (5) 9cbac1.yaml index e9b3baac2..a11a83f95 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Seal of the Seventh Sign (5) 9cbac1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Seal of the Seventh Sign (5) 9cbac1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 278101 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.15 posY: 3.86 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Search for the Truth 4156cf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Search for the Truth 4156cf.yaml index ca0e59d50..9ce4087b9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Search for the Truth 4156cf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Search for the Truth 4156cf.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 371806 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.1 posY: 3.73 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Searching for Izzie 426d28.yaml b/unpacked/Bag All Player Cards 15bb07/Card Searching for Izzie 426d28.yaml index 28cc8cd12..8ab446baf 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Searching for Izzie 426d28.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Searching for Izzie 426d28.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 586926 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.07 posY: 3.69 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Second Wind baef55.yaml b/unpacked/Bag All Player Cards 15bb07/Card Second Wind baef55.yaml index 0daba6d68..efeee25e7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Second Wind baef55.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Second Wind baef55.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226316 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 4.24 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Seeking Answers (2) 719f7e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Seeking Answers (2) 719f7e.yaml index 291a9dbc3..225b55569 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Seeking Answers (2) 719f7e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Seeking Answers (2) 719f7e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587110 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 19.01 posY: 3.38 posZ: -56.84 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Seeking Answers f69e10.yaml b/unpacked/Bag All Player Cards 15bb07/Card Seeking Answers f69e10.yaml index f0a104b34..de1d88c5b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Seeking Answers f69e10.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Seeking Answers f69e10.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368407 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.05 posY: 3.72 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sefina Rousseau 342311.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sefina Rousseau 342311.yaml index 033c497a5..346d06243 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sefina Rousseau 342311.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sefina Rousseau 342311.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 270912 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.51 posY: 1.06 posZ: 27.14 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sefina Rousseau d35705.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sefina Rousseau d35705.yaml index 34b8f10b3..0ffe30cb1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sefina Rousseau d35705.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sefina Rousseau d35705.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 259512 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 2.18 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Segment of Onyx (1) ff9f23.yaml b/unpacked/Bag All Player Cards 15bb07/Card Segment of Onyx (1) ff9f23.yaml index 67880caad..286d11cb7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Segment of Onyx (1) ff9f23.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Segment of Onyx (1) ff9f23.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 441026 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.13 posY: 3.7 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Self-Centered eff3c8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Self-Centered eff3c8.yaml index 1445ff804..f396ba1e3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Self-Centered eff3c8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Self-Centered eff3c8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 438125 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.15 posY: 4.15 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Self-Destructive 2204cc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Self-Destructive 2204cc.yaml index 0236646b6..e6617e821 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Self-Destructive 2204cc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Self-Destructive 2204cc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545302 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.67 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Self-Sacrifice 5e808d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Self-Sacrifice 5e808d.yaml index 4113cc9d1..70d057e3f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Self-Sacrifice 5e808d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Self-Sacrifice 5e808d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379831 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.13 posY: 3.75 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Selfless to a Fault 07dd55.yaml b/unpacked/Bag All Player Cards 15bb07/Card Selfless to a Fault 07dd55.yaml index 3831468ee..e457ddd98 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Selfless to a Fault 07dd55.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Selfless to a Fault 07dd55.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587701 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 17.74 posY: 2.21 posZ: 59.76 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sell Your Soul 180b5b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sell Your Soul 180b5b.yaml index 957072d65..59c96745b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sell Your Soul 180b5b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sell Your Soul 180b5b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545214 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.16 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sergeant Monroe 5630c2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sergeant Monroe 5630c2.yaml index 87f691b65..3f7096650 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sergeant Monroe 5630c2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sergeant Monroe 5630c2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 534902 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.1 posY: 3.73 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Serpents of Yig 678391.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Serpents of Yig 678391.ttslua index 55f9fdef2..9e80d9666 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Serpents of Yig 678391.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Serpents of Yig 678391.ttslua @@ -1,60 +1,346 @@ -function onload() - chaosbag = getChaosBag() - sealedTokens = { } - IMAGE_TOKEN_MAP = { } - for i,v in pairs(Global.getVar("IMAGE_TOKEN_MAP")) do - IMAGE_TOKEN_MAP[i] = v - end +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} - -- add menu items + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("playercards/CardsThatSealTokens", function(require, _LOADED, __bundle_register, __bundle_modules) +--[[ Library for cards that seal tokens +This file is used to add sealing option to cards' context menu. +Valid options (set before requiring this file): + +UPDATE_ON_HOVER --@type: boolean + - automatically updates the context menu options when the card is hovered + - the "Read Bag" function reads the content of the chaos bag to update the context menu + - example usage: "Unrelenting" (to only display valid tokens) + +SHOW_SINGLE_RELEASE --@type: boolean + - enables an entry in the context menu + - this entry allows releasing a single token + - example usage: "Holy Spear" (to keep the other tokens and just release one) + +SHOW_MULTI_RELEASE --@type: number (amount of tokens to release at once) + - enables an entry in the context menu + - this enty allows releasing of multiple tokens at once + - example usage: "Nephthys" (to release 3 bless tokens at once) + +SHOW_MULTI_SEAL --@type: number (amount of tokens to seal at once) + - enables an entry in the context menu + - this entry allows sealing of multiple tokens at once + - example usage: "Holy Spear" (to seal two bless tokens at once) + +VALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens should be abled to be sealed + - needs to be defined for each card -> even if empty + - example usage: "The Chthonian Stone" + > VALID_TOKENS = { + > ["Skull"] = true, + > ["Cultist"] = true, + > ["Tablet"] = true, + > ["Elder Thing"] = true, + > } + +INVALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens are invalid for sealing + - only needs to be defined if needed + - usually combined with empty "VALID_TOKENS" table + - example usage: "Protective Incantation" (not allowed to seal Auto-fail) + +---------------------------------------------------------- +Example 1: Crystalline Elder Sign +This card can only seal the "+1" or "Elder Sign" token, +it does not need specific options for multi-sealing or releasing. +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["+1"] = true, +> ["Elder Sign"] = true +> } +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +---------------------------------------------------------- +Example 2: Holy Spear +This card features the following abilities (just listing the relevant parts): +- releasing a single bless token +- sealing two bless tokens +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["Bless"] = true +> } +> SHOW_SINGLE_RELEASE = true +> SHOW_MULTI_SEAL = 2 +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +----------------------------------------------------------]] + +local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi") +local tokenArrangerApi = require("accessories/TokenArrangerApi") +local sealedTokens = {} +local ID_URL_MAP = {} +local tokensInBag = {} + +function onSave() return JSON.encode(sealedTokens) end + +function onLoad(savedData) + sealedTokens = JSON.decode(savedData) or {} + ID_URL_MAP = Global.getTable("ID_URL_MAP") + generateContextMenu() +end + +-- builds the context menu +function generateContextMenu() + -- conditional single or multi release options + if SHOW_SINGLE_RELEASE then + self.addContextMenuItem("Release token", releaseOneToken) + elseif SHOW_MULTI_RELEASE then + self.addContextMenuItem("Release " .. SHOW_MULTI_RELEASE .. " token(s)", releaseMultipleTokens) + else + self.addContextMenuItem("Release token(s)", releaseAllTokens) + end + + -- main context menu options to seal tokens + for _, map in pairs(ID_URL_MAP) do + if (VALID_TOKENS[map.name] ~= nil) or (UPDATE_ON_HOVER and tokensInBag[map.name] and not INVALID_TOKENS[map.name]) then + if not SHOW_MULTI_SEAL then + self.addContextMenuItem("Seal " .. map.name, function(playerColor) + sealToken(map.name, playerColor) + end) + else + self.addContextMenuItem("Seal " .. SHOW_MULTI_SEAL .. " " .. map.name, function(playerColor) + readBag() + local allowed = true + local notFound + + for name, _ in pairs(VALID_TOKENS) do + if (tokensInBag[name] or 0) < SHOW_MULTI_SEAL then + allowed = false + notFound = name + end + end + + if allowed then + for i = 1, SHOW_MULTI_SEAL do + sealToken(map.name, playerColor) + end + else + printToColor("Not enough " .. notFound .. " tokens in the chaos bag.", playerColor) + end + end) + end + end + end +end + +-- generates a list of chaos tokens that is in the chaos bag +function readBag() + local chaosbag = Global.call("findChaosBag") + tokensInBag = {} + + for _, token in ipairs(chaosbag.getObjects()) do + tokensInBag[token.name] = (tokensInBag[token.name] or 0) + 1 + end +end + +-- native event from TTS - used to update the context menu for cards like "Unrelenting" +function onHover() + if UPDATE_ON_HOVER then + readBag() self.clearContextMenu() - self.addContextMenuItem("Release Token", releaseTokens) - for url,name in pairs(IMAGE_TOKEN_MAP) do - if name == "Elder Sign" then - self.addContextMenuItem("Seal Elder Sign", function(playerColor) sealToken(url, playerColor) end) + generateContextMenu() + end +end + +-- seals the named token on this card +function sealToken(name, playerColor) + if not Global.call("canTouchChaosTokens") then return end + local chaosbag = Global.call("findChaosBag") + for i, obj in ipairs(chaosbag.getObjects()) do + if obj.name == name then + chaosbag.takeObject({ + position = self.getPosition() + Vector(0, 0.5 + 0.1 * #sealedTokens, 0), + rotation = self.getRotation(), + index = i - 1, + smooth = false, + callback_function = function(token) + local guid = token.getGUID() + table.insert(sealedTokens, guid) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.sealedToken(name, guid) + end end + }) + return end + end + printToColor(name .. " token not found in chaos bag", playerColor) end -function sealToken(url, playerColor) - local pos = self.getPosition() - - local name = IMAGE_TOKEN_MAP[url] - for i,obj in ipairs(chaosbag.getObjects()) do - if obj.name == name then - chaosbag.takeObject({ - position={ pos.x, pos.y + 1, pos.z }, - index=i-1, - smooth=false, - callback_function=_sealToken - }) - return - end - end - printToColor(name .. " token not found in bag", playerColor) -end - -function _sealToken(obj) - table.insert(sealedTokens, obj) -end - -function releaseTokens(playerColor) +-- release the last sealed token +function releaseOneToken(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else printToColor("Releasing token", playerColor) - for i,obj in ipairs(sealedTokens) do - chaosbag.putObject(obj) - end - sealedTokens = { } + putTokenAway(table.remove(sealedTokens)) + end end -function getChaosBag() - local items = getObjectFromGUID("83ef06").getObjects() - local chaosbag = nil - for i,v in ipairs(items) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break - end +-- release multiple tokens at once +function releaseMultipleTokens(playerColor) + if SHOW_MULTI_RELEASE >= #sealedTokens then + for i = 1, SHOW_MULTI_RELEASE do + releaseOneToken(playerColor) end - if chaosbag == nil then printToAll("No chaos bag found") end - return chaosbag -end \ No newline at end of file + else + printToColor("Not enough " .. name .. " tokens sealed.", playerColor) + end +end + +-- releases all sealed tokens +function releaseAllTokens(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token(s)", playerColor) + for _, guid in ipairs(sealedTokens) do + putTokenAway(guid) + end + sealedTokens = {} + end +end + +-- returns the token (referenced by GUID) to the chaos bag +function putTokenAway(guid) + local token = getObjectFromGUID(guid) + if not token then return end + + local name = token.getName() + local chaosbag = Global.call("findChaosBag") + chaosbag.putObject(token) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.releasedToken(name, guid) + end +end +end) +__bundle_register("accessories/TokenArrangerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenArrangerApi = {} + + -- local function to call the token arranger, if it is on the table + ---@param functionName String Name of the function to cal + ---@param argument Variant Parameter to pass + local function callIfExistent(functionName, argument) + local tokenArranger = getObjectsWithTag("TokenArranger")[1] + if tokenArranger ~= nil then + tokenArranger.call(functionName, argument) + end + end + + -- updates the token modifiers with the provided data + ---@param tokenData Table Contains the chaos token metadata + TokenArrangerApi.onTokenDataChanged = function(fullData) + callIfExistent("onTokenDataChanged", fullData) + end + + -- deletes already laid out tokens + TokenArrangerApi.deleteCopiedTokens = function() + callIfExistent("deleteCopiedTokens") + end + + -- updates the laid out tokens + TokenArrangerApi.layout = function() + Wait.time(function() callIfExistent("layout") end, 0.1) + end + + return TokenArrangerApi +end +end) +__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local BlessCurseManagerApi = {} + local MANAGER_GUID = "5933fb" + + -- removes all taken tokens and resets the counts + BlessCurseManagerApi.removeTakenTokensAndReset = function() + local BlessCurseManager = getObjectFromGUID(MANAGER_GUID) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10) + Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.sealedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("sealedToken", { type = type, guid = guid }) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.releasedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("releasedToken", { type = type, guid = guid }) + end + + -- broadcasts the current status for bless/curse tokens + ---@param playerColor String Color of the player to show the broadcast to + BlessCurseManagerApi.broadcastStatus = function(playerColor) + getObjectFromGUID(MANAGER_GUID).call("broadcastStatus", playerColor) + end + + -- adds Wendy's menu to the hovered card (allows sealing of tokens) + ---@param color String Color of the player to show the broadcast to + BlessCurseManagerApi.addWendysMenu = function(playerColor, hoveredObject) + getObjectFromGUID(MANAGER_GUID).call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject }) + end + + return BlessCurseManagerApi +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/SerpentsofYig") +end) +__bundle_register("playercards/cards/SerpentsofYig", function(require, _LOADED, __bundle_register, __bundle_modules) +VALID_TOKENS = { + ["Elder Sign"] = true +} + +require("playercards/CardsThatSealTokens") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Serpents of Yig 678391.yaml b/unpacked/Bag All Player Cards 15bb07/Card Serpents of Yig 678391.yaml index 2ce095c22..c92112284 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Serpents of Yig 678391.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Serpents of Yig 678391.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232837 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.15 posY: 3.68 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shadow Agents 9be144.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shadow Agents 9be144.yaml index 50a6ae7c8..b585babfc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shadow Agents 9be144.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shadow Agents 9be144.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 586405 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.05 posY: 3.74 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shards of the Void (3) b10a71.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Shards of the Void (3) b10a71.ttslua index a4976a314..970aa4723 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shards of the Void (3) b10a71.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Shards of the Void (3) b10a71.ttslua @@ -1,45 +1,348 @@ -function onload() - chaosbag = getChaosBag() - IMAGE_TOKEN_MAP = { } - for i,v in pairs(Global.getVar("IMAGE_TOKEN_MAP")) do - IMAGE_TOKEN_MAP[i] = v - end +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} - -- add menu items + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local BlessCurseManagerApi = {} + local MANAGER_GUID = "5933fb" + + -- removes all taken tokens and resets the counts + BlessCurseManagerApi.removeTakenTokensAndReset = function() + local BlessCurseManager = getObjectFromGUID(MANAGER_GUID) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10) + Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.sealedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("sealedToken", { type = type, guid = guid }) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.releasedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("releasedToken", { type = type, guid = guid }) + end + + -- broadcasts the current status for bless/curse tokens + ---@param playerColor String Color of the player to show the broadcast to + BlessCurseManagerApi.broadcastStatus = function(playerColor) + getObjectFromGUID(MANAGER_GUID).call("broadcastStatus", playerColor) + end + + -- adds Wendy's menu to the hovered card (allows sealing of tokens) + ---@param color String Color of the player to show the broadcast to + BlessCurseManagerApi.addWendysMenu = function(playerColor, hoveredObject) + getObjectFromGUID(MANAGER_GUID).call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject }) + end + + return BlessCurseManagerApi +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/ShardsoftheVoid3") +end) +__bundle_register("playercards/cards/ShardsoftheVoid3", function(require, _LOADED, __bundle_register, __bundle_modules) +VALID_TOKENS = { + ["0"] = true +} + +SHOW_SINGLE_RELEASE = true + +require("playercards/CardsThatSealTokens") +end) +__bundle_register("playercards/CardsThatSealTokens", function(require, _LOADED, __bundle_register, __bundle_modules) +--[[ Library for cards that seal tokens +This file is used to add sealing option to cards' context menu. +Valid options (set before requiring this file): + +UPDATE_ON_HOVER --@type: boolean + - automatically updates the context menu options when the card is hovered + - the "Read Bag" function reads the content of the chaos bag to update the context menu + - example usage: "Unrelenting" (to only display valid tokens) + +SHOW_SINGLE_RELEASE --@type: boolean + - enables an entry in the context menu + - this entry allows releasing a single token + - example usage: "Holy Spear" (to keep the other tokens and just release one) + +SHOW_MULTI_RELEASE --@type: number (amount of tokens to release at once) + - enables an entry in the context menu + - this enty allows releasing of multiple tokens at once + - example usage: "Nephthys" (to release 3 bless tokens at once) + +SHOW_MULTI_SEAL --@type: number (amount of tokens to seal at once) + - enables an entry in the context menu + - this entry allows sealing of multiple tokens at once + - example usage: "Holy Spear" (to seal two bless tokens at once) + +VALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens should be abled to be sealed + - needs to be defined for each card -> even if empty + - example usage: "The Chthonian Stone" + > VALID_TOKENS = { + > ["Skull"] = true, + > ["Cultist"] = true, + > ["Tablet"] = true, + > ["Elder Thing"] = true, + > } + +INVALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens are invalid for sealing + - only needs to be defined if needed + - usually combined with empty "VALID_TOKENS" table + - example usage: "Protective Incantation" (not allowed to seal Auto-fail) + +---------------------------------------------------------- +Example 1: Crystalline Elder Sign +This card can only seal the "+1" or "Elder Sign" token, +it does not need specific options for multi-sealing or releasing. +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["+1"] = true, +> ["Elder Sign"] = true +> } +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +---------------------------------------------------------- +Example 2: Holy Spear +This card features the following abilities (just listing the relevant parts): +- releasing a single bless token +- sealing two bless tokens +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["Bless"] = true +> } +> SHOW_SINGLE_RELEASE = true +> SHOW_MULTI_SEAL = 2 +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +----------------------------------------------------------]] + +local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi") +local tokenArrangerApi = require("accessories/TokenArrangerApi") +local sealedTokens = {} +local ID_URL_MAP = {} +local tokensInBag = {} + +function onSave() return JSON.encode(sealedTokens) end + +function onLoad(savedData) + sealedTokens = JSON.decode(savedData) or {} + ID_URL_MAP = Global.getTable("ID_URL_MAP") + generateContextMenu() +end + +-- builds the context menu +function generateContextMenu() + -- conditional single or multi release options + if SHOW_SINGLE_RELEASE then + self.addContextMenuItem("Release token", releaseOneToken) + elseif SHOW_MULTI_RELEASE then + self.addContextMenuItem("Release " .. SHOW_MULTI_RELEASE .. " token(s)", releaseMultipleTokens) + else + self.addContextMenuItem("Release token(s)", releaseAllTokens) + end + + -- main context menu options to seal tokens + for _, map in pairs(ID_URL_MAP) do + if (VALID_TOKENS[map.name] ~= nil) or (UPDATE_ON_HOVER and tokensInBag[map.name] and not INVALID_TOKENS[map.name]) then + if not SHOW_MULTI_SEAL then + self.addContextMenuItem("Seal " .. map.name, function(playerColor) + sealToken(map.name, playerColor) + end) + else + self.addContextMenuItem("Seal " .. SHOW_MULTI_SEAL .. " " .. map.name, function(playerColor) + readBag() + local allowed = true + local notFound + + for name, _ in pairs(VALID_TOKENS) do + if (tokensInBag[name] or 0) < SHOW_MULTI_SEAL then + allowed = false + notFound = name + end + end + + if allowed then + for i = 1, SHOW_MULTI_SEAL do + sealToken(map.name, playerColor) + end + else + printToColor("Not enough " .. notFound .. " tokens in the chaos bag.", playerColor) + end + end) + end + end + end +end + +-- generates a list of chaos tokens that is in the chaos bag +function readBag() + local chaosbag = Global.call("findChaosBag") + tokensInBag = {} + + for _, token in ipairs(chaosbag.getObjects()) do + tokensInBag[token.name] = (tokensInBag[token.name] or 0) + 1 + end +end + +-- native event from TTS - used to update the context menu for cards like "Unrelenting" +function onHover() + if UPDATE_ON_HOVER then + readBag() self.clearContextMenu() - for url,name in pairs(IMAGE_TOKEN_MAP) do - if name == "0" then - self.addContextMenuItem("Seal 0", function(playerColor) sealToken(url, playerColor) end) - end - end + generateContextMenu() + end end -function sealToken(url, playerColor) - local pos = self.getPosition() - - local name = IMAGE_TOKEN_MAP[url] - for i,obj in ipairs(chaosbag.getObjects()) do - if obj.name == name then - chaosbag.takeObject({ - position={ pos.x, pos.y + 1, pos.z }, - index=i-1, - smooth=false - }) - return +-- seals the named token on this card +function sealToken(name, playerColor) + if not Global.call("canTouchChaosTokens") then return end + local chaosbag = Global.call("findChaosBag") + for i, obj in ipairs(chaosbag.getObjects()) do + if obj.name == name then + chaosbag.takeObject({ + position = self.getPosition() + Vector(0, 0.5 + 0.1 * #sealedTokens, 0), + rotation = self.getRotation(), + index = i - 1, + smooth = false, + callback_function = function(token) + local guid = token.getGUID() + table.insert(sealedTokens, guid) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.sealedToken(name, guid) + end end + }) + return end - printToColor(name .. " token not found in bag", playerColor) + end + printToColor(name .. " token not found in chaos bag", playerColor) end -function getChaosBag() - local items = getObjectFromGUID("83ef06").getObjects() - local chaosbag = nil - for i,v in ipairs(items) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break - end +-- release the last sealed token +function releaseOneToken(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token", playerColor) + putTokenAway(table.remove(sealedTokens)) + end +end + +-- release multiple tokens at once +function releaseMultipleTokens(playerColor) + if SHOW_MULTI_RELEASE >= #sealedTokens then + for i = 1, SHOW_MULTI_RELEASE do + releaseOneToken(playerColor) end - if chaosbag == nil then printToAll("No chaos bag found") end - return chaosbag -end \ No newline at end of file + else + printToColor("Not enough " .. name .. " tokens sealed.", playerColor) + end +end + +-- releases all sealed tokens +function releaseAllTokens(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token(s)", playerColor) + for _, guid in ipairs(sealedTokens) do + putTokenAway(guid) + end + sealedTokens = {} + end +end + +-- returns the token (referenced by GUID) to the chaos bag +function putTokenAway(guid) + local token = getObjectFromGUID(guid) + if not token then return end + + local name = token.getName() + local chaosbag = Global.call("findChaosBag") + chaosbag.putObject(token) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.releasedToken(name, guid) + end +end +end) +__bundle_register("accessories/TokenArrangerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenArrangerApi = {} + + -- local function to call the token arranger, if it is on the table + ---@param functionName String Name of the function to cal + ---@param argument Variant Parameter to pass + local function callIfExistent(functionName, argument) + local tokenArranger = getObjectsWithTag("TokenArranger")[1] + if tokenArranger ~= nil then + tokenArranger.call(functionName, argument) + end + end + + -- updates the token modifiers with the provided data + ---@param tokenData Table Contains the chaos token metadata + TokenArrangerApi.onTokenDataChanged = function(fullData) + callIfExistent("onTokenDataChanged", fullData) + end + + -- deletes already laid out tokens + TokenArrangerApi.deleteCopiedTokens = function() + callIfExistent("deleteCopiedTokens") + end + + -- updates the laid out tokens + TokenArrangerApi.layout = function() + Wait.time(function() callIfExistent("layout") end, 0.1) + end + + return TokenArrangerApi +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shards of the Void (3) b10a71.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shards of the Void (3) b10a71.yaml index 7887aefb0..d1bb10bf0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shards of the Void (3) b10a71.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shards of the Void (3) b10a71.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 278102 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 8.97 posY: 4.34 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sharp Vision (1) 4d9a97.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sharp Vision (1) 4d9a97.yaml index 834722c4a..82299fbe3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sharp Vision (1) 4d9a97.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sharp Vision (1) 4d9a97.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 447732 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.07 posY: 3.69 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sharpshooter (3) 7f27d6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sharpshooter (3) 7f27d6.yaml index 863837a3d..0f8ab44db 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sharpshooter (3) 7f27d6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sharpshooter (3) 7f27d6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538625 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.7 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shed a Light 2c165a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shed a Light 2c165a.yaml index 2c6cf2421..8c3e41f48 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shed a Light 2c165a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shed a Light 2c165a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379132 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.72 posY: 3.38 posZ: 65.64 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shell Shock bcf406.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shell Shock bcf406.yaml index 04df23492..33c9b1ce4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shell Shock bcf406.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shell Shock bcf406.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 431731 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.13 posY: 3.75 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shield of Faith (2) 06abe0.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Shield of Faith (2) 06abe0.ttslua index d819038d5..bd01790b9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shield of Faith (2) 06abe0.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Shield of Faith (2) 06abe0.ttslua @@ -1,81 +1,348 @@ -function onload() - mode = "Bless" - chaosbag = getChaosBag() - manager = getObjectFromGUID("5933fb") - sealedTokens = { } - IMAGE_TOKEN_MAP = { } - for i,v in pairs(Global.getVar("IMAGE_TOKEN_MAP")) do - IMAGE_TOKEN_MAP[i] = v - end +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} - -- add menu items - self.clearContextMenu() - self.addContextMenuItem("Release Token", releaseTokens, true) - for url,name in pairs(IMAGE_TOKEN_MAP) do - if name == mode then - self.addContextMenuItem("Seal " .. mode, function(playerColor) sealToken(url, playerColor) end, true) - end - end + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/ShieldofFaith2") +end) +__bundle_register("playercards/cards/ShieldofFaith2", function(require, _LOADED, __bundle_register, __bundle_modules) +VALID_TOKENS = { + ["Bless"] = true +} + +SHOW_SINGLE_RELEASE = true + +require("playercards/CardsThatSealTokens") +end) +__bundle_register("playercards/CardsThatSealTokens", function(require, _LOADED, __bundle_register, __bundle_modules) +--[[ Library for cards that seal tokens +This file is used to add sealing option to cards' context menu. +Valid options (set before requiring this file): + +UPDATE_ON_HOVER --@type: boolean + - automatically updates the context menu options when the card is hovered + - the "Read Bag" function reads the content of the chaos bag to update the context menu + - example usage: "Unrelenting" (to only display valid tokens) + +SHOW_SINGLE_RELEASE --@type: boolean + - enables an entry in the context menu + - this entry allows releasing a single token + - example usage: "Holy Spear" (to keep the other tokens and just release one) + +SHOW_MULTI_RELEASE --@type: number (amount of tokens to release at once) + - enables an entry in the context menu + - this enty allows releasing of multiple tokens at once + - example usage: "Nephthys" (to release 3 bless tokens at once) + +SHOW_MULTI_SEAL --@type: number (amount of tokens to seal at once) + - enables an entry in the context menu + - this entry allows sealing of multiple tokens at once + - example usage: "Holy Spear" (to seal two bless tokens at once) + +VALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens should be abled to be sealed + - needs to be defined for each card -> even if empty + - example usage: "The Chthonian Stone" + > VALID_TOKENS = { + > ["Skull"] = true, + > ["Cultist"] = true, + > ["Tablet"] = true, + > ["Elder Thing"] = true, + > } + +INVALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens are invalid for sealing + - only needs to be defined if needed + - usually combined with empty "VALID_TOKENS" table + - example usage: "Protective Incantation" (not allowed to seal Auto-fail) + +---------------------------------------------------------- +Example 1: Crystalline Elder Sign +This card can only seal the "+1" or "Elder Sign" token, +it does not need specific options for multi-sealing or releasing. +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["+1"] = true, +> ["Elder Sign"] = true +> } +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +---------------------------------------------------------- +Example 2: Holy Spear +This card features the following abilities (just listing the relevant parts): +- releasing a single bless token +- sealing two bless tokens +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["Bless"] = true +> } +> SHOW_SINGLE_RELEASE = true +> SHOW_MULTI_SEAL = 2 +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +----------------------------------------------------------]] + +local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi") +local tokenArrangerApi = require("accessories/TokenArrangerApi") +local sealedTokens = {} +local ID_URL_MAP = {} +local tokensInBag = {} + +function onSave() return JSON.encode(sealedTokens) end + +function onLoad(savedData) + sealedTokens = JSON.decode(savedData) or {} + ID_URL_MAP = Global.getTable("ID_URL_MAP") + generateContextMenu() end -function sealToken(url, playerColor) - local pos = self.getPosition() +-- builds the context menu +function generateContextMenu() + -- conditional single or multi release options + if SHOW_SINGLE_RELEASE then + self.addContextMenuItem("Release token", releaseOneToken) + elseif SHOW_MULTI_RELEASE then + self.addContextMenuItem("Release " .. SHOW_MULTI_RELEASE .. " token(s)", releaseMultipleTokens) + else + self.addContextMenuItem("Release token(s)", releaseAllTokens) + end - local name = IMAGE_TOKEN_MAP[url] - for i,obj in ipairs(chaosbag.getObjects()) do - if obj.name == name then - chaosbag.takeObject({ - position={ pos.x, pos.y + 1, pos.z }, - index=i-1, - smooth=false, - callback_function=_sealToken - }) - return - end - end - printToColor(name .. " token not found in bag", playerColor) -end + -- main context menu options to seal tokens + for _, map in pairs(ID_URL_MAP) do + if (VALID_TOKENS[map.name] ~= nil) or (UPDATE_ON_HOVER and tokensInBag[map.name] and not INVALID_TOKENS[map.name]) then + if not SHOW_MULTI_SEAL then + self.addContextMenuItem("Seal " .. map.name, function(playerColor) + sealToken(map.name, playerColor) + end) + else + self.addContextMenuItem("Seal " .. SHOW_MULTI_SEAL .. " " .. map.name, function(playerColor) + readBag() + local allowed = true + local notFound -function _sealToken(obj) - table.insert(sealedTokens, obj) - local guid = obj.getGUID() - local tokensTaken = manager.getVar("tokensTaken") - table.insert(tokensTaken[mode], guid) - manager.setVar("tokensTaken", tokensTaken) - manager.setVar("mode", mode) - printToAll("Sealing " .. mode .. " token " .. manager.call("getTokenCount")) -end - -function releaseTokens(playerColor) - if #sealedTokens == 0 then return end - local token = sealedTokens[#sealedTokens] - if token ~= nil then - local guid = token.getGUID() - chaosbag.putObject(token) - local tokensTaken = manager.getVar("tokensTaken") - for i,v in ipairs(tokensTaken[mode]) do - if v == guid then - table.remove(tokensTaken[mode], i) - break + for name, _ in pairs(VALID_TOKENS) do + if (tokensInBag[name] or 0) < SHOW_MULTI_SEAL then + allowed = false + notFound = name end - end - manager.setVar("tokensTaken", tokensTaken) - manager.setVar("mode", mode) - printToAll("Releasing " .. mode .. " token" .. manager.call("getTokenCount")) - end + end - table.remove(sealedTokens) + if allowed then + for i = 1, SHOW_MULTI_SEAL do + sealToken(map.name, playerColor) + end + else + printToColor("Not enough " .. notFound .. " tokens in the chaos bag.", playerColor) + end + end) + end + end + end end -function getChaosBag() - local items = getObjectFromGUID("83ef06").getObjects() - local chaosbag = nil - for i,v in ipairs(items) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break +-- generates a list of chaos tokens that is in the chaos bag +function readBag() + local chaosbag = Global.call("findChaosBag") + tokensInBag = {} + + for _, token in ipairs(chaosbag.getObjects()) do + tokensInBag[token.name] = (tokensInBag[token.name] or 0) + 1 + end +end + +-- native event from TTS - used to update the context menu for cards like "Unrelenting" +function onHover() + if UPDATE_ON_HOVER then + readBag() + self.clearContextMenu() + generateContextMenu() + end +end + +-- seals the named token on this card +function sealToken(name, playerColor) + if not Global.call("canTouchChaosTokens") then return end + local chaosbag = Global.call("findChaosBag") + for i, obj in ipairs(chaosbag.getObjects()) do + if obj.name == name then + chaosbag.takeObject({ + position = self.getPosition() + Vector(0, 0.5 + 0.1 * #sealedTokens, 0), + rotation = self.getRotation(), + index = i - 1, + smooth = false, + callback_function = function(token) + local guid = token.getGUID() + table.insert(sealedTokens, guid) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.sealedToken(name, guid) + end end + }) + return end - if chaosbag == nil then printToAll("No chaos bag found") end - return chaosbag -end \ No newline at end of file + end + printToColor(name .. " token not found in chaos bag", playerColor) +end + +-- release the last sealed token +function releaseOneToken(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token", playerColor) + putTokenAway(table.remove(sealedTokens)) + end +end + +-- release multiple tokens at once +function releaseMultipleTokens(playerColor) + if SHOW_MULTI_RELEASE >= #sealedTokens then + for i = 1, SHOW_MULTI_RELEASE do + releaseOneToken(playerColor) + end + else + printToColor("Not enough " .. name .. " tokens sealed.", playerColor) + end +end + +-- releases all sealed tokens +function releaseAllTokens(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token(s)", playerColor) + for _, guid in ipairs(sealedTokens) do + putTokenAway(guid) + end + sealedTokens = {} + end +end + +-- returns the token (referenced by GUID) to the chaos bag +function putTokenAway(guid) + local token = getObjectFromGUID(guid) + if not token then return end + + local name = token.getName() + local chaosbag = Global.call("findChaosBag") + chaosbag.putObject(token) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.releasedToken(name, guid) + end +end +end) +__bundle_register("accessories/TokenArrangerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenArrangerApi = {} + + -- local function to call the token arranger, if it is on the table + ---@param functionName String Name of the function to cal + ---@param argument Variant Parameter to pass + local function callIfExistent(functionName, argument) + local tokenArranger = getObjectsWithTag("TokenArranger")[1] + if tokenArranger ~= nil then + tokenArranger.call(functionName, argument) + end + end + + -- updates the token modifiers with the provided data + ---@param tokenData Table Contains the chaos token metadata + TokenArrangerApi.onTokenDataChanged = function(fullData) + callIfExistent("onTokenDataChanged", fullData) + end + + -- deletes already laid out tokens + TokenArrangerApi.deleteCopiedTokens = function() + callIfExistent("deleteCopiedTokens") + end + + -- updates the laid out tokens + TokenArrangerApi.layout = function() + Wait.time(function() callIfExistent("layout") end, 0.1) + end + + return TokenArrangerApi +end +end) +__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local BlessCurseManagerApi = {} + local MANAGER_GUID = "5933fb" + + -- removes all taken tokens and resets the counts + BlessCurseManagerApi.removeTakenTokensAndReset = function() + local BlessCurseManager = getObjectFromGUID(MANAGER_GUID) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10) + Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.sealedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("sealedToken", { type = type, guid = guid }) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.releasedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("releasedToken", { type = type, guid = guid }) + end + + -- broadcasts the current status for bless/curse tokens + ---@param playerColor String Color of the player to show the broadcast to + BlessCurseManagerApi.broadcastStatus = function(playerColor) + getObjectFromGUID(MANAGER_GUID).call("broadcastStatus", playerColor) + end + + -- adds Wendy's menu to the hovered card (allows sealing of tokens) + ---@param color String Color of the player to show the broadcast to + BlessCurseManagerApi.addWendysMenu = function(playerColor, hoveredObject) + getObjectFromGUID(MANAGER_GUID).call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject }) + end + + return BlessCurseManagerApi +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shield of Faith (2) 06abe0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shield of Faith (2) 06abe0.yaml index 033bffd89..4bff01da6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shield of Faith (2) 06abe0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shield of Faith (2) 06abe0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 589001 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.75 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shining Trapezohedron (4) b4b991.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shining Trapezohedron (4) b4b991.yaml index 3f09cf931..8a2d9cb3b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shining Trapezohedron (4) b4b991.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shining Trapezohedron (4) b4b991.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 527238 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.68 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shocking Discovery f4dd3d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shocking Discovery f4dd3d.yaml index 18ce4c687..ecd240e38 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shocking Discovery f4dd3d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shocking Discovery f4dd3d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 583703 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.81 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Short Supply e5f541.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Short Supply e5f541.ttslua index c1e045cb0..ebe9d31ed 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Short Supply e5f541.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Short Supply e5f541.ttslua @@ -42,6 +42,9 @@ local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = ( return require, loaded, register, modules end)(nil) __bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/ShortSupply") +end) +__bundle_register("playercards/cards/ShortSupply", function(require, _LOADED, __bundle_register, __bundle_modules) local playmatAPI = require("playermat/PlaymatApi") function onLoad() @@ -121,6 +124,31 @@ do end end + -- Returns the color of the player's hand that is seated next to the playermat + ---@param matColor String Color of the playermat + PlaymatApi.getPlayerColor = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getVar("playerColor") + end + + -- Returns the color of the playermat that owns the playercolor's hand + ---@param handColor String Color of the playermat + PlaymatApi.getMatColor = function(handColor) + local matColors = {"White", "Orange", "Green", "Red"} + for i, mat in ipairs(internal.getMatForColor("All")) do + local color = mat.getVar("playerColor") + if color == handColor then return matColors[i] end + end + return "NOT_FOUND" + end + + -- Returns if there is the card "Dream-Enhancing Serum" on the requested playermat + ---@param matColor String Color of the playermat + PlaymatApi.isDES = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getVar("isDES") + end + -- Returns the draw deck of the requested playmat ---@param matColor String Color of the playermat PlaymatApi.getDrawDeck = function(matColor) @@ -136,6 +164,36 @@ do return mat.call("returnGlobalDiscardPosition") end + -- Transforms a local position into a global position + ---@param localPos Table Local position to be transformed + ---@param matColor String Color of the playermat + PlaymatApi.transformLocalPosition = function(localPos, matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.positionToWorld(localPos) + end + + -- Returns the rotation of the requested playmat + ---@param matColor String Color of the playermat + PlaymatApi.returnRotation = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getRotation() + end + + -- Triggers the Upkeep for the requested playmat + ---@param matColor String Color of the playermat + ---@param playerColor String Color of the calling player (for messages) + PlaymatApi.doUpkeepFromHotkey = function(matColor, playerColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.call("doUpkeepFromHotkey", playerColor) + end + + -- Returns the active investigator id + ---@param matColor String Color of the playermat + PlaymatApi.returnInvestigatorId = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getVar("activeInvestigatorId") + end + -- Sets the requested playermat's snap points to limit snapping to matching card types or not. If -- matchTypes is true, the main card slot snap points will only snap assets, while the -- investigator area point will only snap Investigators. If matchTypes is false, snap points will @@ -189,6 +247,20 @@ do return count end + -- Adds the specified amount of resources to the requested playermat's resource counter + PlaymatApi.gainResources = function(amount, matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("gainResources", amount) + end + end + + -- Discard a non-hidden card from the corresponding player's hand + PlaymatApi.doDiscardOne = function(matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("doDiscardOne") + end + end + -- Convenience function to look up a mat's object by color, or get all mats. ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also -- accepts "All" as a special value which will return all four mats. diff --git a/unpacked/Bag All Player Cards 15bb07/Card Short Supply e5f541.yaml b/unpacked/Bag All Player Cards 15bb07/Card Short Supply e5f541.yaml index 0be5371a6..758f15298 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Short Supply e5f541.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Short Supply e5f541.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378900 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.18 posY: 2.91 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shortcut (2) 29169e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shortcut (2) 29169e.yaml index 1ac0bb50f..4e06b8705 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shortcut (2) 29169e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shortcut (2) 29169e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 585308 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.86 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shortcut d4fd4a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shortcut d4fd4a.yaml index f49c2a563..1596fad8e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shortcut d4fd4a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shortcut d4fd4a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368405 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.01 posY: 3.85 posZ: -16.7 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shotgun (4) c92ea3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shotgun (4) c92ea3.yaml index 8643ab3fe..1132cdf08 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shotgun (4) c92ea3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shotgun (4) c92ea3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226357 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 19.67 posY: 3.37 posZ: -57.21 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Showmanship ad63bc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Showmanship ad63bc.yaml index c98436076..05cc62532 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Showmanship ad63bc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Showmanship ad63bc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 580206 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.21 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shrewd Analysis 658d38.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shrewd Analysis 658d38.yaml index 9b6e56645..1294653cd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shrewd Analysis 658d38.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shrewd Analysis 658d38.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368419 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 5.03 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shrewd Dealings c70129.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shrewd Dealings c70129.yaml index 55fdcd0ba..128cbf51a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shrewd Dealings c70129.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shrewd Dealings c70129.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379008 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.68 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shrine of the Moirai (3) 1934c6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shrine of the Moirai (3) 1934c6.yaml index efed1a6a3..95ca9fc24 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shrine of the Moirai (3) 1934c6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shrine of the Moirai (3) 1934c6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 589909 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.02 posY: 4.05 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shrivelling (3) b3ce16.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shrivelling (3) b3ce16.yaml index 3384ecf30..fea4fd980 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shrivelling (3) b3ce16.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shrivelling (3) b3ce16.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230355 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.02 posY: 4.05 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shrivelling (5) 7a33b2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shrivelling (5) 7a33b2.yaml index 564d04391..8111fa4d3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shrivelling (5) 7a33b2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shrivelling (5) 7a33b2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230361 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.16 posY: 3.71 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shrivelling 914053.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shrivelling 914053.yaml index f27ef953e..151b2ce4d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shrivelling 914053.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shrivelling 914053.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230328 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 32.98 posY: 3.33 posZ: -47.41 - rotX: 1 - rotY: 270 - rotZ: 2 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shroud of Shadows (4) 12bdf1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shroud of Shadows (4) 12bdf1.yaml index 1f4582ee1..6084cff3d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shroud of Shadows (4) 12bdf1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shroud of Shadows (4) 12bdf1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 579808 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 8.98 posY: 3.75 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shroud of Shadows a565d5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shroud of Shadows a565d5.yaml index bc376921e..7c1b38344 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shroud of Shadows a565d5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shroud of Shadows a565d5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 553111 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.97 posY: 4.75 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sign Magick (3) f998c5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sign Magick (3) f998c5.yaml index fb06d902c..cb22ea801 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sign Magick (3) f998c5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sign Magick (3) f998c5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449528 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.73 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sign Magick 05d263.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sign Magick 05d263.yaml index 8603f2f77..c5cc84215 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sign Magick 05d263.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sign Magick 05d263.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 277510 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.01 posY: 3.77 posZ: -16.7 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Signum Crucis (2) (Taboo) 119880.yaml b/unpacked/Bag All Player Cards 15bb07/Card Signum Crucis (2) (Taboo) 119880.yaml index 0bbbddab4..0b0c24657 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Signum Crucis (2) (Taboo) 119880.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Signum Crucis (2) (Taboo) 119880.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558201 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 21.83 posY: 4.32 posZ: -45.45 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Signum Crucis (2) c73bb0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Signum Crucis (2) c73bb0.yaml index 547d20ab4..ea0a7af1c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Signum Crucis (2) c73bb0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Signum Crucis (2) c73bb0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 588508 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 4.33 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh 3f92cf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh 3f92cf.yaml index 650c5a17d..0e0545447 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh 3f92cf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh 3f92cf.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 552804 ColorDiffuse: @@ -41,9 +41,9 @@ Snap: true States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 272429 ColorDiffuse: @@ -90,10 +90,10 @@ States: posY: 1.49510384 posZ: -1.72874641 rotX: -8.9108e-08 - rotY: 180 + rotY: 180.0 rotZ: -6.421163e-07 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' @@ -106,11 +106,11 @@ Transform: posX: 26.93 posY: 3.69 posZ: 5.07 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh 574b59.yaml b/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh 574b59.yaml index c44dbec01..a91c9891d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh 574b59.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh 574b59.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 553204 ColorDiffuse: @@ -39,9 +39,9 @@ Snap: true States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 272508 ColorDiffuse: @@ -88,7 +88,7 @@ States: rotY: 270.003784 rotZ: 8.567934e-07 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' @@ -100,11 +100,11 @@ Transform: posX: 26.57 posY: 3.69 posZ: -13.49 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Silas's Net 4f11a2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Silas's Net 4f11a2.yaml index d3994ef57..8bdb00621 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Silas's Net 4f11a2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Silas's Net 4f11a2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 582309 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.98 posY: 4.03 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Silver Twilight Acolyte 16a89d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Silver Twilight Acolyte 16a89d.yaml index 9b158b7d8..805776ba6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Silver Twilight Acolyte 16a89d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Silver Twilight Acolyte 16a89d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 527417 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.46 posY: 3.32 posZ: 26.95 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sin-Eater (3) 0c77d6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sin-Eater (3) 0c77d6.yaml index f84eb6a69..d9836e731 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sin-Eater (3) 0c77d6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sin-Eater (3) 0c77d6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379118 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.74 posY: 3.34 posZ: 65.49 - rotX: 359 - rotY: 270 - rotZ: 3 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 3.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sinha's Medical Kit 8d6475.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sinha's Medical Kit 8d6475.yaml index e007c3a8e..443698d2f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sinha's Medical Kit 8d6475.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sinha's Medical Kit 8d6475.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 452306 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 79.17 posY: 3.32 posZ: 7.4 - rotX: 0 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Siren Call b9fbff.yaml b/unpacked/Bag All Player Cards 15bb07/Card Siren Call b9fbff.yaml index 4c5ad89c7..c9fb194e9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Siren Call b9fbff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Siren Call b9fbff.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 585110 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.15 posY: 3.67 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sister Mary 1c78ea.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sister Mary 1c78ea.yaml index 986aab7fb..800c9824c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sister Mary 1c78ea.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sister Mary 1c78ea.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 553200 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.88 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sister Mary 617aeb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sister Mary 617aeb.yaml index 42410abe9..e28978fab 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sister Mary 617aeb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sister Mary 617aeb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 553400 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 18.45 posY: 1.8 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sixth Sense (4) 060943.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sixth Sense (4) 060943.yaml index 890bad1a0..2c6246b2d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sixth Sense (4) 060943.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sixth Sense (4) 060943.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379618 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.03 posY: 3.67 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sixth Sense 6eceef.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sixth Sense 6eceef.yaml index 3a4523521..2cfe372ba 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sixth Sense 6eceef.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sixth Sense 6eceef.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 277512 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 4.13 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel Back) a03077.yaml b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel Back) a03077.yaml index 6bdba9765..89bead613 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel Back) a03077.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel Back) a03077.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 270204 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 2.12 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel Front) 8116a6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel Front) 8116a6.yaml index ac96c9dcc..42344c5eb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel Front) 8116a6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel Front) 8116a6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 270203 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.75 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel) 22ebb2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel) 22ebb2.yaml index 1cf8d92d1..3356f8bd9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel) 22ebb2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel) 22ebb2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 270202 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.73 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole 6b00ec.yaml b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole 6b00ec.yaml index a060f884c..88ca20e86 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole 6b00ec.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole 6b00ec.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 258502 ColorDiffuse: @@ -39,9 +39,9 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587102 ColorDiffuse: @@ -88,7 +88,7 @@ States: rotY: 269.998718 rotZ: 1.14691389e-07 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' @@ -100,11 +100,11 @@ Transform: posX: 26.57 posY: 3.69 posZ: -5.72 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole 9015b4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole 9015b4.yaml index 29f593383..1596e2e94 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole 9015b4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole 9015b4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 535502 ColorDiffuse: @@ -41,9 +41,9 @@ Snap: true States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587402 ColorDiffuse: @@ -90,10 +90,10 @@ States: posY: 1.29860592 posZ: 60.19 rotX: 1.18973453e-08 - rotY: 180 + rotY: 180.0 rotZ: 3.49164786e-09 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' @@ -106,11 +106,11 @@ Transform: posX: 26.93 posY: 3.69 posZ: 2.46 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sled Dog 852697.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sled Dog 852697.yaml index 365b2409e..3f4206a58 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sled Dog 852697.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sled Dog 852697.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378914 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.18 posY: 2.96 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sledgehammer (4) ae3ff5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sledgehammer (4) ae3ff5.yaml index 7849b579a..66c0113fd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sledgehammer (4) ae3ff5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sledgehammer (4) ae3ff5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378934 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.18 posY: 2.8 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sledgehammer 78fdc7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sledgehammer 78fdc7.yaml index a07b2f7fd..992ff72ce 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sledgehammer 78fdc7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sledgehammer 78fdc7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378932 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.19 posY: 2.5 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sleight of Hand (Taboo) 5a51d1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sleight of Hand (Taboo) 5a51d1.yaml index 3343c034c..b97e56638 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sleight of Hand (Taboo) 5a51d1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sleight of Hand (Taboo) 5a51d1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450618 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.1 posY: 3.73 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sleight of Hand 819aee.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sleight of Hand 819aee.yaml index a9e74782e..a48a14fb8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sleight of Hand 819aee.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sleight of Hand 819aee.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368710 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.68 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sleuth (3) 1bdb15.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sleuth (3) 1bdb15.yaml index f637224d7..565aef3dc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sleuth (3) 1bdb15.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sleuth (3) 1bdb15.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378959 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.18 posY: 2.92 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Slip Away (2) 4a45c6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Slip Away (2) 4a45c6.yaml index acac98c34..3225889f7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Slip Away (2) 4a45c6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Slip Away (2) 4a45c6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538622 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.02 posY: 4.01 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Slip Away cf1d4e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Slip Away cf1d4e.yaml index 94121cb63..717e8c732 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Slip Away cf1d4e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Slip Away cf1d4e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368714 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.16 posY: 4.15 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Small Favor bf5a5f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Small Favor bf5a5f.yaml index 3281fefae..a067a6e1b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Small Favor bf5a5f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Small Favor bf5a5f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378016 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.68 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Small Radio c9feda.yaml b/unpacked/Bag All Player Cards 15bb07/Card Small Radio c9feda.yaml index ea60a8de0..d7440f6cc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Small Radio c9feda.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Small Radio c9feda.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450311 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 79.13 posY: 3.33 posZ: 7.83 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Smite the Wicked 58f534.yaml b/unpacked/Bag All Player Cards 15bb07/Card Smite the Wicked 58f534.yaml index e523d2291..d97067edc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Smite the Wicked 58f534.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Smite the Wicked 58f534.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 582827 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.01 posY: 3.99 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Smoking Pipe 603e29.yaml b/unpacked/Bag All Player Cards 15bb07/Card Smoking Pipe 603e29.yaml index a9e8ceb8f..5628539fc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Smoking Pipe 603e29.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Smoking Pipe 603e29.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368514 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.12 posY: 3.95 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Smuggled Goods 1f3880.yaml b/unpacked/Bag All Player Cards 15bb07/Card Smuggled Goods 1f3880.yaml index f1e6529fc..64fd92869 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Smuggled Goods 1f3880.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Smuggled Goods 1f3880.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 376938 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.71 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Snare Trap (2) f66dd9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Snare Trap (2) f66dd9.yaml index 150d8919c..622c41b79 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Snare Trap (2) f66dd9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Snare Trap (2) f66dd9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368849 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.77 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sneak Attack (2) 5f19e0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sneak Attack (2) 5f19e0.yaml index b78364823..b9774e5ff 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sneak Attack (2) 5f19e0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sneak Attack (2) 5f19e0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315245 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.89 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sneak Attack b18b33.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sneak Attack b18b33.yaml index d2bd9918e..0bcd287b8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sneak Attack b18b33.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sneak Attack b18b33.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368713 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sneak By d099f4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sneak By d099f4.yaml index 0a6381e7d..2783a54dc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sneak By d099f4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sneak By d099f4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538614 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.79 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Snipe (1) 79cbc6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Snipe (1) 79cbc6.yaml index 4cbc98102..3b5183d56 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Snipe (1) 79cbc6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Snipe (1) 79cbc6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378925 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.19 posY: 2.61 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Solemn Vow ef7c11.yaml b/unpacked/Bag All Player Cards 15bb07/Card Solemn Vow ef7c11.yaml index 065e67789..ac793b239 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Solemn Vow ef7c11.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Solemn Vow ef7c11.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 440926 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.16 posY: 3.78 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Something Worth Fighting For a3f105.yaml b/unpacked/Bag All Player Cards 15bb07/Card Something Worth Fighting For a3f105.yaml index 40ed282b7..c844af1d4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Something Worth Fighting For a3f105.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Something Worth Fighting For a3f105.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 278011 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.06 posY: 3.79 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Song of the Dead (2) 2ae3ce.yaml b/unpacked/Bag All Player Cards 15bb07/Card Song of the Dead (2) 2ae3ce.yaml index 54709fbd6..746ea373b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Song of the Dead (2) 2ae3ce.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Song of the Dead (2) 2ae3ce.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230345 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.13 posY: 4.95 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Soothing Melody 53f076.yaml b/unpacked/Bag All Player Cards 15bb07/Card Soothing Melody 53f076.yaml index ecb1ea9ae..914c2476b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Soothing Melody 53f076.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Soothing Melody 53f076.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378621 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.01 posY: 3.83 posZ: -16.7 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sophie 4f46ad.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sophie 4f46ad.yaml index d4560218f..66c924a03 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sophie 4f46ad.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sophie 4f46ad.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 374264 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.27 posY: 1.19 posZ: 26.81 - rotX: 0 - rotY: 270 - rotZ: 353 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 353.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Soul Sanctification (3) 52f6d6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Soul Sanctification (3) 52f6d6.yaml index 2c71c4639..c10f98f32 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Soul Sanctification (3) 52f6d6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Soul Sanctification (3) 52f6d6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379147 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.72 posY: 3.38 posZ: 65.64 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Spare Parts 9e136f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Spare Parts 9e136f.yaml index bea0c95f1..56214265d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Spare Parts 9e136f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Spare Parts 9e136f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450312 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 79.23 posY: 3.33 posZ: 7.79 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Spectral Razor 8e8a14.yaml b/unpacked/Bag All Player Cards 15bb07/Card Spectral Razor 8e8a14.yaml index 97adc01bf..4e5174b45 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Spectral Razor 8e8a14.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Spectral Razor 8e8a14.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 448029 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.51 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Spectral Web 863f1a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Spectral Web 863f1a.yaml index d320fba27..aee125799 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Spectral Web 863f1a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Spectral Web 863f1a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 275733 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.06 posY: 3.86 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Spirit Athame (1) 90a106.yaml b/unpacked/Bag All Player Cards 15bb07/Card Spirit Athame (1) 90a106.yaml index 45fa89a23..94d2ddc39 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Spirit Athame (1) 90a106.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Spirit Athame (1) 90a106.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230335 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.03 posY: 3.68 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Spirit of Humanity (2) e5901b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Spirit of Humanity (2) e5901b.yaml index 90cae887a..be3cd0f9a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Spirit of Humanity (2) e5901b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Spirit of Humanity (2) e5901b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 579909 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.98 posY: 3.94 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Spirit-Speaker a33470.yaml b/unpacked/Bag All Player Cards 15bb07/Card Spirit-Speaker a33470.yaml index 555ec6c07..deb9d31bd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Spirit-Speaker a33470.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Spirit-Speaker a33470.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 375016 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.0 posY: 3.87 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Spiritual Resolve (5) 26922c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Spiritual Resolve (5) 26922c.yaml index 514e6b932..a4909925d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Spiritual Resolve (5) 26922c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Spiritual Resolve (5) 26922c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 448938 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.02 posY: 3.99 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Split the Angle 67e006.yaml b/unpacked/Bag All Player Cards 15bb07/Card Split the Angle 67e006.yaml index 8289b875e..b13df3eec 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Split the Angle 67e006.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Split the Angle 67e006.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 381050 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.99 posY: 3.71 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Springfield M1903 (4) (Taboo) 21664c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Springfield M1903 (4) (Taboo) 21664c.yaml index d759b0603..f58e9959e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Springfield M1903 (4) (Taboo) 21664c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Springfield M1903 (4) (Taboo) 21664c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 584611 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.16 posY: 3.86 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Springfield M1903 (4) a7944d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Springfield M1903 (4) a7944d.yaml index 1344d63d4..5f536f185 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Springfield M1903 (4) a7944d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Springfield M1903 (4) a7944d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226356 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.06 posY: 3.87 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card St. Hubert's Key 423d46.yaml b/unpacked/Bag All Player Cards 15bb07/Card St. Hubert's Key 423d46.yaml index 6f6ef41e8..b5f47734d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card St. Hubert's Key 423d46.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card St. Hubert's Key 423d46.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230331 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.15 posY: 3.9 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stand Together (3) cd7b97.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stand Together (3) cd7b97.yaml index cb5110720..03de902e8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stand Together (3) cd7b97.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stand Together (3) cd7b97.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226352 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 4.09 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stand Together 7ec473.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stand Together 7ec473.yaml index b1597d7a0..793a9969c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stand Together 7ec473.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stand Together 7ec473.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545316 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.68 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stargazing (1) 968a26.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stargazing (1) 968a26.yaml index f1f74df12..70eb6265a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stargazing (1) 968a26.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stargazing (1) 968a26.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 444022 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.1 posY: 3.74 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stars of Hyades 1890d0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stars of Hyades 1890d0.yaml index f6b3c66a9..14f3d5275 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stars of Hyades 1890d0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stars of Hyades 1890d0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 374115 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.15 posY: 3.77 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Steadfast 4e1d91.yaml b/unpacked/Bag All Player Cards 15bb07/Card Steadfast 4e1d91.yaml index 202b65b7d..98e21b9a0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Steadfast 4e1d91.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Steadfast 4e1d91.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 431006 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.76 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stealth (3) 26a3bf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stealth (3) 26a3bf.yaml index febb127e5..299e34fa0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stealth (3) 26a3bf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stealth (3) 26a3bf.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 440720 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.98 posY: 3.69 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stealth ddee79.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stealth ddee79.yaml index 1fe1acf57..3cf70ae9b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stealth ddee79.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stealth ddee79.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368626 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.87 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stella Clark 00e18e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stella Clark 00e18e.yaml index b292f7ce0..ff64137c5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stella Clark 00e18e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stella Clark 00e18e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 234904 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.83 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stella Clark dd3dbd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stella Clark dd3dbd.yaml index aae4f743a..3bf842907 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stella Clark dd3dbd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stella Clark dd3dbd.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 274220 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.85 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stick to the Plan (3) 82d62c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stick to the Plan (3) 82d62c.yaml index 6dac4c2a8..993f0fba4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stick to the Plan (3) 82d62c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stick to the Plan (3) 82d62c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226350 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.18 posY: 2.97 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stirring Up Trouble (1) e99f0d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stirring Up Trouble (1) e99f0d.yaml index 9c644733e..5ad7675fe 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stirring Up Trouble (1) e99f0d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stirring Up Trouble (1) e99f0d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 553104 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.1 posY: 3.71 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Storm of Spirits (3) 1e9213.yaml b/unpacked/Bag All Player Cards 15bb07/Card Storm of Spirits (3) 1e9213.yaml index 2da37a73a..eb0817ebd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Storm of Spirits (3) 1e9213.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Storm of Spirits (3) 1e9213.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 444021 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.0 posY: 3.74 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Storm of Spirits 9c922f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Storm of Spirits 9c922f.yaml index efad940f7..c7c12fa47 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Storm of Spirits 9c922f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Storm of Spirits 9c922f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230314 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.81 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) (Taboo) e95ddb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) (Taboo) e95ddb.yaml index d0784d75a..c3b205057 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) (Taboo) e95ddb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) (Taboo) e95ddb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558208 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 21.83 posY: 4.28 posZ: -44.46 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) 4874bc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) 4874bc.yaml index c85813936..2495d45b6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) 4874bc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) 4874bc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430656 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.14 posY: 3.69 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) 9afe23.yaml b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) 9afe23.yaml index deac39971..84974bf16 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) 9afe23.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) 9afe23.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430654 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.99 posY: 3.67 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) d96e4b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) d96e4b.yaml index cce3b16fa..74b4b2c0c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) d96e4b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) d96e4b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 313905 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.16 posY: 3.3 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) fa61ba.yaml b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) fa61ba.yaml index 80fe3f230..d670b8cc9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) fa61ba.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) fa61ba.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430655 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.97 posY: 3.67 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution 565b6b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution 565b6b.yaml index 885a94282..7702bb4af 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution 565b6b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution 565b6b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368422 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.72 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stray Cat f474b1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stray Cat f474b1.yaml index 5b04ca45f..4c67ef557 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stray Cat f474b1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stray Cat f474b1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368824 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Streetwise (3) (Taboo) 88a481.yaml b/unpacked/Bag All Player Cards 15bb07/Card Streetwise (3) (Taboo) 88a481.yaml index 0aef5bb06..1b6a98d1a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Streetwise (3) (Taboo) 88a481.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Streetwise (3) (Taboo) 88a481.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450605 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.18 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Streetwise (3) d7dbac.yaml b/unpacked/Bag All Player Cards 15bb07/Card Streetwise (3) d7dbac.yaml index 99964fd10..25676da08 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Streetwise (3) d7dbac.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Streetwise (3) d7dbac.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315251 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.01 posY: 3.94 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Streetwise a973aa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Streetwise a973aa.yaml index 9835888e5..c481fc87e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Streetwise a973aa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Streetwise a973aa.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538609 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.79 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Strength in Numbers (1) 4e6d80.yaml b/unpacked/Bag All Player Cards 15bb07/Card Strength in Numbers (1) 4e6d80.yaml index fa77521ab..202b5b612 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Strength in Numbers (1) 4e6d80.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Strength in Numbers (1) 4e6d80.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378906 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.99 posY: 3.76 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card String of Curses 046b16.yaml b/unpacked/Bag All Player Cards 15bb07/Card String of Curses 046b16.yaml index e26b4c28c..5fbcc8f48 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card String of Curses 046b16.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card String of Curses 046b16.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379112 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stroke of Luck (2) 06228f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stroke of Luck (2) 06228f.yaml index 28abf0c6b..48fee1fd0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stroke of Luck (2) 06228f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stroke of Luck (2) 06228f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368843 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.15 posY: 4.06 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stubborn Detective 4ea68b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stubborn Detective 4ea68b.yaml index ca52cd440..cb042386f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stubborn Detective 4ea68b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stubborn Detective 4ea68b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 527418 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 32.19 posY: 2.3 posZ: -77.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Studious (3) 4ea716.yaml b/unpacked/Bag All Player Cards 15bb07/Card Studious (3) 4ea716.yaml index b228e9904..66db4a225 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Studious (3) 4ea716.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Studious (3) 4ea716.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 592419 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 5.08 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stunning Blow 58c435.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stunning Blow 58c435.yaml index 4ebc96927..9f932eaf5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stunning Blow 58c435.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stunning Blow 58c435.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368805 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.07 posY: 3.69 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stupor a42bcf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stupor a42bcf.yaml index f88bf16f5..d5bf2449a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stupor a42bcf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stupor a42bcf.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378920 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.19 posY: 2.38 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stylish Coat (1) 0a1b3a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stylish Coat (1) 0a1b3a.yaml index 627c31a0a..260cd8e0d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stylish Coat (1) 0a1b3a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stylish Coat (1) 0a1b3a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379064 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.67 posY: 3.35 posZ: 65.93 - rotX: 357 - rotY: 270 - rotZ: 357 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 357.0 + rotY: 270.0 + rotZ: 357.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Suggestion (1) 0ec9bf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Suggestion (1) 0ec9bf.yaml index 9f9222e4c..694371281 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Suggestion (1) 0ec9bf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Suggestion (1) 0ec9bf.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 440721 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.16 posY: 3.29 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Suggestion (4) e7f37b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Suggestion (4) e7f37b.yaml index 7243a9a55..06b28e64d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Suggestion (4) e7f37b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Suggestion (4) e7f37b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315259 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.13 posY: 5.51 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Summoned Hound (1) ab4fb3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Summoned Hound (1) ab4fb3.yaml index 821b3b74e..672e96b6b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Summoned Hound (1) ab4fb3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Summoned Hound (1) ab4fb3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 527235 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 8.98 posY: 3.8 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Summoned Nightgaunt cf96b9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Summoned Nightgaunt cf96b9.yaml index 376c26576..51edb8e42 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Summoned Nightgaunt cf96b9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Summoned Nightgaunt cf96b9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 546917 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.15 posY: 4.16 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Summoned Servitor 73b311.yaml b/unpacked/Bag All Player Cards 15bb07/Card Summoned Servitor 73b311.yaml index 9940f3d22..f43638c98 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Summoned Servitor 73b311.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Summoned Servitor 73b311.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379104 ColorDiffuse: @@ -66,11 +66,11 @@ Transform: posX: 16.67 posY: 3.38 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sure Gamble (3) 308be1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sure Gamble (3) 308be1.yaml index a93cad259..32bfb82aa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sure Gamble (3) 308be1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sure Gamble (3) 308be1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315254 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Surgical Kit (3) c8ecf2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Surgical Kit (3) c8ecf2.yaml index 9868f329d..731e05cb0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Surgical Kit (3) c8ecf2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Surgical Kit (3) c8ecf2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379049 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 16.67 posY: 3.37 posZ: 65.93 - rotX: 358 - rotY: 270 - rotZ: 358 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Surprising Find (1) ff59dd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Surprising Find (1) ff59dd.yaml index 22b498481..bf386855c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Surprising Find (1) ff59dd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Surprising Find (1) ff59dd.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 448838 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.15 posY: 3.68 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Survey the Area (1) 6aa5dc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Survey the Area (1) 6aa5dc.yaml index fa5d27e15..3a8bcfa5f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Survey the Area (1) 6aa5dc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Survey the Area (1) 6aa5dc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379027 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 2.16 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Survival Instinct (2) be4abe.yaml b/unpacked/Bag All Player Cards 15bb07/Card Survival Instinct (2) be4abe.yaml index 0b9c8a813..e5a88b46a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Survival Instinct (2) be4abe.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Survival Instinct (2) be4abe.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368842 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.82 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Survival Instinct 078efb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Survival Instinct 078efb.yaml index 9dd175a43..e98fe170f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Survival Instinct 078efb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Survival Instinct 078efb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368800 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Survival Knife (2) c1d796.yaml b/unpacked/Bag All Player Cards 15bb07/Card Survival Knife (2) c1d796.yaml index a1d1c985f..8f874f3bb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Survival Knife (2) c1d796.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Survival Knife (2) c1d796.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545201 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.81 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Survival Knife 4d971e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Survival Knife 4d971e.yaml index ef9e66c70..03f1b2200 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Survival Knife 4d971e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Survival Knife 4d971e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226322 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.68 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sweeping Kick (1) b4d67b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sweeping Kick (1) b4d67b.yaml index 3321772b7..4db3c034b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sweeping Kick (1) b4d67b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sweeping Kick (1) b4d67b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379013 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 2.93 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Swift Reflexes c2d211.yaml b/unpacked/Bag All Player Cards 15bb07/Card Swift Reflexes c2d211.yaml index 57058ddd5..ec534f07e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Swift Reflexes c2d211.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Swift Reflexes c2d211.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 277711 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.11 posY: 3.69 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Swift Reload (2) 2cfa4f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Swift Reload (2) 2cfa4f.yaml index fe8b26a1e..4e40298a2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Swift Reload (2) 2cfa4f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Swift Reload (2) 2cfa4f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 380028 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.07 posY: 3.76 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Switchblade (2) (Taboo) 842d41.yaml b/unpacked/Bag All Player Cards 15bb07/Card Switchblade (2) (Taboo) 842d41.yaml index 8187e6407..56ce1aa4f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Switchblade (2) (Taboo) 842d41.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Switchblade (2) (Taboo) 842d41.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450603 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.99 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Switchblade (2) 2fba3b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Switchblade (2) 2fba3b.yaml index a217b5715..d274c88eb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Switchblade (2) 2fba3b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Switchblade (2) 2fba3b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315243 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.1 posY: 3.68 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Switchblade 213853.yaml b/unpacked/Bag All Player Cards 15bb07/Card Switchblade 213853.yaml index 876d03477..4dc111add 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Switchblade 213853.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Switchblade 213853.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368621 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sword Cane 9c32e2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sword Cane 9c32e2.yaml index 96a26ca13..df515f501 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sword Cane 9c32e2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sword Cane 9c32e2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 582423 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.71 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Takada's Cache e627e8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Takada's Cache e627e8.yaml index 20c4c57d3..9e67e3f6e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Takada's Cache e627e8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Takada's Cache e627e8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 452307 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 79.18 posY: 3.32 posZ: 8.23 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Take Heart cc6e4d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Take Heart cc6e4d.yaml index 9716cfc9a..83cefbd5f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Take Heart cc6e4d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Take Heart cc6e4d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368806 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.82 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Take the Initiative 50fb37.yaml b/unpacked/Bag All Player Cards 15bb07/Card Take the Initiative 50fb37.yaml index cfd3386c3..e04db2abe 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Take the Initiative 50fb37.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Take the Initiative 50fb37.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226300 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.78 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Talisman of Protection 7b4b0c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Talisman of Protection 7b4b0c.yaml index f54efb2c1..709669ee6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Talisman of Protection 7b4b0c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Talisman of Protection 7b4b0c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378954 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.18 posY: 2.85 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Taunt (2) 9956d5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Taunt (2) 9956d5.yaml index 3bfcfe6bd..1c322c2fa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Taunt (2) 9956d5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Taunt (2) 9956d5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226344 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.69 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Taunt (3) 85fe46.yaml b/unpacked/Bag All Player Cards 15bb07/Card Taunt (3) 85fe46.yaml index d665b812b..5744febad 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Taunt (3) 85fe46.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Taunt (3) 85fe46.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545328 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 5.03 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Taunt d5cac6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Taunt d5cac6.yaml index 563d9bec5..ecc25da0e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Taunt d5cac6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Taunt d5cac6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226308 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.94 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Teachings of the Order 90fdb0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Teachings of the Order 90fdb0.yaml index 25c16d475..98f4845dc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Teachings of the Order 90fdb0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Teachings of the Order 90fdb0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 581922 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.16 posY: 3.96 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Teamwork eab2ed.yaml b/unpacked/Bag All Player Cards 15bb07/Card Teamwork eab2ed.yaml index 6f6f291a2..16bd9fa83 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Teamwork eab2ed.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Teamwork eab2ed.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226306 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 4.74 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 05e697.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 05e697.yaml index 9fef2c87c..244524c14 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 05e697.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 05e697.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449750 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 76.74 posY: 9.16 posZ: 17.5 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 0ba293.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 0ba293.yaml index ec1e18914..0d69dc5c4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 0ba293.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 0ba293.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449747 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 76.29 posY: 15.16 posZ: 23.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 0ef2ba.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 0ef2ba.yaml index f6e2f83bf..36e067c51 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 0ef2ba.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 0ef2ba.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449751 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 76.46 posY: 29.78 posZ: 14.47 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 361f15.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 361f15.yaml index 3adc52595..8ae16a5b4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 361f15.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 361f15.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449749 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 70.81 posY: 2.54 posZ: 35.58 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 519e41.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 519e41.yaml index 8143f3ca9..bd2be3f8d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 519e41.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 519e41.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449745 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 76.21 posY: 9.16 posZ: 18.21 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 76409f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 76409f.yaml index 4c6151492..704b0e543 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 76409f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 76409f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449746 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 76.72 posY: 9.16 posZ: 19.04 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li f5bd65.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li f5bd65.yaml index ae564e366..02c1dea64 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li f5bd65.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li f5bd65.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449748 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 72.29 posY: 2.54 posZ: 30.83 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Telescopic Sight (3) (Taboo) dc65fd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Telescopic Sight (3) (Taboo) dc65fd.yaml index 0b4a4cd8d..bd507821e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Telescopic Sight (3) (Taboo) dc65fd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Telescopic Sight (3) (Taboo) dc65fd.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 584512 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.82 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Telescopic Sight (3) db2c81.yaml b/unpacked/Bag All Player Cards 15bb07/Card Telescopic Sight (3) db2c81.yaml index 210cfc0ee..38e38cddc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Telescopic Sight (3) db2c81.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Telescopic Sight (3) db2c81.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 292816 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.04 posY: 3.9 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tempt Fate 33f906.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tempt Fate 33f906.yaml index b0ea1b5ad..570213d6c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tempt Fate 33f906.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tempt Fate 33f906.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 583531 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 5.33 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash (3) b5e5f1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash (3) b5e5f1.yaml index 4cf206968..f37f270de 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash (3) b5e5f1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash (3) b5e5f1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 292912 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.07 posY: 3.74 posZ: -16.71 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash (3) cbe256.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash (3) cbe256.yaml index 5070c6d78..265b40372 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash (3) cbe256.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash (3) cbe256.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 293013 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.09 posY: 3.69 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash be33f5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash be33f5.yaml index ad1ec5f57..95e3097eb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash be33f5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash be33f5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 277605 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.11 posY: 3.93 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Terrible Secret 06322f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Terrible Secret 06322f.yaml index b619387f2..0fb9a6622 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Terrible Secret 06322f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Terrible Secret 06322f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 527561 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.15 posY: 3.9 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tetsuo Mori 08e5a6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tetsuo Mori 08e5a6.yaml index db7d51575..394058fcc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tetsuo Mori 08e5a6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tetsuo Mori 08e5a6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379829 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 4.74 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The 13th Vision c1ce8e.yaml b/unpacked/Bag All Player Cards 15bb07/Card The 13th Vision c1ce8e.yaml index 75389e54d..c3301da6c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The 13th Vision c1ce8e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The 13th Vision c1ce8e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 290321 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.06 posY: 3.85 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Bell Tolls 6cbc01.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Bell Tolls 6cbc01.yaml index 590f2df41..7cbbdc49b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Bell Tolls 6cbc01.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Bell Tolls 6cbc01.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 537609 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.07 posY: 3.69 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Black Book ae3775.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Black Book ae3775.yaml index 3bc6ad387..1bbd1c55e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Black Book ae3775.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Black Book ae3775.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 275732 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.17 posY: 2.91 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Black Cat (5) 16e57b.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Black Cat (5) 16e57b.yaml index 5964a909c..82e9a1949 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Black Cat (5) 16e57b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Black Cat (5) 16e57b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 448613 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.12 posY: 4.07 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Black Fan (3) 3eafd5.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Black Fan (3) 3eafd5.yaml index 5ff4ec1c5..b36381aeb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Black Fan (3) 3eafd5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Black Fan (3) 3eafd5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379047 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.14 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone (3) a775ad.ttslua b/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone (3) a775ad.ttslua index 20a85e19d..e64a32937 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone (3) a775ad.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone (3) a775ad.ttslua @@ -1,67 +1,349 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/TheChthonianStone3") +end) +__bundle_register("playercards/cards/TheChthonianStone3", function(require, _LOADED, __bundle_register, __bundle_modules) VALID_TOKENS = { - Skull=true, - Cultist=true, - Tablet=true, - ["Elder Thing"]=true + ["Skull"] = true, + ["Cultist"] = true, + ["Tablet"] = true, + ["Elder Thing"] = true, } -function onload() - chaosbag = getChaosBag() - sealedTokens = { } - IMAGE_TOKEN_MAP = { } - for i,v in pairs(Global.getVar("IMAGE_TOKEN_MAP")) do - IMAGE_TOKEN_MAP[i] = v - end +require("playercards/CardsThatSealTokens") +end) +__bundle_register("playercards/CardsThatSealTokens", function(require, _LOADED, __bundle_register, __bundle_modules) +--[[ Library for cards that seal tokens +This file is used to add sealing option to cards' context menu. +Valid options (set before requiring this file): - -- add menu items +UPDATE_ON_HOVER --@type: boolean + - automatically updates the context menu options when the card is hovered + - the "Read Bag" function reads the content of the chaos bag to update the context menu + - example usage: "Unrelenting" (to only display valid tokens) + +SHOW_SINGLE_RELEASE --@type: boolean + - enables an entry in the context menu + - this entry allows releasing a single token + - example usage: "Holy Spear" (to keep the other tokens and just release one) + +SHOW_MULTI_RELEASE --@type: number (amount of tokens to release at once) + - enables an entry in the context menu + - this enty allows releasing of multiple tokens at once + - example usage: "Nephthys" (to release 3 bless tokens at once) + +SHOW_MULTI_SEAL --@type: number (amount of tokens to seal at once) + - enables an entry in the context menu + - this entry allows sealing of multiple tokens at once + - example usage: "Holy Spear" (to seal two bless tokens at once) + +VALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens should be abled to be sealed + - needs to be defined for each card -> even if empty + - example usage: "The Chthonian Stone" + > VALID_TOKENS = { + > ["Skull"] = true, + > ["Cultist"] = true, + > ["Tablet"] = true, + > ["Elder Thing"] = true, + > } + +INVALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens are invalid for sealing + - only needs to be defined if needed + - usually combined with empty "VALID_TOKENS" table + - example usage: "Protective Incantation" (not allowed to seal Auto-fail) + +---------------------------------------------------------- +Example 1: Crystalline Elder Sign +This card can only seal the "+1" or "Elder Sign" token, +it does not need specific options for multi-sealing or releasing. +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["+1"] = true, +> ["Elder Sign"] = true +> } +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +---------------------------------------------------------- +Example 2: Holy Spear +This card features the following abilities (just listing the relevant parts): +- releasing a single bless token +- sealing two bless tokens +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["Bless"] = true +> } +> SHOW_SINGLE_RELEASE = true +> SHOW_MULTI_SEAL = 2 +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +----------------------------------------------------------]] + +local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi") +local tokenArrangerApi = require("accessories/TokenArrangerApi") +local sealedTokens = {} +local ID_URL_MAP = {} +local tokensInBag = {} + +function onSave() return JSON.encode(sealedTokens) end + +function onLoad(savedData) + sealedTokens = JSON.decode(savedData) or {} + ID_URL_MAP = Global.getTable("ID_URL_MAP") + generateContextMenu() +end + +-- builds the context menu +function generateContextMenu() + -- conditional single or multi release options + if SHOW_SINGLE_RELEASE then + self.addContextMenuItem("Release token", releaseOneToken) + elseif SHOW_MULTI_RELEASE then + self.addContextMenuItem("Release " .. SHOW_MULTI_RELEASE .. " token(s)", releaseMultipleTokens) + else + self.addContextMenuItem("Release token(s)", releaseAllTokens) + end + + -- main context menu options to seal tokens + for _, map in pairs(ID_URL_MAP) do + if (VALID_TOKENS[map.name] ~= nil) or (UPDATE_ON_HOVER and tokensInBag[map.name] and not INVALID_TOKENS[map.name]) then + if not SHOW_MULTI_SEAL then + self.addContextMenuItem("Seal " .. map.name, function(playerColor) + sealToken(map.name, playerColor) + end) + else + self.addContextMenuItem("Seal " .. SHOW_MULTI_SEAL .. " " .. map.name, function(playerColor) + readBag() + local allowed = true + local notFound + + for name, _ in pairs(VALID_TOKENS) do + if (tokensInBag[name] or 0) < SHOW_MULTI_SEAL then + allowed = false + notFound = name + end + end + + if allowed then + for i = 1, SHOW_MULTI_SEAL do + sealToken(map.name, playerColor) + end + else + printToColor("Not enough " .. notFound .. " tokens in the chaos bag.", playerColor) + end + end) + end + end + end +end + +-- generates a list of chaos tokens that is in the chaos bag +function readBag() + local chaosbag = Global.call("findChaosBag") + tokensInBag = {} + + for _, token in ipairs(chaosbag.getObjects()) do + tokensInBag[token.name] = (tokensInBag[token.name] or 0) + 1 + end +end + +-- native event from TTS - used to update the context menu for cards like "Unrelenting" +function onHover() + if UPDATE_ON_HOVER then + readBag() self.clearContextMenu() - self.addContextMenuItem("Release Token", releaseTokens) - for url,name in pairs(IMAGE_TOKEN_MAP) do - if VALID_TOKENS[name] ~= nil then - self.addContextMenuItem("Seal " .. name, function(playerColor) sealToken(url, playerColor) end) + generateContextMenu() + end +end + +-- seals the named token on this card +function sealToken(name, playerColor) + if not Global.call("canTouchChaosTokens") then return end + local chaosbag = Global.call("findChaosBag") + for i, obj in ipairs(chaosbag.getObjects()) do + if obj.name == name then + chaosbag.takeObject({ + position = self.getPosition() + Vector(0, 0.5 + 0.1 * #sealedTokens, 0), + rotation = self.getRotation(), + index = i - 1, + smooth = false, + callback_function = function(token) + local guid = token.getGUID() + table.insert(sealedTokens, guid) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.sealedToken(name, guid) + end end + }) + return end + end + printToColor(name .. " token not found in chaos bag", playerColor) end -function sealToken(url, playerColor) - local pos = self.getPosition() - - local name = IMAGE_TOKEN_MAP[url] - for i,obj in ipairs(chaosbag.getObjects()) do - if obj.name == name then - chaosbag.takeObject({ - position={ pos.x, pos.y + 1, pos.z }, - index=i-1, - smooth=false, - callback_function=_sealToken - }) - return - end - end - printToColor(name .. " token not found in bag", playerColor) -end - -function _sealToken(obj) - table.insert(sealedTokens, obj) -end - -function releaseTokens(playerColor) +-- release the last sealed token +function releaseOneToken(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else printToColor("Releasing token", playerColor) - for i,obj in ipairs(sealedTokens) do - chaosbag.putObject(obj) - end - sealedTokens = { } + putTokenAway(table.remove(sealedTokens)) + end end -function getChaosBag() - local items = getObjectFromGUID("83ef06").getObjects() - local chaosbag = nil - for i,v in ipairs(items) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break - end +-- release multiple tokens at once +function releaseMultipleTokens(playerColor) + if SHOW_MULTI_RELEASE >= #sealedTokens then + for i = 1, SHOW_MULTI_RELEASE do + releaseOneToken(playerColor) end - if chaosbag == nil then printToAll("No chaos bag found") end - return chaosbag -end \ No newline at end of file + else + printToColor("Not enough " .. name .. " tokens sealed.", playerColor) + end +end + +-- releases all sealed tokens +function releaseAllTokens(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token(s)", playerColor) + for _, guid in ipairs(sealedTokens) do + putTokenAway(guid) + end + sealedTokens = {} + end +end + +-- returns the token (referenced by GUID) to the chaos bag +function putTokenAway(guid) + local token = getObjectFromGUID(guid) + if not token then return end + + local name = token.getName() + local chaosbag = Global.call("findChaosBag") + chaosbag.putObject(token) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.releasedToken(name, guid) + end +end +end) +__bundle_register("accessories/TokenArrangerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenArrangerApi = {} + + -- local function to call the token arranger, if it is on the table + ---@param functionName String Name of the function to cal + ---@param argument Variant Parameter to pass + local function callIfExistent(functionName, argument) + local tokenArranger = getObjectsWithTag("TokenArranger")[1] + if tokenArranger ~= nil then + tokenArranger.call(functionName, argument) + end + end + + -- updates the token modifiers with the provided data + ---@param tokenData Table Contains the chaos token metadata + TokenArrangerApi.onTokenDataChanged = function(fullData) + callIfExistent("onTokenDataChanged", fullData) + end + + -- deletes already laid out tokens + TokenArrangerApi.deleteCopiedTokens = function() + callIfExistent("deleteCopiedTokens") + end + + -- updates the laid out tokens + TokenArrangerApi.layout = function() + Wait.time(function() callIfExistent("layout") end, 0.1) + end + + return TokenArrangerApi +end +end) +__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local BlessCurseManagerApi = {} + local MANAGER_GUID = "5933fb" + + -- removes all taken tokens and resets the counts + BlessCurseManagerApi.removeTakenTokensAndReset = function() + local BlessCurseManager = getObjectFromGUID(MANAGER_GUID) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10) + Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.sealedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("sealedToken", { type = type, guid = guid }) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.releasedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("releasedToken", { type = type, guid = guid }) + end + + -- broadcasts the current status for bless/curse tokens + ---@param playerColor String Color of the player to show the broadcast to + BlessCurseManagerApi.broadcastStatus = function(playerColor) + getObjectFromGUID(MANAGER_GUID).call("broadcastStatus", playerColor) + end + + -- adds Wendy's menu to the hovered card (allows sealing of tokens) + ---@param color String Color of the player to show the broadcast to + BlessCurseManagerApi.addWendysMenu = function(playerColor, hoveredObject) + getObjectFromGUID(MANAGER_GUID).call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject }) + end + + return BlessCurseManagerApi +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone (3) a775ad.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone (3) a775ad.yaml index 16f07e4cb..93a90c06f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone (3) a775ad.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone (3) a775ad.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545207 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.03 posY: 3.86 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone fc4ce8.ttslua b/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone fc4ce8.ttslua index 20a85e19d..22d8f94a3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone fc4ce8.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone fc4ce8.ttslua @@ -1,67 +1,349 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("playercards/cards/TheChthonianStone", function(require, _LOADED, __bundle_register, __bundle_modules) VALID_TOKENS = { - Skull=true, - Cultist=true, - Tablet=true, - ["Elder Thing"]=true + ["Skull"] = true, + ["Cultist"] = true, + ["Tablet"] = true, + ["Elder Thing"] = true, } -function onload() - chaosbag = getChaosBag() - sealedTokens = { } - IMAGE_TOKEN_MAP = { } - for i,v in pairs(Global.getVar("IMAGE_TOKEN_MAP")) do - IMAGE_TOKEN_MAP[i] = v - end +require("playercards/CardsThatSealTokens") +end) +__bundle_register("playercards/CardsThatSealTokens", function(require, _LOADED, __bundle_register, __bundle_modules) +--[[ Library for cards that seal tokens +This file is used to add sealing option to cards' context menu. +Valid options (set before requiring this file): - -- add menu items +UPDATE_ON_HOVER --@type: boolean + - automatically updates the context menu options when the card is hovered + - the "Read Bag" function reads the content of the chaos bag to update the context menu + - example usage: "Unrelenting" (to only display valid tokens) + +SHOW_SINGLE_RELEASE --@type: boolean + - enables an entry in the context menu + - this entry allows releasing a single token + - example usage: "Holy Spear" (to keep the other tokens and just release one) + +SHOW_MULTI_RELEASE --@type: number (amount of tokens to release at once) + - enables an entry in the context menu + - this enty allows releasing of multiple tokens at once + - example usage: "Nephthys" (to release 3 bless tokens at once) + +SHOW_MULTI_SEAL --@type: number (amount of tokens to seal at once) + - enables an entry in the context menu + - this entry allows sealing of multiple tokens at once + - example usage: "Holy Spear" (to seal two bless tokens at once) + +VALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens should be abled to be sealed + - needs to be defined for each card -> even if empty + - example usage: "The Chthonian Stone" + > VALID_TOKENS = { + > ["Skull"] = true, + > ["Cultist"] = true, + > ["Tablet"] = true, + > ["Elder Thing"] = true, + > } + +INVALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens are invalid for sealing + - only needs to be defined if needed + - usually combined with empty "VALID_TOKENS" table + - example usage: "Protective Incantation" (not allowed to seal Auto-fail) + +---------------------------------------------------------- +Example 1: Crystalline Elder Sign +This card can only seal the "+1" or "Elder Sign" token, +it does not need specific options for multi-sealing or releasing. +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["+1"] = true, +> ["Elder Sign"] = true +> } +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +---------------------------------------------------------- +Example 2: Holy Spear +This card features the following abilities (just listing the relevant parts): +- releasing a single bless token +- sealing two bless tokens +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["Bless"] = true +> } +> SHOW_SINGLE_RELEASE = true +> SHOW_MULTI_SEAL = 2 +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +----------------------------------------------------------]] + +local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi") +local tokenArrangerApi = require("accessories/TokenArrangerApi") +local sealedTokens = {} +local ID_URL_MAP = {} +local tokensInBag = {} + +function onSave() return JSON.encode(sealedTokens) end + +function onLoad(savedData) + sealedTokens = JSON.decode(savedData) or {} + ID_URL_MAP = Global.getTable("ID_URL_MAP") + generateContextMenu() +end + +-- builds the context menu +function generateContextMenu() + -- conditional single or multi release options + if SHOW_SINGLE_RELEASE then + self.addContextMenuItem("Release token", releaseOneToken) + elseif SHOW_MULTI_RELEASE then + self.addContextMenuItem("Release " .. SHOW_MULTI_RELEASE .. " token(s)", releaseMultipleTokens) + else + self.addContextMenuItem("Release token(s)", releaseAllTokens) + end + + -- main context menu options to seal tokens + for _, map in pairs(ID_URL_MAP) do + if (VALID_TOKENS[map.name] ~= nil) or (UPDATE_ON_HOVER and tokensInBag[map.name] and not INVALID_TOKENS[map.name]) then + if not SHOW_MULTI_SEAL then + self.addContextMenuItem("Seal " .. map.name, function(playerColor) + sealToken(map.name, playerColor) + end) + else + self.addContextMenuItem("Seal " .. SHOW_MULTI_SEAL .. " " .. map.name, function(playerColor) + readBag() + local allowed = true + local notFound + + for name, _ in pairs(VALID_TOKENS) do + if (tokensInBag[name] or 0) < SHOW_MULTI_SEAL then + allowed = false + notFound = name + end + end + + if allowed then + for i = 1, SHOW_MULTI_SEAL do + sealToken(map.name, playerColor) + end + else + printToColor("Not enough " .. notFound .. " tokens in the chaos bag.", playerColor) + end + end) + end + end + end +end + +-- generates a list of chaos tokens that is in the chaos bag +function readBag() + local chaosbag = Global.call("findChaosBag") + tokensInBag = {} + + for _, token in ipairs(chaosbag.getObjects()) do + tokensInBag[token.name] = (tokensInBag[token.name] or 0) + 1 + end +end + +-- native event from TTS - used to update the context menu for cards like "Unrelenting" +function onHover() + if UPDATE_ON_HOVER then + readBag() self.clearContextMenu() - self.addContextMenuItem("Release Token", releaseTokens) - for url,name in pairs(IMAGE_TOKEN_MAP) do - if VALID_TOKENS[name] ~= nil then - self.addContextMenuItem("Seal " .. name, function(playerColor) sealToken(url, playerColor) end) + generateContextMenu() + end +end + +-- seals the named token on this card +function sealToken(name, playerColor) + if not Global.call("canTouchChaosTokens") then return end + local chaosbag = Global.call("findChaosBag") + for i, obj in ipairs(chaosbag.getObjects()) do + if obj.name == name then + chaosbag.takeObject({ + position = self.getPosition() + Vector(0, 0.5 + 0.1 * #sealedTokens, 0), + rotation = self.getRotation(), + index = i - 1, + smooth = false, + callback_function = function(token) + local guid = token.getGUID() + table.insert(sealedTokens, guid) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.sealedToken(name, guid) + end end + }) + return end + end + printToColor(name .. " token not found in chaos bag", playerColor) end -function sealToken(url, playerColor) - local pos = self.getPosition() - - local name = IMAGE_TOKEN_MAP[url] - for i,obj in ipairs(chaosbag.getObjects()) do - if obj.name == name then - chaosbag.takeObject({ - position={ pos.x, pos.y + 1, pos.z }, - index=i-1, - smooth=false, - callback_function=_sealToken - }) - return - end - end - printToColor(name .. " token not found in bag", playerColor) -end - -function _sealToken(obj) - table.insert(sealedTokens, obj) -end - -function releaseTokens(playerColor) +-- release the last sealed token +function releaseOneToken(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else printToColor("Releasing token", playerColor) - for i,obj in ipairs(sealedTokens) do - chaosbag.putObject(obj) - end - sealedTokens = { } + putTokenAway(table.remove(sealedTokens)) + end end -function getChaosBag() - local items = getObjectFromGUID("83ef06").getObjects() - local chaosbag = nil - for i,v in ipairs(items) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break - end +-- release multiple tokens at once +function releaseMultipleTokens(playerColor) + if SHOW_MULTI_RELEASE >= #sealedTokens then + for i = 1, SHOW_MULTI_RELEASE do + releaseOneToken(playerColor) end - if chaosbag == nil then printToAll("No chaos bag found") end - return chaosbag -end \ No newline at end of file + else + printToColor("Not enough " .. name .. " tokens sealed.", playerColor) + end +end + +-- releases all sealed tokens +function releaseAllTokens(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token(s)", playerColor) + for _, guid in ipairs(sealedTokens) do + putTokenAway(guid) + end + sealedTokens = {} + end +end + +-- returns the token (referenced by GUID) to the chaos bag +function putTokenAway(guid) + local token = getObjectFromGUID(guid) + if not token then return end + + local name = token.getName() + local chaosbag = Global.call("findChaosBag") + chaosbag.putObject(token) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.releasedToken(name, guid) + end +end +end) +__bundle_register("accessories/TokenArrangerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenArrangerApi = {} + + -- local function to call the token arranger, if it is on the table + ---@param functionName String Name of the function to cal + ---@param argument Variant Parameter to pass + local function callIfExistent(functionName, argument) + local tokenArranger = getObjectsWithTag("TokenArranger")[1] + if tokenArranger ~= nil then + tokenArranger.call(functionName, argument) + end + end + + -- updates the token modifiers with the provided data + ---@param tokenData Table Contains the chaos token metadata + TokenArrangerApi.onTokenDataChanged = function(fullData) + callIfExistent("onTokenDataChanged", fullData) + end + + -- deletes already laid out tokens + TokenArrangerApi.deleteCopiedTokens = function() + callIfExistent("deleteCopiedTokens") + end + + -- updates the laid out tokens + TokenArrangerApi.layout = function() + Wait.time(function() callIfExistent("layout") end, 0.1) + end + + return TokenArrangerApi +end +end) +__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local BlessCurseManagerApi = {} + local MANAGER_GUID = "5933fb" + + -- removes all taken tokens and resets the counts + BlessCurseManagerApi.removeTakenTokensAndReset = function() + local BlessCurseManager = getObjectFromGUID(MANAGER_GUID) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10) + Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.sealedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("sealedToken", { type = type, guid = guid }) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.releasedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("releasedToken", { type = type, guid = guid }) + end + + -- broadcasts the current status for bless/curse tokens + ---@param playerColor String Color of the player to show the broadcast to + BlessCurseManagerApi.broadcastStatus = function(playerColor) + getObjectFromGUID(MANAGER_GUID).call("broadcastStatus", playerColor) + end + + -- adds Wendy's menu to the hovered card (allows sealing of tokens) + ---@param color String Color of the player to show the broadcast to + BlessCurseManagerApi.addWendysMenu = function(playerColor, hoveredObject) + getObjectFromGUID(MANAGER_GUID).call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject }) + end + + return BlessCurseManagerApi +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/TheChthonianStone") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone fc4ce8.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone fc4ce8.yaml index 2264094ca..d2a4648d3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone fc4ce8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone fc4ce8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230327 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.87 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Codex of Ages df9809.ttslua b/unpacked/Bag All Player Cards 15bb07/Card The Codex of Ages df9809.ttslua index 55f9fdef2..30fcb7058 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Codex of Ages df9809.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card The Codex of Ages df9809.ttslua @@ -1,60 +1,346 @@ -function onload() - chaosbag = getChaosBag() - sealedTokens = { } - IMAGE_TOKEN_MAP = { } - for i,v in pairs(Global.getVar("IMAGE_TOKEN_MAP")) do - IMAGE_TOKEN_MAP[i] = v - end +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} - -- add menu items + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/TheCodexofAges") +end) +__bundle_register("playercards/cards/TheCodexofAges", function(require, _LOADED, __bundle_register, __bundle_modules) +VALID_TOKENS = { + ["Elder Sign"] = true +} + +require("playercards/CardsThatSealTokens") +end) +__bundle_register("playercards/CardsThatSealTokens", function(require, _LOADED, __bundle_register, __bundle_modules) +--[[ Library for cards that seal tokens +This file is used to add sealing option to cards' context menu. +Valid options (set before requiring this file): + +UPDATE_ON_HOVER --@type: boolean + - automatically updates the context menu options when the card is hovered + - the "Read Bag" function reads the content of the chaos bag to update the context menu + - example usage: "Unrelenting" (to only display valid tokens) + +SHOW_SINGLE_RELEASE --@type: boolean + - enables an entry in the context menu + - this entry allows releasing a single token + - example usage: "Holy Spear" (to keep the other tokens and just release one) + +SHOW_MULTI_RELEASE --@type: number (amount of tokens to release at once) + - enables an entry in the context menu + - this enty allows releasing of multiple tokens at once + - example usage: "Nephthys" (to release 3 bless tokens at once) + +SHOW_MULTI_SEAL --@type: number (amount of tokens to seal at once) + - enables an entry in the context menu + - this entry allows sealing of multiple tokens at once + - example usage: "Holy Spear" (to seal two bless tokens at once) + +VALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens should be abled to be sealed + - needs to be defined for each card -> even if empty + - example usage: "The Chthonian Stone" + > VALID_TOKENS = { + > ["Skull"] = true, + > ["Cultist"] = true, + > ["Tablet"] = true, + > ["Elder Thing"] = true, + > } + +INVALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens are invalid for sealing + - only needs to be defined if needed + - usually combined with empty "VALID_TOKENS" table + - example usage: "Protective Incantation" (not allowed to seal Auto-fail) + +---------------------------------------------------------- +Example 1: Crystalline Elder Sign +This card can only seal the "+1" or "Elder Sign" token, +it does not need specific options for multi-sealing or releasing. +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["+1"] = true, +> ["Elder Sign"] = true +> } +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +---------------------------------------------------------- +Example 2: Holy Spear +This card features the following abilities (just listing the relevant parts): +- releasing a single bless token +- sealing two bless tokens +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["Bless"] = true +> } +> SHOW_SINGLE_RELEASE = true +> SHOW_MULTI_SEAL = 2 +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +----------------------------------------------------------]] + +local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi") +local tokenArrangerApi = require("accessories/TokenArrangerApi") +local sealedTokens = {} +local ID_URL_MAP = {} +local tokensInBag = {} + +function onSave() return JSON.encode(sealedTokens) end + +function onLoad(savedData) + sealedTokens = JSON.decode(savedData) or {} + ID_URL_MAP = Global.getTable("ID_URL_MAP") + generateContextMenu() +end + +-- builds the context menu +function generateContextMenu() + -- conditional single or multi release options + if SHOW_SINGLE_RELEASE then + self.addContextMenuItem("Release token", releaseOneToken) + elseif SHOW_MULTI_RELEASE then + self.addContextMenuItem("Release " .. SHOW_MULTI_RELEASE .. " token(s)", releaseMultipleTokens) + else + self.addContextMenuItem("Release token(s)", releaseAllTokens) + end + + -- main context menu options to seal tokens + for _, map in pairs(ID_URL_MAP) do + if (VALID_TOKENS[map.name] ~= nil) or (UPDATE_ON_HOVER and tokensInBag[map.name] and not INVALID_TOKENS[map.name]) then + if not SHOW_MULTI_SEAL then + self.addContextMenuItem("Seal " .. map.name, function(playerColor) + sealToken(map.name, playerColor) + end) + else + self.addContextMenuItem("Seal " .. SHOW_MULTI_SEAL .. " " .. map.name, function(playerColor) + readBag() + local allowed = true + local notFound + + for name, _ in pairs(VALID_TOKENS) do + if (tokensInBag[name] or 0) < SHOW_MULTI_SEAL then + allowed = false + notFound = name + end + end + + if allowed then + for i = 1, SHOW_MULTI_SEAL do + sealToken(map.name, playerColor) + end + else + printToColor("Not enough " .. notFound .. " tokens in the chaos bag.", playerColor) + end + end) + end + end + end +end + +-- generates a list of chaos tokens that is in the chaos bag +function readBag() + local chaosbag = Global.call("findChaosBag") + tokensInBag = {} + + for _, token in ipairs(chaosbag.getObjects()) do + tokensInBag[token.name] = (tokensInBag[token.name] or 0) + 1 + end +end + +-- native event from TTS - used to update the context menu for cards like "Unrelenting" +function onHover() + if UPDATE_ON_HOVER then + readBag() self.clearContextMenu() - self.addContextMenuItem("Release Token", releaseTokens) - for url,name in pairs(IMAGE_TOKEN_MAP) do - if name == "Elder Sign" then - self.addContextMenuItem("Seal Elder Sign", function(playerColor) sealToken(url, playerColor) end) + generateContextMenu() + end +end + +-- seals the named token on this card +function sealToken(name, playerColor) + if not Global.call("canTouchChaosTokens") then return end + local chaosbag = Global.call("findChaosBag") + for i, obj in ipairs(chaosbag.getObjects()) do + if obj.name == name then + chaosbag.takeObject({ + position = self.getPosition() + Vector(0, 0.5 + 0.1 * #sealedTokens, 0), + rotation = self.getRotation(), + index = i - 1, + smooth = false, + callback_function = function(token) + local guid = token.getGUID() + table.insert(sealedTokens, guid) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.sealedToken(name, guid) + end end + }) + return end + end + printToColor(name .. " token not found in chaos bag", playerColor) end -function sealToken(url, playerColor) - local pos = self.getPosition() - - local name = IMAGE_TOKEN_MAP[url] - for i,obj in ipairs(chaosbag.getObjects()) do - if obj.name == name then - chaosbag.takeObject({ - position={ pos.x, pos.y + 1, pos.z }, - index=i-1, - smooth=false, - callback_function=_sealToken - }) - return - end - end - printToColor(name .. " token not found in bag", playerColor) -end - -function _sealToken(obj) - table.insert(sealedTokens, obj) -end - -function releaseTokens(playerColor) +-- release the last sealed token +function releaseOneToken(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else printToColor("Releasing token", playerColor) - for i,obj in ipairs(sealedTokens) do - chaosbag.putObject(obj) - end - sealedTokens = { } + putTokenAway(table.remove(sealedTokens)) + end end -function getChaosBag() - local items = getObjectFromGUID("83ef06").getObjects() - local chaosbag = nil - for i,v in ipairs(items) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break - end +-- release multiple tokens at once +function releaseMultipleTokens(playerColor) + if SHOW_MULTI_RELEASE >= #sealedTokens then + for i = 1, SHOW_MULTI_RELEASE do + releaseOneToken(playerColor) end - if chaosbag == nil then printToAll("No chaos bag found") end - return chaosbag -end \ No newline at end of file + else + printToColor("Not enough " .. name .. " tokens sealed.", playerColor) + end +end + +-- releases all sealed tokens +function releaseAllTokens(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token(s)", playerColor) + for _, guid in ipairs(sealedTokens) do + putTokenAway(guid) + end + sealedTokens = {} + end +end + +-- returns the token (referenced by GUID) to the chaos bag +function putTokenAway(guid) + local token = getObjectFromGUID(guid) + if not token then return end + + local name = token.getName() + local chaosbag = Global.call("findChaosBag") + chaosbag.putObject(token) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.releasedToken(name, guid) + end +end +end) +__bundle_register("accessories/TokenArrangerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenArrangerApi = {} + + -- local function to call the token arranger, if it is on the table + ---@param functionName String Name of the function to cal + ---@param argument Variant Parameter to pass + local function callIfExistent(functionName, argument) + local tokenArranger = getObjectsWithTag("TokenArranger")[1] + if tokenArranger ~= nil then + tokenArranger.call(functionName, argument) + end + end + + -- updates the token modifiers with the provided data + ---@param tokenData Table Contains the chaos token metadata + TokenArrangerApi.onTokenDataChanged = function(fullData) + callIfExistent("onTokenDataChanged", fullData) + end + + -- deletes already laid out tokens + TokenArrangerApi.deleteCopiedTokens = function() + callIfExistent("deleteCopiedTokens") + end + + -- updates the laid out tokens + TokenArrangerApi.layout = function() + Wait.time(function() callIfExistent("layout") end, 0.1) + end + + return TokenArrangerApi +end +end) +__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local BlessCurseManagerApi = {} + local MANAGER_GUID = "5933fb" + + -- removes all taken tokens and resets the counts + BlessCurseManagerApi.removeTakenTokensAndReset = function() + local BlessCurseManager = getObjectFromGUID(MANAGER_GUID) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10) + Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.sealedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("sealedToken", { type = type, guid = guid }) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.releasedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("releasedToken", { type = type, guid = guid }) + end + + -- broadcasts the current status for bless/curse tokens + ---@param playerColor String Color of the player to show the broadcast to + BlessCurseManagerApi.broadcastStatus = function(playerColor) + getObjectFromGUID(MANAGER_GUID).call("broadcastStatus", playerColor) + end + + -- adds Wendy's menu to the hovered card (allows sealing of tokens) + ---@param color String Color of the player to show the broadcast to + BlessCurseManagerApi.addWendysMenu = function(playerColor, hoveredObject) + getObjectFromGUID(MANAGER_GUID).call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject }) + end + + return BlessCurseManagerApi +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Codex of Ages df9809.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Codex of Ages df9809.yaml index 306e27b5a..16193686d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Codex of Ages df9809.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Codex of Ages df9809.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 583136 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.99 posY: 3.79 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Council's Coffer (2) 0e39c2.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Council's Coffer (2) 0e39c2.yaml index d73eaf25d..9874c8657 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Council's Coffer (2) 0e39c2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Council's Coffer (2) 0e39c2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 312109 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.06 posY: 3.91 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Devil ∙ XV 7bcaf3.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Devil ∙ XV 7bcaf3.yaml index d99cd8b8d..45c31444c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Devil ∙ XV 7bcaf3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Devil ∙ XV 7bcaf3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449534 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.76 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Dirge of Reason fe68c6.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Dirge of Reason fe68c6.yaml index 66d77fec2..43992e824 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Dirge of Reason fe68c6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Dirge of Reason fe68c6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 369945 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.13 posY: 5.48 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Eye of Truth (5) d6085d.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Eye of Truth (5) d6085d.yaml index 8ffdd9d10..941046e13 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Eye of Truth (5) d6085d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Eye of Truth (5) d6085d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 448840 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.02 posY: 4.01 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Fool ∙ 0 (3) b74c69.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Fool ∙ 0 (3) b74c69.yaml index d7e6a0757..6f298a009 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Fool ∙ 0 (3) b74c69.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Fool ∙ 0 (3) b74c69.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449532 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.73 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Gold Pocket Watch (4) 62d930.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Gold Pocket Watch (4) 62d930.yaml index d47682d19..0bb640936 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Gold Pocket Watch (4) 62d930.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Gold Pocket Watch (4) 62d930.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315257 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.14 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Harbinger e9fef2.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Harbinger e9fef2.yaml index 37e0c340a..9c21f3fee 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Harbinger e9fef2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Harbinger e9fef2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379004 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.99 posY: 3.75 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Hierophant ∙ V (3) 20c8a9.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Hierophant ∙ V (3) 20c8a9.yaml index 3ae62ba41..6b83bb65b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Hierophant ∙ V (3) 20c8a9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Hierophant ∙ V (3) 20c8a9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449527 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.83 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Home Front b80459.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Home Front b80459.yaml index 503ff0a4e..3d130b854 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Home Front b80459.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Home Front b80459.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 374330 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.0 posY: 3.87 posZ: -16.7 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Hungering Blade (1) 2d94ed.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Hungering Blade (1) 2d94ed.yaml index 7da06914b..9a13acef6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Hungering Blade (1) 2d94ed.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Hungering Blade (1) 2d94ed.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 590414 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.13 posY: 3.77 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The King in Yellow 016b72.yaml b/unpacked/Bag All Player Cards 15bb07/Card The King in Yellow 016b72.yaml index f452ef269..d7878d179 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The King in Yellow 016b72.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The King in Yellow 016b72.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 374633 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.05 posY: 3.68 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Man in the Pallid Mask 6720ef.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Man in the Pallid Mask 6720ef.yaml index c3281db1d..d3d7f37d5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Man in the Pallid Mask 6720ef.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Man in the Pallid Mask 6720ef.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232300 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.06 posY: 3.9 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Moon ∙ XVIII (1) e80bd8.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Moon ∙ XVIII (1) e80bd8.yaml index e90a7e8a8..6bbf04e3a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Moon ∙ XVIII (1) e80bd8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Moon ∙ XVIII (1) e80bd8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 527605 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.79 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon (5) (Taboo) 9fa2a5.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon (5) (Taboo) 9fa2a5.yaml index dba0653d5..c3a382990 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon (5) (Taboo) 9fa2a5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon (5) (Taboo) 9fa2a5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450613 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.13 posY: 5.56 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon (5) 96ba38.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon (5) 96ba38.yaml index d463d2988..ced3e6edc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon (5) 96ba38.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon (5) 96ba38.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538831 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.01 posY: 3.81 posZ: -16.7 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon 6b2550.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon 6b2550.yaml index 93402ede1..b24f77b40 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon 6b2550.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon 6b2550.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 370323 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon d45f10.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon d45f10.yaml index 525435e87..dc6bb2b13 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon d45f10.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon d45f10.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232934 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.12 posY: 3.92 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Painted World dfd48b.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Painted World dfd48b.yaml index 796c65b55..98103d9b5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Painted World dfd48b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Painted World dfd48b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 374014 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 3.05 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Price of Failure dc5b38.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Price of Failure dc5b38.yaml index b2535cc7c..cbb34c926 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Price of Failure dc5b38.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Price of Failure dc5b38.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 537612 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.17 posY: 3.12 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Raven Quill b81037.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Raven Quill b81037.yaml index 6cf3de688..a50f2f398 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Raven Quill b81037.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Raven Quill b81037.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379035 ColorDiffuse: @@ -61,11 +61,11 @@ Transform: posX: 16.67 posY: 3.4 posZ: 65.93 - rotX: 359 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Red Clock (2) 814c79.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Red Clock (2) 814c79.yaml index 3a171cbb8..70cf12aa8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Red Clock (2) 814c79.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Red Clock (2) 814c79.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379043 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.19 posY: 2.21 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Red Clock (5) 696894.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Red Clock (5) 696894.yaml index 827f89eed..31e2664b0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Red Clock (5) 696894.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Red Clock (5) 696894.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379048 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.2 posY: 2.23 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Red-Gloved Man (5) ad18a6.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Red-Gloved Man (5) ad18a6.yaml index 645c561d8..8b0c34463 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Red-Gloved Man (5) ad18a6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Red-Gloved Man (5) ad18a6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368526 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.79 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Silver Key 61fd07.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Silver Key 61fd07.yaml index aa31bb750..f9d23f122 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Silver Key 61fd07.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Silver Key 61fd07.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 278846 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 4.85 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Skeleton Key (2) 5d559a.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Skeleton Key (2) 5d559a.yaml index 0374d0405..a79a79f6e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Skeleton Key (2) 5d559a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Skeleton Key (2) 5d559a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 581409 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 4.52 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Star ∙ XVII (3) a77ce0.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Star ∙ XVII (3) a77ce0.yaml index eaa1d2805..6b3cc5c85 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Star ∙ XVII (3) a77ce0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Star ∙ XVII (3) a77ce0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449521 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.82 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Stars Are Right 600a3c.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Stars Are Right 600a3c.yaml index 0a0467870..2ad36e613 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Stars Are Right 600a3c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Stars Are Right 600a3c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 443723 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.14 posY: 3.73 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Stygian Eye (3) c4ae95.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Stygian Eye (3) c4ae95.yaml index dca69817a..e46510342 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Stygian Eye (3) c4ae95.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Stygian Eye (3) c4ae95.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449602 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.06 posY: 3.91 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Tattered Cloak 5d30a1.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Tattered Cloak 5d30a1.yaml index 0e628fa93..a9ad7486b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Tattered Cloak 5d30a1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Tattered Cloak 5d30a1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232333 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 4.95 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Thing That Follows da227d.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Thing That Follows da227d.yaml index 44be0d488..0badffb1b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Thing That Follows da227d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Thing That Follows da227d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 431115 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.71 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Tower ∙ XVI d5c93d.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Tower ∙ XVI d5c93d.yaml index a5115cf61..e291a9029 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Tower ∙ XVI d5c93d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Tower ∙ XVI d5c93d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 290320 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.75 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Truth Beckons ca1b5c.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Truth Beckons ca1b5c.yaml index 06a18b1d1..32c8071c6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Truth Beckons ca1b5c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Truth Beckons ca1b5c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232102 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.94 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card The World ∙ XXI (3) 372b5b.yaml b/unpacked/Bag All Player Cards 15bb07/Card The World ∙ XXI (3) 372b5b.yaml index d8f4749d3..3c564d171 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The World ∙ XXI (3) 372b5b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The World ∙ XXI (3) 372b5b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449523 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.73 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Thermos 5b14dc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Thermos 5b14dc.yaml index a1d894632..7d3fc13ff 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Thermos 5b14dc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Thermos 5b14dc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 261102 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.13 posY: 3.73 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Thieves' Kit (3) be8d1f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Thieves' Kit (3) be8d1f.yaml index e6af32b0c..c78c8e796 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Thieves' Kit (3) be8d1f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Thieves' Kit (3) be8d1f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379068 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 358 - rotY: 270 - rotZ: 358 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Thieves' Kit 857b53.yaml b/unpacked/Bag All Player Cards 15bb07/Card Thieves' Kit 857b53.yaml index 7dcbb46f5..60a92542f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Thieves' Kit 857b53.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Thieves' Kit 857b53.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379057 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 358 - rotY: 270 - rotZ: 358 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Think on Your Feet (2) 3e0653.yaml b/unpacked/Bag All Player Cards 15bb07/Card Think on Your Feet (2) 3e0653.yaml index 877018a02..3e4feaf56 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Think on Your Feet (2) 3e0653.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Think on Your Feet (2) 3e0653.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315303 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.72 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Think on Your Feet 6fec31.yaml b/unpacked/Bag All Player Cards 15bb07/Card Think on Your Feet 6fec31.yaml index c6ffd4292..e724c48f0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Think on Your Feet 6fec31.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Think on Your Feet 6fec31.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368709 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.88 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Third Time's a Charm (2) 45956a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Third Time's a Charm (2) 45956a.yaml index a2390c72a..e36e2dd7e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Third Time's a Charm (2) 45956a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Third Time's a Charm (2) 45956a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232109 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.51 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Thomas Dawson 1f7e6e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Thomas Dawson 1f7e6e.yaml index a07641e67..a001d8ec0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Thomas Dawson 1f7e6e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Thomas Dawson 1f7e6e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 369815 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.77 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Three Aces (1) (Taboo) a11abb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Three Aces (1) (Taboo) a11abb.yaml index 88915ddc6..bc6e16ef2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Three Aces (1) (Taboo) a11abb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Three Aces (1) (Taboo) a11abb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 584413 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.09 posY: 3.7 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Three Aces (1) 30062e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Three Aces (1) 30062e.yaml index 5c2071d72..4954e7a33 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Three Aces (1) 30062e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Three Aces (1) 30062e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 447630 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.06 posY: 3.9 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Thrice-Damned Curiosity 3eef18.yaml b/unpacked/Bag All Player Cards 15bb07/Card Thrice-Damned Curiosity 3eef18.yaml index 52a476f2c..ea735ebc4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Thrice-Damned Curiosity 3eef18.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Thrice-Damned Curiosity 3eef18.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538801 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 8.98 posY: 3.67 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Through the Gates fd9c56.yaml b/unpacked/Bag All Player Cards 15bb07/Card Through the Gates fd9c56.yaml index 78a85e083..f8e33df5f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Through the Gates fd9c56.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Through the Gates fd9c56.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 527419 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 118.39 posY: 1.99 posZ: 19.41 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tidal Memento b4f9ee.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tidal Memento b4f9ee.yaml index cd25b22da..ea943406a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tidal Memento b4f9ee.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tidal Memento b4f9ee.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 536000 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 79.85 posY: 3.32 posZ: 6.92 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tides of Fate 823e49.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tides of Fate 823e49.yaml index afea9fb34..979eb1d21 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tides of Fate 823e49.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tides of Fate 823e49.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 581024 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.84 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Time Warp (2) ba0fe7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Time Warp (2) ba0fe7.yaml index 00dce379f..047d3c46e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Time Warp (2) ba0fe7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Time Warp (2) ba0fe7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 583810 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.17 posY: 3.23 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Timeworn Brand (5) d3e55b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Timeworn Brand (5) d3e55b.yaml index db3cc0fb5..91c4bd6d4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Timeworn Brand (5) d3e55b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Timeworn Brand (5) d3e55b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 261100 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.76 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card To Fight the Black Wind 00b6c3.yaml b/unpacked/Bag All Player Cards 15bb07/Card To Fight the Black Wind 00b6c3.yaml index e912291dc..30c8a3f0f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card To Fight the Black Wind 00b6c3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card To Fight the Black Wind 00b6c3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230603 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 8.97 posY: 4.33 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Toe to Toe 58288b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Toe to Toe 58288b.yaml index 88dab2000..2efb09aed 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Toe to Toe 58288b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Toe to Toe 58288b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379010 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 2.44 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Token of Faith 2ea0d0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Token of Faith 2ea0d0.yaml index b777ace14..24417d8af 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Token of Faith 2ea0d0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Token of Faith 2ea0d0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587627 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.01 posY: 3.86 posZ: -16.7 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tommy Malloy c3a014.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tommy Malloy c3a014.yaml index c9dbcad14..1951d77d7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tommy Malloy c3a014.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tommy Malloy c3a014.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545301 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.67 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tommy Muldoon 5e73c6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tommy Muldoon 5e73c6.yaml index 8dd4ed201..3eab573bb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tommy Muldoon 5e73c6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tommy Muldoon 5e73c6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 274011 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.78 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tommy Muldoon e637cd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tommy Muldoon e637cd.yaml index cafa7dfca..5b68fbc7d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tommy Muldoon e637cd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tommy Muldoon e637cd.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 536532 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.79 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tony Morgan 4f0f4a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tony Morgan 4f0f4a.yaml index b1c26df7a..81ff892d9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tony Morgan 4f0f4a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tony Morgan 4f0f4a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 274015 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.92 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tony Morgan 53a412.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tony Morgan 53a412.yaml index ae55c992c..9797fa884 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tony Morgan 53a412.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tony Morgan 53a412.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 536436 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 2.13 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tony's .38 Long Colt 1186a1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tony's .38 Long Colt 1186a1.yaml index a517f2582..729a903e4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tony's .38 Long Colt 1186a1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tony's .38 Long Colt 1186a1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 581705 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 8.98 posY: 3.82 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tony's Quarry d6f8d1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tony's Quarry d6f8d1.yaml index 50055264e..68574a17c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tony's Quarry d6f8d1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tony's Quarry d6f8d1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 582106 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.07 posY: 3.88 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tool Belt 769a3e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tool Belt 769a3e.yaml index 36eb589d5..30e3e28d2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tool Belt 769a3e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tool Belt 769a3e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379144 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.72 posY: 3.35 posZ: 65.64 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tooth of Eztli c1a687.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tooth of Eztli c1a687.yaml index be7f6dfde..0d15c8da1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tooth of Eztli c1a687.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tooth of Eztli c1a687.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368432 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.15 posY: 4.11 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Torrent of Power 79287f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Torrent of Power 79287f.yaml index 53f915729..2f897cfa5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Torrent of Power 79287f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Torrent of Power 79287f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230300 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.77 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Track Shoes 6fa7fa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Track Shoes 6fa7fa.yaml index 1b27c211a..41f39dda5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Track Shoes 6fa7fa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Track Shoes 6fa7fa.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 274608 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 4.52 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Treasure Hunter (1) 18927e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Treasure Hunter (1) 18927e.yaml index 50d80e2a0..7d4e5325b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Treasure Hunter (1) 18927e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Treasure Hunter (1) 18927e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 315236 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 4.53 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Trench Coat ba560e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Trench Coat ba560e.yaml index 675085913..f8decc7c8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Trench Coat ba560e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Trench Coat ba560e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368518 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.71 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Trench Knife 0d4eb9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Trench Knife 0d4eb9.yaml index 8c84469b6..b6718ee40 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Trench Knife 0d4eb9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Trench Knife 0d4eb9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226320 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.99 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Trial by Fire (3) 76978f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Trial by Fire (3) 76978f.yaml index eec3d3a01..db08276ea 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Trial by Fire (3) 76978f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Trial by Fire (3) 76978f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449530 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.11 posY: 3.67 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Trial by Fire 869d4c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Trial by Fire 869d4c.yaml index 8c105d654..b3a8fc6de 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Trial by Fire 869d4c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Trial by Fire 869d4c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 374418 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.76 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Trigger Man (3) 11d7ad.yaml b/unpacked/Bag All Player Cards 15bb07/Card Trigger Man (3) 11d7ad.yaml index d0ac7f6b5..d67cab4fe 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Trigger Man (3) 11d7ad.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Trigger Man (3) 11d7ad.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379100 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.67 posY: 3.39 posZ: 65.93 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Trish Scarborough 333fe7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Trish Scarborough 333fe7.yaml index 9fc414322..5b4958941 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Trish Scarborough 333fe7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Trish Scarborough 333fe7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 553402 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 18.45 posY: 2.0 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Trish Scarborough fc5d62.yaml b/unpacked/Bag All Player Cards 15bb07/Card Trish Scarborough fc5d62.yaml index 3de15b2f5..44a679db0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Trish Scarborough fc5d62.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Trish Scarborough fc5d62.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 553202 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.95 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tristan Botley (2) 1fd630.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tristan Botley (2) 1fd630.yaml index 4f204d26a..307505529 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tristan Botley (2) 1fd630.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tristan Botley (2) 1fd630.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 588705 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.15 posY: 3.68 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card True Grit e25dc1.yaml b/unpacked/Bag All Player Cards 15bb07/Card True Grit e25dc1.yaml index f181a1709..41d468d67 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card True Grit e25dc1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card True Grit e25dc1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226329 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.77 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card True Magick (5) 79870f.yaml b/unpacked/Bag All Player Cards 15bb07/Card True Magick (5) 79870f.yaml index aa2cc0051..6c25c9d80 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card True Magick (5) 79870f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card True Magick (5) 79870f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379060 ColorDiffuse: @@ -48,11 +48,11 @@ Transform: posX: 9.19 posY: 2.35 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card True Survivor (3) 8837ff.yaml b/unpacked/Bag All Player Cards 15bb07/Card True Survivor (3) 8837ff.yaml index fdbd911cb..3f71fd370 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card True Survivor (3) 8837ff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card True Survivor (3) 8837ff.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368859 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.16 posY: 3.89 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card True Understanding 4167c0.yaml b/unpacked/Bag All Player Cards 15bb07/Card True Understanding 4167c0.yaml index ad4bf5bbf..b85959051 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card True Understanding 4167c0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card True Understanding 4167c0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368403 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.99 posY: 3.76 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Trusted 1bc300.yaml b/unpacked/Bag All Player Cards 15bb07/Card Trusted 1bc300.yaml index d9fdc8c02..e0bc49422 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Trusted 1bc300.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Trusted 1bc300.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226315 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.98 posY: 3.81 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Trusty Bullwhip ca9a60.yaml b/unpacked/Bag All Player Cards 15bb07/Card Trusty Bullwhip ca9a60.yaml index 08f6de851..1604ba729 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Trusty Bullwhip ca9a60.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Trusty Bullwhip ca9a60.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379005 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.56 posY: 3.33 posZ: 7.39 - rotX: 0 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Truth from Fiction (2) 45cd73.yaml b/unpacked/Bag All Player Cards 15bb07/Card Truth from Fiction (2) 45cd73.yaml index b92a668f4..4f974653a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Truth from Fiction (2) 45cd73.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Truth from Fiction (2) 45cd73.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 545202 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.02 posY: 3.97 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Truth from Fiction d64c99.yaml b/unpacked/Bag All Player Cards 15bb07/Card Truth from Fiction d64c99.yaml index 753390405..f517225b7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Truth from Fiction d64c99.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Truth from Fiction d64c99.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368412 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.18 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Try and Try Again (1) 3dc82f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Try and Try Again (1) 3dc82f.yaml index 2772f2679..ba4edd4cc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Try and Try Again (1) 3dc82f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Try and Try Again (1) 3dc82f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 314802 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.01 posY: 3.94 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Try and Try Again (3) f1b0f9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Try and Try Again (3) f1b0f9.yaml index 007238aa0..62cce1040 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Try and Try Again (3) f1b0f9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Try and Try Again (3) f1b0f9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368857 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.04 posY: 3.93 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Twila Katherine Price (3) 9f76ec.yaml b/unpacked/Bag All Player Cards 15bb07/Card Twila Katherine Price (3) 9f76ec.yaml index 8074f5fde..791b7263e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Twila Katherine Price (3) 9f76ec.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Twila Katherine Price (3) 9f76ec.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 448034 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.14 posY: 3.83 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Twilight Blade 223ba3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Twilight Blade 223ba3.yaml index 00703f0fe..b53c23445 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Twilight Blade 223ba3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Twilight Blade 223ba3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449359 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.1 posY: 3.68 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unbound Beast 86cf9c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unbound Beast 86cf9c.yaml index d79c462f1..8ce4c3eee 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unbound Beast 86cf9c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unbound Beast 86cf9c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 527236 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.83 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Uncage the Soul (3) 343f3a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Uncage the Soul (3) 343f3a.yaml index 022395ba4..cf6e11daa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Uncage the Soul (3) 343f3a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Uncage the Soul (3) 343f3a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379119 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.74 posY: 3.35 posZ: 65.49 - rotX: 359 - rotY: 270 - rotZ: 2 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 2.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Uncage the Soul 45d2d2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Uncage the Soul 45d2d2.yaml index 98232416d..e1c5c1b5a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Uncage the Soul 45d2d2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Uncage the Soul 45d2d2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230305 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.72 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Under Surveillance (1) cc8321.yaml b/unpacked/Bag All Player Cards 15bb07/Card Under Surveillance (1) cc8321.yaml index c5d778bfe..db5dbc438 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Under Surveillance (1) cc8321.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Under Surveillance (1) cc8321.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232105 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.14 posY: 3.75 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Underprepared 709a54.yaml b/unpacked/Bag All Player Cards 15bb07/Card Underprepared 709a54.yaml index 9dab1be14..90e0b5687 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Underprepared 709a54.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Underprepared 709a54.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379152 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 16.71 posY: 3.37 posZ: 65.64 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Underworld Market (2) bba889.yaml b/unpacked/Bag All Player Cards 15bb07/Card Underworld Market (2) bba889.yaml index b97ae9c55..2c4615201 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Underworld Market (2) bba889.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Underworld Market (2) bba889.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379101 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 358 - rotY: 270 - rotZ: 358 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Underworld Support 8190ac.yaml b/unpacked/Bag All Player Cards 15bb07/Card Underworld Support 8190ac.yaml index 0fc41e59d..3ec1f96c4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Underworld Support 8190ac.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Underworld Support 8190ac.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379036 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.16 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unearth the Ancients (2) 3a4edd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unearth the Ancients (2) 3a4edd.yaml index 7ab3ab618..ca06556ba 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unearth the Ancients (2) 3a4edd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unearth the Ancients (2) 3a4edd.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379029 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 2.27 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unearth the Ancients f763e8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unearth the Ancients f763e8.yaml index 37deb3012..5f8d15f57 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unearth the Ancients f763e8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unearth the Ancients f763e8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368410 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.71 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage (2) 2f2190.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage (2) 2f2190.yaml index da3c3d319..8dc238fd7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage (2) 2f2190.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage (2) 2f2190.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550824 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.09 posY: 3.68 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage 853b6c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage 853b6c.yaml index f985cf581..e26603fb2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage 853b6c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage 853b6c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587212 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 78.81 posY: 3.32 posZ: 7.67 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage acb83a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage acb83a.yaml index 98bc3f852..7c88632d5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage acb83a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage acb83a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368508 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.17 posY: 3.25 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Universal Solvent 2f1166.yaml b/unpacked/Bag All Player Cards 15bb07/Card Universal Solvent 2f1166.yaml index 36483259c..ac1e9b5bc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Universal Solvent 2f1166.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Universal Solvent 2f1166.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 233604 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.0 posY: 3.69 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unrelenting (1) 45386d.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Unrelenting (1) 45386d.ttslua index 549529b1b..c0c280e9b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unrelenting (1) 45386d.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Unrelenting (1) 45386d.ttslua @@ -1,97 +1,347 @@ -function onload() - chaosbag = getChaosBag() - manager = getObjectFromGUID("5933fb") - sealedTokens = { } - IMAGE_TOKEN_MAP = { } - for i,v in pairs(Global.getVar("IMAGE_TOKEN_MAP")) do - IMAGE_TOKEN_MAP[i] = v - end +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} - readBag() + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local BlessCurseManagerApi = {} + local MANAGER_GUID = "5933fb" + + -- removes all taken tokens and resets the counts + BlessCurseManagerApi.removeTakenTokensAndReset = function() + local BlessCurseManager = getObjectFromGUID(MANAGER_GUID) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05) + Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10) + Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.sealedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("sealedToken", { type = type, guid = guid }) + end + + -- updates the internal count (called by cards that seal bless/curse tokens) + BlessCurseManagerApi.releasedToken = function(type, guid) + getObjectFromGUID(MANAGER_GUID).call("releasedToken", { type = type, guid = guid }) + end + + -- broadcasts the current status for bless/curse tokens + ---@param playerColor String Color of the player to show the broadcast to + BlessCurseManagerApi.broadcastStatus = function(playerColor) + getObjectFromGUID(MANAGER_GUID).call("broadcastStatus", playerColor) + end + + -- adds Wendy's menu to the hovered card (allows sealing of tokens) + ---@param color String Color of the player to show the broadcast to + BlessCurseManagerApi.addWendysMenu = function(playerColor, hoveredObject) + getObjectFromGUID(MANAGER_GUID).call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject }) + end + + return BlessCurseManagerApi +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/cards/Unrelenting1") +end) +__bundle_register("playercards/cards/Unrelenting1", function(require, _LOADED, __bundle_register, __bundle_modules) +VALID_TOKENS = {} +INVALID_TOKENS = {} + +UPDATE_ON_HOVER = true + +require("playercards/CardsThatSealTokens") +end) +__bundle_register("playercards/CardsThatSealTokens", function(require, _LOADED, __bundle_register, __bundle_modules) +--[[ Library for cards that seal tokens +This file is used to add sealing option to cards' context menu. +Valid options (set before requiring this file): + +UPDATE_ON_HOVER --@type: boolean + - automatically updates the context menu options when the card is hovered + - the "Read Bag" function reads the content of the chaos bag to update the context menu + - example usage: "Unrelenting" (to only display valid tokens) + +SHOW_SINGLE_RELEASE --@type: boolean + - enables an entry in the context menu + - this entry allows releasing a single token + - example usage: "Holy Spear" (to keep the other tokens and just release one) + +SHOW_MULTI_RELEASE --@type: number (amount of tokens to release at once) + - enables an entry in the context menu + - this enty allows releasing of multiple tokens at once + - example usage: "Nephthys" (to release 3 bless tokens at once) + +SHOW_MULTI_SEAL --@type: number (amount of tokens to seal at once) + - enables an entry in the context menu + - this entry allows sealing of multiple tokens at once + - example usage: "Holy Spear" (to seal two bless tokens at once) + +VALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens should be abled to be sealed + - needs to be defined for each card -> even if empty + - example usage: "The Chthonian Stone" + > VALID_TOKENS = { + > ["Skull"] = true, + > ["Cultist"] = true, + > ["Tablet"] = true, + > ["Elder Thing"] = true, + > } + +INVALID_TOKENS --@type: table ([tokenName] = true) + - this table defines which tokens are invalid for sealing + - only needs to be defined if needed + - usually combined with empty "VALID_TOKENS" table + - example usage: "Protective Incantation" (not allowed to seal Auto-fail) + +---------------------------------------------------------- +Example 1: Crystalline Elder Sign +This card can only seal the "+1" or "Elder Sign" token, +it does not need specific options for multi-sealing or releasing. +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["+1"] = true, +> ["Elder Sign"] = true +> } +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +---------------------------------------------------------- +Example 2: Holy Spear +This card features the following abilities (just listing the relevant parts): +- releasing a single bless token +- sealing two bless tokens +Thus it should be implemented like this: + +> VALID_TOKENS = { +> ["Bless"] = true +> } +> SHOW_SINGLE_RELEASE = true +> SHOW_MULTI_SEAL = 2 +> require ("playercards/CardsThatSealTokens") -- includes a space after "require" to not executing bundling +----------------------------------------------------------]] + +local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi") +local tokenArrangerApi = require("accessories/TokenArrangerApi") +local sealedTokens = {} +local ID_URL_MAP = {} +local tokensInBag = {} + +function onSave() return JSON.encode(sealedTokens) end + +function onLoad(savedData) + sealedTokens = JSON.decode(savedData) or {} + ID_URL_MAP = Global.getTable("ID_URL_MAP") + generateContextMenu() end -function sealToken(url, playerColor) - local pos = self.getPosition() +-- builds the context menu +function generateContextMenu() + -- conditional single or multi release options + if SHOW_SINGLE_RELEASE then + self.addContextMenuItem("Release token", releaseOneToken) + elseif SHOW_MULTI_RELEASE then + self.addContextMenuItem("Release " .. SHOW_MULTI_RELEASE .. " token(s)", releaseMultipleTokens) + else + self.addContextMenuItem("Release token(s)", releaseAllTokens) + end - local name = IMAGE_TOKEN_MAP[url] - for i,obj in ipairs(chaosbag.getObjects()) do - if obj.name == name then - chaosbag.takeObject({ - position={ pos.x, pos.y + 1, pos.z }, - index=i-1, - smooth=false, - callback_function=_sealToken - }) - return - end - end - printToColor(name .. " token not found in bag", playerColor) -end + -- main context menu options to seal tokens + for _, map in pairs(ID_URL_MAP) do + if (VALID_TOKENS[map.name] ~= nil) or (UPDATE_ON_HOVER and tokensInBag[map.name] and not INVALID_TOKENS[map.name]) then + if not SHOW_MULTI_SEAL then + self.addContextMenuItem("Seal " .. map.name, function(playerColor) + sealToken(map.name, playerColor) + end) + else + self.addContextMenuItem("Seal " .. SHOW_MULTI_SEAL .. " " .. map.name, function(playerColor) + readBag() + local allowed = true + local notFound -function _sealToken(obj) - table.insert(sealedTokens, obj) - local guid = obj.getGUID() - local name = obj.getName() - if name == "Bless" or name == "Curse" then - local tokensTaken = manager.getVar("tokensTaken") - table.insert(tokensTaken[name], guid) - manager.setVar("tokensTaken", tokensTaken) - manager.setVar("mode", name) - printToAll("Sealing " .. name .. " token " .. manager.call("getTokenCount")) - end -end - -function releaseTokens(playerColor) - if #sealedTokens == 0 then return end - for i,token in ipairs(sealedTokens) do - local guid = token.getGUID() - local name = token.getName() - chaosbag.putObject(token) - if name == "Bless" or name == "Curse" then - local tokensTaken = manager.getVar("tokensTaken") - for i,v in ipairs(tokensTaken[name]) do - if v == guid then - table.remove(tokensTaken[name], i) - break - end + for name, _ in pairs(VALID_TOKENS) do + if (tokensInBag[name] or 0) < SHOW_MULTI_SEAL then + allowed = false + notFound = name end - manager.setVar("tokensTaken", tokensTaken) - manager.setVar("mode", name) - printToAll("Releasing " .. name .. " token" .. manager.call("getTokenCount")) - end - end + end - sealedTokens = { } -end - -function getChaosBag() - local items = getObjectFromGUID("83ef06").getObjects() - local chaosbag = nil - for i,v in ipairs(items) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break - end - end - if chaosbag == nil then printToAll("No chaos bag found") end - return chaosbag + if allowed then + for i = 1, SHOW_MULTI_SEAL do + sealToken(map.name, playerColor) + end + else + printToColor("Not enough " .. notFound .. " tokens in the chaos bag.", playerColor) + end + end) + end + end + end end +-- generates a list of chaos tokens that is in the chaos bag function readBag() - -- add menu items + local chaosbag = Global.call("findChaosBag") + tokensInBag = {} + + for _, token in ipairs(chaosbag.getObjects()) do + tokensInBag[token.name] = (tokensInBag[token.name] or 0) + 1 + end +end + +-- native event from TTS - used to update the context menu for cards like "Unrelenting" +function onHover() + if UPDATE_ON_HOVER then + readBag() self.clearContextMenu() - self.addContextMenuItem("Release Tokens", releaseTokens) + generateContextMenu() + end +end - local bagTokens = { } - local tokens = chaosbag.getObjects() - for i,token in ipairs(tokens) do - bagTokens[token.name] = true - end - - for url,token in pairs(IMAGE_TOKEN_MAP) do - if bagTokens[token] then - self.addContextMenuItem("Seal " .. token, function(playerColor) sealToken(url, playerColor) end, true) +-- seals the named token on this card +function sealToken(name, playerColor) + if not Global.call("canTouchChaosTokens") then return end + local chaosbag = Global.call("findChaosBag") + for i, obj in ipairs(chaosbag.getObjects()) do + if obj.name == name then + chaosbag.takeObject({ + position = self.getPosition() + Vector(0, 0.5 + 0.1 * #sealedTokens, 0), + rotation = self.getRotation(), + index = i - 1, + smooth = false, + callback_function = function(token) + local guid = token.getGUID() + table.insert(sealedTokens, guid) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.sealedToken(name, guid) + end end + }) + return end - self.addContextMenuItem("Refresh Seal Options", readBag) -end \ No newline at end of file + end + printToColor(name .. " token not found in chaos bag", playerColor) +end + +-- release the last sealed token +function releaseOneToken(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token", playerColor) + putTokenAway(table.remove(sealedTokens)) + end +end + +-- release multiple tokens at once +function releaseMultipleTokens(playerColor) + if SHOW_MULTI_RELEASE >= #sealedTokens then + for i = 1, SHOW_MULTI_RELEASE do + releaseOneToken(playerColor) + end + else + printToColor("Not enough " .. name .. " tokens sealed.", playerColor) + end +end + +-- releases all sealed tokens +function releaseAllTokens(playerColor) + if not Global.call("canTouchChaosTokens") then return end + if #sealedTokens == 0 then + printToColor("No sealed token(s) found", playerColor) + else + printToColor("Releasing token(s)", playerColor) + for _, guid in ipairs(sealedTokens) do + putTokenAway(guid) + end + sealedTokens = {} + end +end + +-- returns the token (referenced by GUID) to the chaos bag +function putTokenAway(guid) + local token = getObjectFromGUID(guid) + if not token then return end + + local name = token.getName() + local chaosbag = Global.call("findChaosBag") + chaosbag.putObject(token) + tokenArrangerApi.layout() + if name == "Bless" or name == "Curse" then + blessCurseManagerApi.releasedToken(name, guid) + end +end +end) +__bundle_register("accessories/TokenArrangerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenArrangerApi = {} + + -- local function to call the token arranger, if it is on the table + ---@param functionName String Name of the function to cal + ---@param argument Variant Parameter to pass + local function callIfExistent(functionName, argument) + local tokenArranger = getObjectsWithTag("TokenArranger")[1] + if tokenArranger ~= nil then + tokenArranger.call(functionName, argument) + end + end + + -- updates the token modifiers with the provided data + ---@param tokenData Table Contains the chaos token metadata + TokenArrangerApi.onTokenDataChanged = function(fullData) + callIfExistent("onTokenDataChanged", fullData) + end + + -- deletes already laid out tokens + TokenArrangerApi.deleteCopiedTokens = function() + callIfExistent("deleteCopiedTokens") + end + + -- updates the laid out tokens + TokenArrangerApi.layout = function() + Wait.time(function() callIfExistent("layout") end, 0.1) + end + + return TokenArrangerApi +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unrelenting (1) 45386d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unrelenting (1) 45386d.yaml index ab12a04a0..f0b01d9bc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unrelenting (1) 45386d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unrelenting (1) 45386d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558007 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.01 posY: 3.68 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unscrupulous Loan (3) 57b95d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unscrupulous Loan (3) 57b95d.yaml index 6ae5da554..1a8f580c2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unscrupulous Loan (3) 57b95d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unscrupulous Loan (3) 57b95d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378951 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.18 posY: 2.86 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unsolved Case 22d886.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unsolved Case 22d886.yaml index 59b515222..e65cdf4eb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unsolved Case 22d886.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unsolved Case 22d886.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 431656 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.06 posY: 3.88 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Bloodthirst) a5be8b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Bloodthirst) a5be8b.yaml index 54bbe9234..152c43935 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Bloodthirst) a5be8b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Bloodthirst) a5be8b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 438124 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.16 posY: 4.18 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Cowardice) ea0fa1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Cowardice) ea0fa1.yaml index 0d5ceca66..9ac31e96b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Cowardice) ea0fa1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Cowardice) ea0fa1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 438122 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.77 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Curiosity) f6aba5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Curiosity) f6aba5.yaml index 6a219ab97..f4bb77a1e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Curiosity) f6aba5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Curiosity) f6aba5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 438123 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.8 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Until the End of Time 41a9ec.yaml b/unpacked/Bag All Player Cards 15bb07/Card Until the End of Time 41a9ec.yaml index 190d15499..a8413449f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Until the End of Time 41a9ec.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Until the End of Time 41a9ec.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 376600 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 4.18 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Untimely Transaction (1) 69289f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Untimely Transaction (1) 69289f.yaml index 1b529cd92..734b16f87 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Untimely Transaction (1) 69289f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Untimely Transaction (1) 69289f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379041 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.2 posY: 2.18 posZ: -16.74 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ursula Downs 07c37d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ursula Downs 07c37d.yaml index f9ab69054..edaff0ba6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ursula Downs 07c37d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ursula Downs 07c37d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 271417 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.81 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ursula Downs c91482.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ursula Downs c91482.yaml index de3a29e73..41aae2e0f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ursula Downs c91482.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ursula Downs c91482.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 260317 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.8 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Valentino Rivas 726d1d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Valentino Rivas 726d1d.yaml index f7f9f4975..27bbaa83d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Valentino Rivas 726d1d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Valentino Rivas 726d1d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 312514 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 5.0 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Vantage Point 2f9ab1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Vantage Point 2f9ab1.yaml index 7b14a9225..16db03765 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Vantage Point 2f9ab1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Vantage Point 2f9ab1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368411 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.09 posY: 3.68 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Vault of Knowledge 2fdcc9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Vault of Knowledge 2fdcc9.yaml index 7591122f5..248b679b1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Vault of Knowledge 2fdcc9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Vault of Knowledge 2fdcc9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538800 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.0 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Veda Whitsley a0c2da.yaml b/unpacked/Bag All Player Cards 15bb07/Card Veda Whitsley a0c2da.yaml index 76c044fec..1f17defa1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Veda Whitsley a0c2da.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Veda Whitsley a0c2da.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 231709 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.2 posY: 2.94 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Vengeful Hound ce3a1a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Vengeful Hound ce3a1a.yaml index 86161e1da..69caa886e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Vengeful Hound ce3a1a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Vengeful Hound ce3a1a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 380949 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.85 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Venturer 0e2987.yaml b/unpacked/Bag All Player Cards 15bb07/Card Venturer 0e2987.yaml index 0a5a3643c..344971c5a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Venturer 0e2987.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Venturer 0e2987.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226332 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.15 posY: 3.83 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Versatile (2) eca1c8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Versatile (2) eca1c8.yaml index 314aac43d..be11ff9e8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Versatile (2) eca1c8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Versatile (2) eca1c8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379711 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.71 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Vicious Blow (2) d2e026.yaml b/unpacked/Bag All Player Cards 15bb07/Card Vicious Blow (2) d2e026.yaml index d53a27fed..eb630e757 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Vicious Blow (2) d2e026.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Vicious Blow (2) d2e026.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226341 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.01 posY: 3.76 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Vicious Blow 889121.yaml b/unpacked/Bag All Player Cards 15bb07/Card Vicious Blow 889121.yaml index 33f7c727c..9795d7793 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Vicious Blow 889121.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Vicious Blow 889121.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226302 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 18.97 posY: 3.38 posZ: -56.94 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Vincent Lee 43ad8a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Vincent Lee 43ad8a.yaml index 7408fb7b3..15d7e026e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Vincent Lee 43ad8a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Vincent Lee 43ad8a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 846101 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 15.3 posY: 2.21 posZ: 54.5 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Vincent Lee c431f3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Vincent Lee c431f3.yaml index 35ec9fd41..d70d66229 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Vincent Lee c431f3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Vincent Lee c431f3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 843401 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 20.94 posY: 2.21 posZ: 51.76 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Voice of Ra (Taboo) 77f7f3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Voice of Ra (Taboo) 77f7f3.yaml index 5eb2cd3c1..47a8092d9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Voice of Ra (Taboo) 77f7f3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Voice of Ra (Taboo) 77f7f3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 558207 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 21.63 posY: 4.28 posZ: -62.25 - rotX: 0 - rotY: 270 - rotZ: 3 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Voice of Ra 0988b2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Voice of Ra 0988b2.yaml index 0226254fb..b59575f29 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Voice of Ra 0988b2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Voice of Ra 0988b2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538714 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.02 posY: 4.01 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Voice of the Messenger f93ea8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Voice of the Messenger f93ea8.yaml index 81b696af8..c4ae42d94 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Voice of the Messenger f93ea8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Voice of the Messenger f93ea8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 376501 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.0 posY: 3.71 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection (2) 4d74f6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection (2) 4d74f6.yaml index 18d62a330..3fcd0af2b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection (2) 4d74f6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection (2) 4d74f6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230341 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.02 posY: 4.05 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection (5) 7bc995.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection (5) 7bc995.yaml index 512ea5573..b6ce12c8f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection (5) 7bc995.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection (5) 7bc995.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230360 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 3.82 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection 6656ad.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection 6656ad.yaml index e093f5056..23bb8af20 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection 6656ad.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection 6656ad.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 230308 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 32.98 posY: 3.33 posZ: -47.41 - rotX: 1 - rotY: 270 - rotZ: 2 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ward of Radiance 69116c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ward of Radiance 69116c.yaml index 8b4477aef..7cdcaaeb4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ward of Radiance 69116c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ward of Radiance 69116c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 583025 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.09 posY: 3.69 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Warning Shot ec38db.yaml b/unpacked/Bag All Player Cards 15bb07/Card Warning Shot ec38db.yaml index 070d733c3..83623cf0b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Warning Shot ec38db.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Warning Shot ec38db.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 292814 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.0 posY: 3.87 posZ: -16.7 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Watch this! c40cb4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Watch this! c40cb4.yaml index 04a4add87..fc06f3552 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Watch this! c40cb4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Watch this! c40cb4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 261700 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 5.44 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Watcher from Another Dimension 6945f7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Watcher from Another Dimension 6945f7.yaml index e09029253..f94ae4145 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Watcher from Another Dimension 6945f7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Watcher from Another Dimension 6945f7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 581311 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.65 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Waveworn Idol 591284.yaml b/unpacked/Bag All Player Cards 15bb07/Card Waveworn Idol 591284.yaml index 05c450f31..2ebe9e749 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Waveworn Idol 591284.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Waveworn Idol 591284.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 451112 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.82 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Waylay da207b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Waylay da207b.yaml index f408e618d..300d91015 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Waylay da207b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Waylay da207b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368818 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.17 posY: 3.03 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Well Connected (3) 170127.yaml b/unpacked/Bag All Player Cards 15bb07/Card Well Connected (3) 170127.yaml index a1ef8c671..6524133c1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Well Connected (3) 170127.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Well Connected (3) 170127.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449526 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.12 posY: 3.88 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Well Connected 66b7d5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Well Connected 66b7d5.yaml index 62c3d5201..73296e649 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Well Connected 66b7d5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Well Connected 66b7d5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 527608 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.2 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Well Prepared (2) eea4ef.yaml b/unpacked/Bag All Player Cards 15bb07/Card Well Prepared (2) eea4ef.yaml index 6dce1e9ed..75d125612 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Well Prepared (2) eea4ef.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Well Prepared (2) eea4ef.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 226345 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.17 posY: 3.03 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Well-Maintained (1) e454c3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Well-Maintained (1) e454c3.yaml index ee2e3378b..7f99530db 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Well-Maintained (1) e454c3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Well-Maintained (1) e454c3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 278012 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.15 posY: 4.06 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel Back) 4232d9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel Back) 4232d9.yaml index 32db022e9..3d456bf5f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel Back) 4232d9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel Back) 4232d9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 535802 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.8 posY: 3.3 posZ: 7.3 - rotX: 2 - rotY: 180 - rotZ: 1 + rotX: 2.0 + rotY: 180.0 + rotZ: 1.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel Front) 61503e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel Front) 61503e.yaml index 3ca6b94a6..fec037b3d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel Front) 61503e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel Front) 61503e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 535801 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.22 posY: 3.32 posZ: 8.84 - rotX: 359 - rotY: 180 - rotZ: 0 + rotX: 359.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel) fd91ea.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel) fd91ea.yaml index 6c6b74b15..976650587 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel) fd91ea.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel) fd91ea.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 535800 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 78.67 posY: 3.33 posZ: 7.63 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams 15e40d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams 15e40d.yaml index 871b6132f..be71a9122 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams 15e40d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams 15e40d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 258404 ColorDiffuse: @@ -39,9 +39,9 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587104 ColorDiffuse: @@ -88,7 +88,7 @@ States: rotY: 269.999939 rotZ: -1.09467493e-07 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' @@ -100,11 +100,11 @@ Transform: posX: 26.57 posY: 3.69 posZ: -4.42 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams fc1d17.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams fc1d17.yaml index 82dffce07..bb0a523b5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams fc1d17.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams fc1d17.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 535704 ColorDiffuse: @@ -41,9 +41,9 @@ Snap: true States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587404 ColorDiffuse: @@ -90,10 +90,10 @@ States: posY: 1.29860592 posZ: 57.92725 rotX: -1.57520219e-08 - rotY: 180 + rotY: 180.0 rotZ: 1.500979e-08 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' @@ -106,11 +106,11 @@ Transform: posX: 26.93 posY: 3.69 posZ: -0.16 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 05d7d5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 05d7d5.yaml index 88f94a47b..7c4f675a7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 05d7d5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 05d7d5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587213 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 48.56 posY: 1.99 posZ: -126.16 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 27b4ea.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 27b4ea.yaml index 881495c5a..b02037bfc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 27b4ea.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 27b4ea.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 590608 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.71 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 664b70.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 664b70.yaml index 860c6a66c..3087f939f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 664b70.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 664b70.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 536001 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 79.37 posY: 3.3 posZ: 6.7 - rotX: 0 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card What Have You Done 2c76d9.yaml b/unpacked/Bag All Player Cards 15bb07/Card What Have You Done 2c76d9.yaml index 4a89d8464..b118fcb67 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card What Have You Done 2c76d9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card What Have You Done 2c76d9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 534901 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 101.21 posY: 1.99 posZ: -15.65 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Whispers from the Deep dd4a25.yaml b/unpacked/Bag All Player Cards 15bb07/Card Whispers from the Deep dd4a25.yaml index 2174ccf61..bf7a384fb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Whispers from the Deep dd4a25.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Whispers from the Deep dd4a25.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 585903 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.8 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Whitton Greene (2) 854c79.yaml b/unpacked/Bag All Player Cards 15bb07/Card Whitton Greene (2) 854c79.yaml index be48bebee..668e78250 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Whitton Greene (2) 854c79.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Whitton Greene (2) 854c79.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538821 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.0 posY: 3.78 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Whitton Greene 3c5099.yaml b/unpacked/Bag All Player Cards 15bb07/Card Whitton Greene 3c5099.yaml index 0db31058d..cc9768f7c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Whitton Greene 3c5099.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Whitton Greene 3c5099.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 538811 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.79 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Will to Survive (3) 0027f2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Will to Survive (3) 0027f2.yaml index c4e0f9f9b..aeb35ccf5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Will to Survive (3) 0027f2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Will to Survive (3) 0027f2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368860 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.72 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Will to Survive (3) 3959fa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Will to Survive (3) 3959fa.yaml index f095e4704..245a9c10e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Will to Survive (3) 3959fa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Will to Survive (3) 3959fa.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587216 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 78.76 posY: 3.32 posZ: 7.67 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Will to Survive dc4a2c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Will to Survive dc4a2c.yaml index fe3050aa6..924c4598e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Will to Survive dc4a2c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Will to Survive dc4a2c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550810 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.06 posY: 3.87 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card William Yorick 7e4c56.yaml b/unpacked/Bag All Player Cards 15bb07/Card William Yorick 7e4c56.yaml index fcad28a79..da5909b21 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card William Yorick 7e4c56.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card William Yorick 7e4c56.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 271114 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.94 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card William Yorick 98d974.yaml b/unpacked/Bag All Player Cards 15bb07/Card William Yorick 98d974.yaml index 1e7e4ad65..8bcf0e73d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card William Yorick 98d974.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card William Yorick 98d974.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 259414 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 2.13 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Winds of Power (1) bcdfde.yaml b/unpacked/Bag All Player Cards 15bb07/Card Winds of Power (1) bcdfde.yaml index a4903762b..74a2ef35d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Winds of Power (1) bcdfde.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Winds of Power (1) bcdfde.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379053 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.19 posY: 2.21 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Winging It aa3984.yaml b/unpacked/Bag All Player Cards 15bb07/Card Winging It aa3984.yaml index bddac6db9..7357ca93e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Winging It aa3984.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Winging It aa3984.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 430501 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 5.41 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Winifred Habbamock 038599.yaml b/unpacked/Bag All Player Cards 15bb07/Card Winifred Habbamock 038599.yaml index d0e7a2dba..38771d54b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Winifred Habbamock 038599.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Winifred Habbamock 038599.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 274218 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.99 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Winifred Habbamock cd4028.yaml b/unpacked/Bag All Player Cards 15bb07/Card Winifred Habbamock cd4028.yaml index 1ed1b00a1..106e71bb5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Winifred Habbamock cd4028.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Winifred Habbamock cd4028.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 234902 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.64 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wish Eater 464ca1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wish Eater 464ca1.yaml index c2f9b637a..4a316a31e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wish Eater 464ca1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wish Eater 464ca1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 448937 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.18 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wither (4) f57a6f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wither (4) f57a6f.yaml index 93ba45286..ab358e89c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wither (4) f57a6f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wither (4) f57a6f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379619 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.77 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wither d946d9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wither d946d9.yaml index ea8156a16..557131d01 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wither d946d9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wither d946d9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 277511 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.1 posY: 3.68 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wooden Sledge 991640.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wooden Sledge 991640.yaml index a7fef4993..537287d68 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wooden Sledge 991640.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wooden Sledge 991640.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 450307 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 79.36 posY: 3.32 posZ: 8.08 - rotX: 359 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Word of Command (2) 26853e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Word of Command (2) 26853e.yaml index 2d11ed8e8..0b924b52a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Word of Command (2) 26853e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Word of Command (2) 26853e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 448030 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.13 posY: 5.54 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Word of Weal 5edfc2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Word of Weal 5edfc2.yaml index 0b981fe5b..c5ee42774 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Word of Weal 5edfc2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Word of Weal 5edfc2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379008 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 15.34 posY: 2.21 posZ: 59.44 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Word of Woe bb7174.yaml b/unpacked/Bag All Player Cards 15bb07/Card Word of Woe bb7174.yaml index b41d65321..fc9aa6f95 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Word of Woe bb7174.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Word of Woe bb7174.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379007 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 15.06 posY: 2.21 posZ: 59.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Working a Hunch 07b7a1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Working a Hunch 07b7a1.yaml index 26777ba50..edf2b6fef 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Working a Hunch 07b7a1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Working a Hunch 07b7a1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 587203 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 78.81 posY: 3.33 posZ: 7.67 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Working a Hunch eb6165.yaml b/unpacked/Bag All Player Cards 15bb07/Card Working a Hunch eb6165.yaml index f95d8c2ae..efe8b3052 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Working a Hunch eb6165.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Working a Hunch eb6165.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368413 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.97 posY: 4.06 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wounded Bystander fb54d3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wounded Bystander fb54d3.yaml index 2d95359ca..dd112d6a7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wounded Bystander fb54d3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wounded Bystander fb54d3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379004 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 18.9 posY: 2.21 posZ: 59.62 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wracked by Nightmares 97781f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wracked by Nightmares 97781f.yaml index d473641c3..fb5bd0879 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wracked by Nightmares 97781f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wracked by Nightmares 97781f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 371013 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.13 posY: 4.18 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Written in the Stars 320bbe.yaml b/unpacked/Bag All Player Cards 15bb07/Card Written in the Stars 320bbe.yaml index c2d6e1376..18420b23f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Written in the Stars 320bbe.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Written in the Stars 320bbe.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 379024 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.99 posY: 3.82 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Yaotl (1) 284bbe.yaml b/unpacked/Bag All Player Cards 15bb07/Card Yaotl (1) 284bbe.yaml index a6d88361e..4fe463f9c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Yaotl (1) 284bbe.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Yaotl (1) 284bbe.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 584811 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.13 posY: 3.75 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Yaztaroth bd65dc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Yaztaroth bd65dc.yaml index e6d6af32a..2097e422f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Yaztaroth bd65dc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Yaztaroth bd65dc.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 590201 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 9.11 posY: 3.94 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card You handle this one! dcdcea.yaml b/unpacked/Bag All Player Cards 15bb07/Card You handle this one! dcdcea.yaml index 2bb12d472..d620fefe4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card You handle this one! dcdcea.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card You handle this one! dcdcea.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 368705 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.13 posY: 3.68 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card You owe me one! d27d12.yaml b/unpacked/Bag All Player Cards 15bb07/Card You owe me one! d27d12.yaml index 2727fce2b..14580e594 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card You owe me one! d27d12.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card You owe me one! d27d12.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 378018 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.08 posY: 3.73 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Your Worst Nightmare 406ab2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Your Worst Nightmare 406ab2.yaml index 7850faeb6..3ca460d69 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Your Worst Nightmare 406ab2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Your Worst Nightmare 406ab2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 438128 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 8.99 posY: 3.75 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Zeal 695bb7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Zeal 695bb7.yaml index 369aedaf8..467097a8e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Zeal 695bb7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Zeal 695bb7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 440625 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.17 posY: 3.18 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Zebulon Whateley 6714b2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Zebulon Whateley 6714b2.yaml index 466beba65..9bd5e7573 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Zebulon Whateley 6714b2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Zebulon Whateley 6714b2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 232949 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 3.8 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Zoey Samaras 98a0e1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Zoey Samaras 98a0e1.yaml index f119c3812..6d6801b1e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Zoey Samaras 98a0e1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Zoey Samaras 98a0e1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 449902 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 18.45 posY: 1.59 posZ: -73.09 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.15 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Zoey Samaras ef75e7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Zoey Samaras ef75e7.yaml index bdfa36d00..399438003 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Zoey Samaras ef75e7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Zoey Samaras ef75e7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 259105 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.85 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Zoey's Cross 66d810.yaml b/unpacked/Bag All Player Cards 15bb07/Card Zoey's Cross 66d810.yaml index ec43ddf22..3ba0d923d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Zoey's Cross 66d810.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Zoey's Cross 66d810.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 371704 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.97 posY: 4.11 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Alchemical Distillation Upgrade Sheet 156166.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Alchemical Distillation Upgrade Sheet 156166.ttslua index d382c4a9e..0789a9026 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Alchemical Distillation Upgrade Sheet 156166.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Alchemical Distillation Upgrade Sheet 156166.ttslua @@ -1,3 +1,50 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/customizable/AlchemicalDistillationUpgradeSheet") +end) +__bundle_register("playercards/customizable/AlchemicalDistillationUpgradeSheet", function(require, _LOADED, __bundle_register, __bundle_modules) -- Customizable Cards: Alchemical Distillation -- by Chr1Z information = { @@ -178,4 +225,6 @@ function createButtonsAndBoxes() value = box_data.value }) end -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Alchemical Distillation Upgrade Sheet 156166.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Alchemical Distillation Upgrade Sheet 156166.yaml index ff7113b56..27edb0ff2 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Alchemical Distillation Upgrade Sheet 156166.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Alchemical Distillation Upgrade Sheet 156166.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 846700 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 76.13 posY: 9.19 posZ: 19.27 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Ancient Covenant (2) 436401.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Ancient Covenant (2) 436401.yaml index efc2bcc9d..24f1bcc4a 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Ancient Covenant (2) 436401.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Ancient Covenant (2) 436401.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 546400 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.16 posY: 4.18 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Blasphemous Covenant (2) 10b087.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Blasphemous Covenant (2) 10b087.yaml index fab12ff3b..3d2487b99 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Blasphemous Covenant (2) 10b087.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Blasphemous Covenant (2) 10b087.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 546500 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 8.98 posY: 3.67 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Custom Modifications Upgrade Sheet 4104bf.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Custom Modifications Upgrade Sheet 4104bf.ttslua index 7c8da9420..4baa8a1f3 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Custom Modifications Upgrade Sheet 4104bf.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Custom Modifications Upgrade Sheet 4104bf.ttslua @@ -1,3 +1,50 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/customizable/CustomModificationsUpgradeSheet") +end) +__bundle_register("playercards/customizable/CustomModificationsUpgradeSheet", function(require, _LOADED, __bundle_register, __bundle_modules) -- Customizable Cards: Custom Modifications -- by Chr1Z information = { @@ -176,4 +223,6 @@ function createButtonsAndBoxes() value = box_data.value }) end -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Custom Modifications Upgrade Sheet 4104bf.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Custom Modifications Upgrade Sheet 4104bf.yaml index 08b6125bd..86e16023b 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Custom Modifications Upgrade Sheet 4104bf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Custom Modifications Upgrade Sheet 4104bf.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 846600 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 76.66 posY: 9.19 posZ: 17.58 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Daisy's Tote Bag cf41be.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Daisy's Tote Bag cf41be.yaml index 04305969f..ddb3726f3 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Daisy's Tote Bag cf41be.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Daisy's Tote Bag cf41be.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 231600 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.06 posY: 3.76 posZ: -16.71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Damning Testimony Upgrade Sheet dc4a62.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Damning Testimony Upgrade Sheet dc4a62.ttslua index 9288e2e93..03adb4f9b 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Damning Testimony Upgrade Sheet dc4a62.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Damning Testimony Upgrade Sheet dc4a62.ttslua @@ -1,3 +1,50 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/customizable/DamningTestimonyUpgradeSheet") +end) +__bundle_register("playercards/customizable/DamningTestimonyUpgradeSheet", function(require, _LOADED, __bundle_register, __bundle_modules) -- Customizable Cards: Damning Testimony -- by Chr1Z information = { @@ -176,4 +223,6 @@ function createButtonsAndBoxes() value = box_data.value }) end -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Damning Testimony Upgrade Sheet dc4a62.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Damning Testimony Upgrade Sheet dc4a62.yaml index 5052e0ae5..c3a0b271c 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Damning Testimony Upgrade Sheet dc4a62.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Damning Testimony Upgrade Sheet dc4a62.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 847000 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 74.2 posY: 2.55 posZ: 15.62 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Eldritch Sophist f6b1b6.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Eldritch Sophist f6b1b6.yaml index 7212aff82..fa85594f3 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Eldritch Sophist f6b1b6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Eldritch Sophist f6b1b6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 549300 ColorDiffuse: @@ -47,11 +47,11 @@ Transform: posX: 9.13 posY: 4.52 posZ: -16.72 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Empirical Hypothesis Upgrade Sheet 0c46a7.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Empirical Hypothesis Upgrade Sheet 0c46a7.ttslua index ece55943e..da0e23e2e 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Empirical Hypothesis Upgrade Sheet 0c46a7.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Empirical Hypothesis Upgrade Sheet 0c46a7.ttslua @@ -1,3 +1,47 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("playercards/customizable/EmpiricalHypothesisUpgradeSheet", function(require, _LOADED, __bundle_register, __bundle_modules) -- Customizable Cards: Empirical Hypothesis -- by Chr1Z information = { @@ -178,4 +222,9 @@ function createButtonsAndBoxes() value = box_data.value }) end -end \ No newline at end of file +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/customizable/EmpiricalHypothesisUpgradeSheet") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Empirical Hypothesis Upgrade Sheet 0c46a7.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Empirical Hypothesis Upgrade Sheet 0c46a7.yaml index 4816c6b5e..f48cad5a6 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Empirical Hypothesis Upgrade Sheet 0c46a7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Empirical Hypothesis Upgrade Sheet 0c46a7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 846800 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 76.0 posY: 15.19 posZ: 23.87 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Friends in Low Places Upgrade Sheet 9fb3b9.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Friends in Low Places Upgrade Sheet 9fb3b9.ttslua index 97f096bd3..6bdbed3ee 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Friends in Low Places Upgrade Sheet 9fb3b9.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Friends in Low Places Upgrade Sheet 9fb3b9.ttslua @@ -1,3 +1,50 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/customizable/FriendsinLowPlacesUpgradeSheet") +end) +__bundle_register("playercards/customizable/FriendsinLowPlacesUpgradeSheet", function(require, _LOADED, __bundle_register, __bundle_modules) -- Customizable Cards: Friends in Low Places -- by Chr1Z information = { @@ -180,4 +227,6 @@ function createButtonsAndBoxes() value = box_data.value }) end -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Friends in Low Places Upgrade Sheet 9fb3b9.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Friends in Low Places Upgrade Sheet 9fb3b9.yaml index 9b6558f90..8398bb448 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Friends in Low Places Upgrade Sheet 9fb3b9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Friends in Low Places Upgrade Sheet 9fb3b9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 847100 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 76.25 posY: 15.19 posZ: 23.11 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Gloria Goldberg aa6282.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Gloria Goldberg aa6282.yaml index 23512ecc5..39accb557 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Gloria Goldberg aa6282.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Gloria Goldberg aa6282.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 591500 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 21.23 posY: 1.9 posZ: -18.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Grizzled Upgrade Sheet ef8f08.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Grizzled Upgrade Sheet ef8f08.ttslua index c582c2093..1f929c3df 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Grizzled Upgrade Sheet ef8f08.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Grizzled Upgrade Sheet ef8f08.ttslua @@ -1,3 +1,50 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/customizable/GrizzledUpgradeSheet") +end) +__bundle_register("playercards/customizable/GrizzledUpgradeSheet", function(require, _LOADED, __bundle_register, __bundle_modules) -- Customizable Cards: Grizzled -- by Chr1Z information = { @@ -178,4 +225,6 @@ function createButtonsAndBoxes() value = box_data.value }) end -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Grizzled Upgrade Sheet ef8f08.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Grizzled Upgrade Sheet ef8f08.yaml index 60de746c5..21e17ca2a 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Grizzled Upgrade Sheet ef8f08.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Grizzled Upgrade Sheet ef8f08.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 847800 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 75.73 posY: 9.19 posZ: 15.56 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Honed Instinct Upgrade Sheet ba0e34.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Honed Instinct Upgrade Sheet ba0e34.ttslua index ceb63520c..40d86c881 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Honed Instinct Upgrade Sheet ba0e34.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Honed Instinct Upgrade Sheet ba0e34.ttslua @@ -1,3 +1,50 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/customizable/HonedInstinctUpgradeSheet") +end) +__bundle_register("playercards/customizable/HonedInstinctUpgradeSheet", function(require, _LOADED, __bundle_register, __bundle_modules) -- Customizable Cards: Honed Instinct -- by Chr1Z information = { @@ -178,4 +225,6 @@ function createButtonsAndBoxes() value = box_data.value }) end -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Honed Instinct Upgrade Sheet ba0e34.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Honed Instinct Upgrade Sheet ba0e34.yaml index 0d0583744..671d2613c 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Honed Instinct Upgrade Sheet ba0e34.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Honed Instinct Upgrade Sheet ba0e34.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 847200 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 72.99 posY: 2.55 posZ: 16.19 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Hospital Debts bd323d.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Hospital Debts bd323d.yaml index ce5c32c97..d394aa1ca 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Hospital Debts bd323d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Hospital Debts bd323d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 541300 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 8.97 posY: 4.67 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Hunter's Armor Upgrade Sheet d2d01b.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Hunter's Armor Upgrade Sheet d2d01b.ttslua index 04f81ccce..2bdc80670 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Hunter's Armor Upgrade Sheet d2d01b.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Hunter's Armor Upgrade Sheet d2d01b.ttslua @@ -1,3 +1,47 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("playercards/customizable/HuntersArmorUpgradeSheet", function(require, _LOADED, __bundle_register, __bundle_modules) -- Customizable Cards: Hunter's Armor -- by Chr1Z information = { @@ -177,4 +221,9 @@ function createButtonsAndBoxes() value = box_data.value }) end -end \ No newline at end of file +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/customizable/HuntersArmorUpgradeSheet") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Hunter's Armor Upgrade Sheet d2d01b.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Hunter's Armor Upgrade Sheet d2d01b.yaml index 1ae67057a..c129852fb 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Hunter's Armor Upgrade Sheet d2d01b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Hunter's Armor Upgrade Sheet d2d01b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 846400 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 75.36 posY: 15.19 posZ: 24.46 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Hyperphysical Shotcaster Upgrade Sheet a4eec2.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Hyperphysical Shotcaster Upgrade Sheet a4eec2.ttslua index 60aa60eff..567ff4c6c 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Hyperphysical Shotcaster Upgrade Sheet a4eec2.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Hyperphysical Shotcaster Upgrade Sheet a4eec2.ttslua @@ -1,3 +1,50 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/customizable/HyperphysicalShotcasterUpgradeSheet") +end) +__bundle_register("playercards/customizable/HyperphysicalShotcasterUpgradeSheet", function(require, _LOADED, __bundle_register, __bundle_modules) -- Customizable Cards: Hyperphysical Shotcaster -- by Chr1Z information = { @@ -177,4 +224,6 @@ function createButtonsAndBoxes() value = box_data.value }) end -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Hyperphysical Shotcaster Upgrade Sheet a4eec2.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Hyperphysical Shotcaster Upgrade Sheet a4eec2.yaml index 0bb373831..a02db14d6 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Hyperphysical Shotcaster Upgrade Sheet a4eec2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Hyperphysical Shotcaster Upgrade Sheet a4eec2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 847900 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 76.5 posY: 9.19 posZ: 17.48 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Liber Omnium Finium 242a11.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Liber Omnium Finium 242a11.yaml index 8e601e0ff..251d271f0 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Liber Omnium Finium 242a11.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Liber Omnium Finium 242a11.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 273000 ColorDiffuse: @@ -44,11 +44,11 @@ Transform: posX: 8.99 posY: 3.81 posZ: -16.69 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Living Link Upgrade Sheet 19a05b.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Living Ink Upgrade Sheet 19a05b.ttslua similarity index 100% rename from unpacked/Bag All Player Cards 15bb07/CardCustom Living Link Upgrade Sheet 19a05b.ttslua rename to unpacked/Bag All Player Cards 15bb07/CardCustom Living Ink Upgrade Sheet 19a05b.ttslua diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Living Link Upgrade Sheet 19a05b.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Living Ink Upgrade Sheet 19a05b.yaml similarity index 81% rename from unpacked/Bag All Player Cards 15bb07/CardCustom Living Link Upgrade Sheet 19a05b.yaml rename to unpacked/Bag All Player Cards 15bb07/CardCustom Living Ink Upgrade Sheet 19a05b.yaml index 927d61426..b7d7147df 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Living Link Upgrade Sheet 19a05b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Living Ink Upgrade Sheet 19a05b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 847300 ColorDiffuse: @@ -28,11 +28,11 @@ HideWhenFaceDown: true IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false -LuaScript: !include 'CardCustom Living Link Upgrade Sheet 19a05b.ttslua' +LuaScript: !include 'CardCustom Living Ink Upgrade Sheet 19a05b.ttslua' LuaScriptState: '[[0,0,0,0,0,0,0,0,0,0],[]]' MeasureMovement: false Name: CardCustom -Nickname: Living Link Upgrade Sheet +Nickname: Living Ink Upgrade Sheet SidewaysCard: false Snap: true Sticky: true @@ -43,11 +43,11 @@ Transform: posX: -23.26 posY: 3.49 posZ: -44.19 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Makeshift Trap Upgrade Sheet 64dfce.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Makeshift Trap Upgrade Sheet 64dfce.ttslua index 629178386..2d7deb726 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Makeshift Trap Upgrade Sheet 64dfce.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Makeshift Trap Upgrade Sheet 64dfce.ttslua @@ -1,3 +1,50 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/customizable/MakeshiftTrapUpgradeSheet") +end) +__bundle_register("playercards/customizable/MakeshiftTrapUpgradeSheet", function(require, _LOADED, __bundle_register, __bundle_modules) -- Customizable Cards: Makeshift Trap -- by Chr1Z information = { @@ -177,4 +224,6 @@ function createButtonsAndBoxes() value = box_data.value }) end -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Makeshift Trap Upgrade Sheet 64dfce.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Makeshift Trap Upgrade Sheet 64dfce.yaml index 42190199a..ca2f0aa1f 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Makeshift Trap Upgrade Sheet 64dfce.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Makeshift Trap Upgrade Sheet 64dfce.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 847700 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 74.02 posY: 2.55 posZ: 18.18 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom On the Lam 9c4900.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom On the Lam 9c4900.yaml index 944d14e25..ac32102a7 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom On the Lam 9c4900.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom On the Lam 9c4900.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 541200 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.03 posY: 3.77 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Pocket Multi Tool Upgrade Sheet d706e7.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Pocket Multi Tool Upgrade Sheet d706e7.ttslua index 6593dc67d..68e6b7c8c 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Pocket Multi Tool Upgrade Sheet d706e7.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Pocket Multi Tool Upgrade Sheet d706e7.ttslua @@ -1,3 +1,47 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("playercards/customizable/PocketMultiToolUpgradeSheet", function(require, _LOADED, __bundle_register, __bundle_modules) -- Customizable Cards: Pocket Multi Tool -- by Chr1Z information = { @@ -177,4 +221,9 @@ function createButtonsAndBoxes() value = box_data.value }) end -end \ No newline at end of file +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/customizable/PocketMultiToolUpgradeSheet") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Pocket Multi Tool Upgrade Sheet d706e7.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Pocket Multi Tool Upgrade Sheet d706e7.yaml index 03ffb66d5..30c9cc4cf 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Pocket Multi Tool Upgrade Sheet d706e7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Pocket Multi Tool Upgrade Sheet d706e7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 847600 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 76.2 posY: 9.19 posZ: 17.36 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Power Word Upgrade Sheet 0d9481.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Power Word Upgrade Sheet 0d9481.ttslua index 0a16229e0..b14aa75e2 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Power Word Upgrade Sheet 0d9481.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Power Word Upgrade Sheet 0d9481.ttslua @@ -1,3 +1,50 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/customizable/PowerWordUpgradeSheet") +end) +__bundle_register("playercards/customizable/PowerWordUpgradeSheet", function(require, _LOADED, __bundle_register, __bundle_modules) -- Customizable Cards: Power Word -- by Chr1Z information = { @@ -178,4 +225,6 @@ function createButtonsAndBoxes() value = box_data.value }) end -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Power Word Upgrade Sheet 0d9481.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Power Word Upgrade Sheet 0d9481.yaml index a03c2db72..f0852fb7b 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Power Word Upgrade Sheet 0d9481.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Power Word Upgrade Sheet 0d9481.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 847500 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 75.63 posY: 9.19 posZ: 15.56 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Runic Axe Upgrade Sheet be427d.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Runic Axe Upgrade Sheet be427d.ttslua index 3cf7b028f..b6eee5e77 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Runic Axe Upgrade Sheet be427d.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Runic Axe Upgrade Sheet be427d.ttslua @@ -1,3 +1,50 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/customizable/RunicAxeUpgradeSheet") +end) +__bundle_register("playercards/customizable/RunicAxeUpgradeSheet", function(require, _LOADED, __bundle_register, __bundle_modules) -- Customizable Cards: Runic Axe -- by Chr1Z information = { @@ -178,4 +225,6 @@ function createButtonsAndBoxes() value = box_data.value }) end -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Runic Axe Upgrade Sheet be427d.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Runic Axe Upgrade Sheet be427d.yaml index 97db6b378..dd335fbe1 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Runic Axe Upgrade Sheet be427d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Runic Axe Upgrade Sheet be427d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 846500 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 77.21 posY: 15.19 posZ: 23.12 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Ruth Westmacott 782e0a.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Ruth Westmacott 782e0a.yaml index 16d52c35b..8af22097f 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Ruth Westmacott 782e0a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Ruth Westmacott 782e0a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 273100 ColorDiffuse: @@ -46,11 +46,11 @@ Transform: posX: 9.0 posY: 3.93 posZ: -16.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Skeptic (1) d2cd42.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Skeptic (1) d2cd42.yaml index fc9f12c0e..aae220fc5 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Skeptic (1) d2cd42.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Skeptic (1) d2cd42.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 550100 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 9.15 posY: 3.87 posZ: -16.73 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor Upgrade Sheet 5397a6.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor Upgrade Sheet 5397a6.ttslua index 89e2e868c..6ea30cd2c 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor Upgrade Sheet 5397a6.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor Upgrade Sheet 5397a6.ttslua @@ -1,3 +1,50 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/customizable/SummonedServitorUpgradeSheet") +end) +__bundle_register("playercards/customizable/SummonedServitorUpgradeSheet", function(require, _LOADED, __bundle_register, __bundle_modules) -- Customizable Cards: Summoned Servitor -- by Chr1Z information = { @@ -31,27 +78,39 @@ existingBoxes = { 1, 1, 1, 1, 1, 2, 3, 5 } inputBoxes = {} +-- Locations of the slot selectors +local SLOT_ICON_POSITIONS = { + arcane = { x = 0.160, z = 0.65}, + ally = { x = -0.073, z = 0.65} +} + +-- These match with ArkhamDB's way of storing the data in the dropdown menu +local slotIndices = {arcane = "1", ally = "0", none = ""} + +local selectedSlot = slotIndices.none + -- override 'marked boxes' for debugging ('all' or 'none') markDEBUG = "" -- save state when going into bags / decks function onDestroy() self.script_state = onSave() end -function onSave() return JSON.encode({ markedBoxes, inputValues }) end +function onSave() return JSON.encode({ markedBoxes, {selectedSlot} }) end -- Startup procedure function onLoad(saved_data) if saved_data ~= "" and markDEBUG == "" then local loaded_data = JSON.decode(saved_data) markedBoxes = loaded_data[1] - inputValues = loaded_data[2] + selectedSlot = loaded_data[2][1] else markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } - inputValues = { "", "", "", "", "" } + selectedSlot = "" end makeData() createButtonsAndBoxes() + updateSlotDisplay() self.addContextMenuItem("Reset Inputs", function() updateState() end) self.addContextMenuItem("Scale: normal", function() self.setScale({ 1, 1, 1 }) end) @@ -63,6 +122,7 @@ function updateState(markedBoxesNew) if markedBoxesNew then markedBoxes = markedBoxesNew end makeData() createButtonsAndBoxes() + updateSlotDisplay() end -- create Data @@ -178,4 +238,88 @@ function createButtonsAndBoxes() value = box_data.value }) end -end \ No newline at end of file + + makeSlotSelectionButtons() +end + +-- Creates the invisible buttons overlaying the slot words +function makeSlotSelectionButtons() + local buttonPositions = { x = -1 * SLOT_ICON_POSITIONS.arcane.x, y = 0.2, z = SLOT_ICON_POSITIONS.arcane.z } + local buttonData = { + click_function = "click_arcane", + function_owner = self, + position = buttonPositions, + height = 130, + width = 130, + scale = { 1, 1, 1 }, + color = { 0, 0, 0, 0 }, + } + self.createButton(buttonData) + buttonData.click_function = "click_ally" + buttonPositions.x = -1 * SLOT_ICON_POSITIONS.ally.x + buttonData.position = buttonPositions + self.createButton(buttonData) +end + +function click_arcane() + if selectedSlot == slotIndices.arcane then + selectedSlot = slotIndices.none + else + selectedSlot = slotIndices.arcane + end + updateSlotDisplay() +end + +function click_ally() + if selectedSlot == slotIndices.ally then + selectedSlot = slotIndices.none + else + selectedSlot = slotIndices.ally + end + updateSlotDisplay() +end + +-- Refresh the vector circles indicating a slot is selected. +function updateSlotDisplay() + local box = {} + local center = {} + center = SLOT_ICON_POSITIONS["arcane"] + local arcaneVecList = { + Vector(center.x + 0.12, 0.3, center.z + 0.05), + Vector(center.x - 0.12, 0.3, center.z + 0.05), + Vector(center.x - 0.12, 0.3, center.z - 0.05), + Vector(center.x + 0.12, 0.3, center.z - 0.05), + Vector(center.x + 0.12, 0.3, center.z + 0.05), + } + center = SLOT_ICON_POSITIONS["ally"] + local allyVecList = { + Vector(center.x + 0.07, 0.3, center.z + 0.05), + Vector(center.x - 0.07, 0.3, center.z + 0.05), + Vector(center.x - 0.07, 0.3, center.z - 0.05), + Vector(center.x + 0.07, 0.3, center.z - 0.05), + Vector(center.x + 0.07, 0.3, center.z + 0.05), + } + local arcaneVecColor = {0.5, 0.5, 0.5, 0.75} + local allyVecColor = {0.5, 0.5, 0.5, 0.75} + if selectedSlot == slotIndices.arcane then + arcaneVecColor = {0.597, 0.195, 0.796} + elseif selectedSlot == slotIndices.ally then + allyVecColor = {0.597, 0.195, 0.796} + end + + self.setVectorLines({ + { + points = arcaneVecList, + color = arcaneVecColor, + thickness = 0.02, + }, + { + points = allyVecList, + color = allyVecColor, + thickness = 0.02, + }, + + }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor Upgrade Sheet 5397a6.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor Upgrade Sheet 5397a6.yaml index 4b96dca99..e90094653 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor Upgrade Sheet 5397a6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor Upgrade Sheet 5397a6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 847400 ColorDiffuse: @@ -29,7 +29,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'CardCustom Summoned Servitor Upgrade Sheet 5397a6.ttslua' -LuaScriptState: '[[0,0,0,0,0,0,0,0,0,0],["","","","",""]]' +LuaScriptState: '[[0,0,0,0,0,0,0,0,0,0],[""]]' MeasureMovement: false Name: CardCustom Nickname: Summoned Servitor Upgrade Sheet @@ -43,11 +43,11 @@ Transform: posX: 76.59 posY: 15.19 posZ: 23.99 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor d187dd.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor d187dd.yaml index a124828b6..d730d6724 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor d187dd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor d187dd.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 803600 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 16.98 posY: 2.21 posZ: 55.09 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.6 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom The Necronomicon 5b2e10.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom The Necronomicon 5b2e10.yaml index e1ac4b9a9..6e18af333 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom The Necronomicon 5b2e10.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom The Necronomicon 5b2e10.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 539500 ColorDiffuse: @@ -45,11 +45,11 @@ Transform: posX: 30.12 posY: 2.31 posZ: -68.59 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom The Raven Quill Upgrade Sheet 23b96a.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom The Raven Quill Upgrade Sheet 23b96a.ttslua index 277c58457..ce8d43dda 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom The Raven Quill Upgrade Sheet 23b96a.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom The Raven Quill Upgrade Sheet 23b96a.ttslua @@ -1,3 +1,50 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/customizable/TheRavenQuillUpgradeSheet") +end) +__bundle_register("playercards/customizable/TheRavenQuillUpgradeSheet", function(require, _LOADED, __bundle_register, __bundle_modules) -- Customizable Cards: The Raven Quill -- by Chr1Z information = { @@ -180,4 +227,6 @@ function createButtonsAndBoxes() value = box_data.value }) end -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom The Raven Quill Upgrade Sheet 23b96a.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom The Raven Quill Upgrade Sheet 23b96a.yaml index 359709743..00000fc4b 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom The Raven Quill Upgrade Sheet 23b96a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom The Raven Quill Upgrade Sheet 23b96a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 847000 ColorDiffuse: @@ -43,11 +43,11 @@ Transform: posX: 78.8 posY: 3.33 posZ: 36.48 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag OptionPanel Source 830bd0.yaml b/unpacked/Bag OptionPanel Source 830bd0.yaml new file mode 100644 index 000000000..9fc68f196 --- /dev/null +++ b/unpacked/Bag OptionPanel Source 830bd0.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag OptionPanel Source 830bd0/Custom_Token Chaos Bag Manager 023240.yaml' +- !include 'Bag OptionPanel Source 830bd0/Custom_Token Token Arranger 022907.yaml' +- !include 'Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2.yaml' +- !include 'Bag OptionPanel Source 830bd0/Infinite_Bag Attachment Helper 7f4976.yaml' +- !include 'Bag OptionPanel Source 830bd0/Bag jaqenZann''s Navigation Overlay a8affa.yaml' +- !include 'Bag OptionPanel Source 830bd0/Custom_Tile Search Assistant 17aed0.yaml' +- !include 'Bag OptionPanel Source 830bd0/Custom_Tile Hand Helper 450688.yaml' +- !include 'Bag OptionPanel Source 830bd0/Custom_Token Displacement Tool 0f1374.yaml' +- !include 'Bag OptionPanel Source 830bd0/Custom_Token Clean Up Helper 26cf4b.yaml' +- !include 'Bag OptionPanel Source 830bd0/Custom_Token Custom Playmat Images 004fe7.yaml' +Description: Contains the objects that are spawnable via option panel +DragSelectable: true +GMNotes: '' +GUID: 830bd0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: OptionPanel Source +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 78.0 + posY: 1.01 + posZ: -4.6 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 0.75 + scaleY: 0.75 + scaleZ: 0.75 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa.yaml b/unpacked/Bag OptionPanel Source 830bd0/Bag jaqenZann's Navigation Overlay a8affa.yaml similarity index 74% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Bag jaqenZann's Navigation Overlay a8affa.yaml index 96b0c1534..662f748dd 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Bag jaqenZann's Navigation Overlay a8affa.yaml @@ -1,20 +1,21 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 0 + b: 0.0 g: 0.36652 r: 0.70588 ContainedObjects: - !include 'Bag jaqenZann''s Navigation Overlay a8affa/Notecard Navigation Overlay - 739ee5.yaml' -- !include 'Bag jaqenZann''s Navigation Overlay a8affa/Custom_Assetbundle cecc3e.yaml' + e5803c.yaml' +- !include 'Bag jaqenZann''s Navigation Overlay a8affa/Custom_Assetbundle Camera Placement + Helper cecc3e.yaml' - !include 'Bag jaqenZann''s Navigation Overlay a8affa/Custom_Tile jaqenZann''s Navigation - Overlay Tile 0ffbc5.yaml' + Overlay Tile 9f2481.yaml' Description: '' DragSelectable: true GMNotes: '' @@ -37,14 +38,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 30.32 - posY: 3.9 - posZ: -20.96 - rotX: 0 - rotY: 180 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + posX: 76.95 + posY: 36.39 + posZ: 4.12 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag OptionPanel Source 830bd0/Bag jaqenZann's Navigation Overlay a8affa/Custom_Assetbundle Camera Placement Helper cecc3e.ttslua b/unpacked/Bag OptionPanel Source 830bd0/Bag jaqenZann's Navigation Overlay a8affa/Custom_Assetbundle Camera Placement Helper cecc3e.ttslua new file mode 100644 index 000000000..dabe91abf --- /dev/null +++ b/unpacked/Bag OptionPanel Source 830bd0/Bag jaqenZann's Navigation Overlay a8affa/Custom_Assetbundle Camera Placement Helper cecc3e.ttslua @@ -0,0 +1,174 @@ +--Data tables used in button creation +ref_modifyPitchButtons = { + { offset = -0.37, func = function() click_modify(-1, 0) end }, + { offset = -1.11, func = function() click_modify(-5, 0) end }, + { offset = 0.37, func = function() click_modify(1, 0) end }, + { offset = 1.11, func = function() click_modify(5, 0) end }, +} +ref_modifyDistanceButtons = { + { offset = -0.37, func = function() click_modify(-1, 1) end }, + { offset = -1.11, func = function() click_modify(-5, 1) end }, + { offset = 0.37, func = function() click_modify(1, 1) end }, + { offset = 1.11, func = function() click_modify(5, 1) end }, +} + +--On-demand save function, remembers pitch and distance values +function updateSave() + self.script_state = JSON.encode({ pitch = pitch, distance = distance }) +end + +--Startup, loading memory +function onload(saved_data) + --Loads the tracking for if the game has started yet + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + pitch = loaded_data.pitch + distance = loaded_data.distance + else + pitch = 45 + distance = 30 + end + + createInputs() + createButtons() +end + +--Activated by finishing writing in the input box, updates save info +function input_entered(inputString, stillEditing, typeIndex) + if stillEditing == false then + --Check to avoid empty input strings + if tonumber(inputString) == nil then inputString = 0 end + --Update save data + if typeIndex == 0 then + pitch = inputString + else + distance = inputString + end + updateSave() + end +end + +--Activated by button, the -5 -1 +1 +5 buttons +function click_modify(amount, typeIndex) + if typeIndex == 0 then + pitch = pitch + amount + self.editInput({ index = typeIndex, value = pitch }) + else + distance = distance + amount + self.editInput({ index = typeIndex, value = distance }) + end + updateSave() +end + +--Activated by button, uses the data to move the camera +function click_setCamera(_, color) + --Check if there is another object to use instead of self + local targetObj = self + local nameGUID = string.sub(self.getName(), 1, 6) + if getObjectFromGUID(nameGUID) ~= nil then + targetObj = getObjectFromGUID(nameGUID) + end + + --Check if there is an offset to use instead of 180 + local offsetY = 180 + local offsetString = string.sub(self.getName(), 7) + if tonumber(string.match(offsetString, "%d+")) ~= nil then + offsetY = tonumber(string.match(offsetString, "%d+")) + end + + --Move camera into position around object + local pos = targetObj.getPosition() + local rot = targetObj.getRotation() + rot.y = rot.y + offsetY + Player[color].lookAt({ position = pos, pitch = pitch, yaw = rot.y, distance = distance }) + + --Send values to main tile + for _, v in ipairs(getObjects()) do + if v.getName() == "jaqenZann's Navigation Overlay Tile" then + v.call('updateEditCamera', { { pos.x, pos.y, pos.z }, tonumber(pitch), rot.y, tonumber(distance) }) + break + end + end +end + +--Button/Input creation +--Text boxes for number input +function createInputs() + local funcName = "inputFuncNamePitch" + local func = function(_, _, x, z) input_entered(x, z, 0) end + self.setVar(funcName, func) + self.createInput({ + input_function = funcName, + function_owner = self, + label = "input", + alignment = 2, + position = { -3.4, 0.35, -0.21 }, + rotation = { 0, 0, 0 }, + height = 420, + width = 1400, + font_size = 400, + color = { 57 / 255, 46 / 255, 40 / 255 }, + font_color = { 1, 1, 1 }, + value = pitch, + validation = 3 + }) + local funcName = "inputFuncNameDistance" + local func = function(_, _, x, z) input_entered(x, z, 1) end + self.setVar(funcName, func) + self.createInput({ + input_function = funcName, + function_owner = self, + label = "input", + alignment = 4, + position = { 3.4, 0.35, -0.21 }, + rotation = { 0, 0, 0 }, + height = 420, + width = 1400, + font_size = 400, + color = { 57 / 255, 46 / 255, 40 / 255 }, + font_color = { 1, 1, 1 }, + value = distance, + validation = 3 + }) +end + +--Center button and -5 - +5 buttons +function createButtons() + self.createButton({ + click_function = "click_setCamera", + function_owner = self, + position = { 0, 0.4, 0 }, + height = 900, + width = 900, + color = { 1, 1, 1, 0 }, + tooltip = "Set camera to this angle" + }) + + for i, ref in ipairs(ref_modifyPitchButtons) do + local funcName = "pitchModifyFunction_" .. i + self.setVar(funcName, ref.func) + local pos = { -3.4 + ref.offset, 0.3, 0.6 } + self.createButton({ + click_function = funcName, + function_owner = self, + position = pos, + height = 240, + width = 320, + color = { 1, 1, 1, 0 } + }) + end + + for i, ref in ipairs(ref_modifyDistanceButtons) do + local funcName = "distanceModifyFunction_" .. i + self.setVar(funcName, ref.func) + local pos = { 3.4 + ref.offset, 0.3, 0.6 } + self.createButton({ + click_function = funcName, + function_owner = self, + position = pos, + height = 240, + width = 320, + color = { 1, 1, 1, 0 } + }) + end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Assetbundle cecc3e.yaml b/unpacked/Bag OptionPanel Source 830bd0/Bag jaqenZann's Navigation Overlay a8affa/Custom_Assetbundle Camera Placement Helper cecc3e.yaml similarity index 80% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Assetbundle cecc3e.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Bag jaqenZann's Navigation Overlay a8affa/Custom_Assetbundle Camera Placement Helper cecc3e.yaml index d3ffc377f..2eb5e1a50 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Assetbundle cecc3e.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Bag jaqenZann's Navigation Overlay a8affa/Custom_Assetbundle Camera Placement Helper cecc3e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.18382 @@ -39,21 +39,21 @@ HideWhenFaceDown: false IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false -LuaScript: !include 'Custom_Assetbundle cecc3e.ttslua' -LuaScriptState: '{"distance":15,"pitch":75}' +LuaScript: !include 'Custom_Assetbundle Camera Placement Helper cecc3e.ttslua' +LuaScriptState: '' MeasureMovement: false Name: Custom_Assetbundle -Nickname: '' +Nickname: Camera Placement Helper Snap: false Sticky: true Tooltip: true Transform: - posX: 18.15 - posY: 3.5 - posZ: -26.63 - rotX: 0 - rotY: 270 - rotZ: 0 + posX: -12.66 + posY: 3.54 + posZ: 28.57 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Bag OptionPanel Source 830bd0/Bag jaqenZann's Navigation Overlay a8affa/Custom_Tile jaqenZann's Navigation Overlay Tile 9f2481.ttslua b/unpacked/Bag OptionPanel Source 830bd0/Bag jaqenZann's Navigation Overlay a8affa/Custom_Tile jaqenZann's Navigation Overlay Tile 9f2481.ttslua new file mode 100644 index 000000000..df8db43ca --- /dev/null +++ b/unpacked/Bag OptionPanel Source 830bd0/Bag jaqenZann's Navigation Overlay a8affa/Custom_Tile jaqenZann's Navigation Overlay Tile 9f2481.ttslua @@ -0,0 +1,845 @@ +local buttonCount = 20 +local cameraCount = 18 + +function onLoad(saved_data) + self.createButton({ + label = "", + tooltip = "Display full overlay", + click_function = "displayFull", + function_owner = self, + position = { 0.0, 0.1, -0.63 }, + height = 70, + width = 700, + scale = { x = 1, y = 1, z = 1 }, + color = { 1, 0, 0, 0 } + }) + self.createButton({ + label = "", + tooltip = "Display only play area", + click_function = "displayPlayArea", + function_owner = self, + position = { 0.0, 0.1, -0.39 }, + height = 70, + width = 700, + scale = { x = 1, y = 1, z = 1 }, + color = { 1, 0, 0, 0 } + }) + self.createButton({ + label = "", + tooltip = "Close overlay", + click_function = "closeOverlay", + function_owner = self, + position = { 0.0, 0.1, -0.16 }, + height = 70, + width = 700, + scale = { x = 1, y = 1, z = 1 }, + color = { 1, 0, 0, 0 } + }) + self.createButton({ + label = "", + tooltip = "Modify a camera position", + click_function = "beginSetCamera", + function_owner = self, + position = { 0.0, 0.1, 0.19 }, + height = 70, + width = 700, + scale = { x = 1, y = 1, z = 1 }, + color = { 1, 0, 0, 0 } + }) + self.createButton({ + label = "", + tooltip = "Claim a color (you will switch to this color when clicking in the overlay)", + click_function = "beginClaimColor", + function_owner = self, + position = { -0.22, 0.1, 0.42 }, + height = 70, + width = 475, + scale = { x = 1, y = 1, z = 1 }, + color = { 1, 0, 0, 0 } + }) + self.createButton({ + label = "", + tooltip = "Reset all color claims", + click_function = "resetClaimColors", + function_owner = self, + position = { 0.48, 0.1, 0.42 }, + height = 70, + width = 230, + scale = { x = 1, y = 1, z = 1 }, + color = { 1, 0, 0, 0 } + }) + self.createButton({ + label = "", + tooltip = "Reset camera positions to default", + click_function = "resetCameras", + function_owner = self, + position = { 0.0, 0.1, 0.78 }, + height = 70, + width = 700, + scale = { x = 1, y = 1, z = 1 }, + color = { 1, 0, 0, 0 } + }) + + defaultCameraParams = { + { position = { -1.626, -2.5, 0 }, pitch = 74, yaw = 90, distance = 17.844 }, -- 1. ActAgenda + { position = { -27.822, -2.5, 0.424 }, pitch = 74, yaw = 90, distance = -1 }, -- 2. Map + { position = { -31.592, -2.5, 26.392 }, pitch = 74, yaw = 180, distance = -1 }, -- 3. Green playmat + { position = { -55.026, -2.5, 12.052 }, pitch = 74, yaw = 90, distance = -1 }, -- 4. White playmat + { position = { -55.026, -2.5, -11.479 }, pitch = 74, yaw = 90, distance = -1 }, -- 5. Orange playmat + { position = { -31.592, -2.5, -26.392 }, pitch = 74, yaw = 0, distance = -1 }, -- 6. Red playmat + { position = { -3.029, 1.652, 24.296 }, pitch = 74, yaw = 90, distance = 16 }, -- 7. Victory / SetAside + { position = { -2.936, 1.552, -26.757 }, pitch = 74, yaw = 90, distance = 16 }, -- 8. Guide + { position = { -11.833, 1.491, -0.145 }, pitch = 74, yaw = 90, distance = 10 }, -- 9. Player count + { position = { -48.352, 1.552, -0.055 }, pitch = 74, yaw = 90, distance = 10 }, -- 10. Bless/Curse + { position = { 12.560, 1.912, 0.458 }, pitch = 74, yaw = 90, distance = 35 }, -- 11. Scenarios + { position = { 57.835, 1.552, 75.385 }, pitch = 74, yaw = 90, distance = 22 }, -- 12. Player card panel + { position = { 60.377, 1.552, 55.941 }, pitch = 74, yaw = 90, distance = 10 }, -- 13. Card search panel + { position = { 27.482, 1.480, 71.057 }, pitch = 74, yaw = 90, distance = 35 }, -- 14. Player card area + { position = { -19.481, 1.552, 70.880 }, pitch = 74, yaw = 90, distance = 22 }, -- 15. Deck builder + { position = { -52.918, 1.478, 70.899 }, pitch = 74, yaw = 90, distance = 42 }, -- 16. Rules area + { position = { 24.551, 2.222, -71.284 }, pitch = 60, yaw = 90, distance = 60 }, -- 17. Cycle area + { position = { -59.077, 1.462, -85.472 }, pitch = 74, yaw = 90, distance = 27 } -- 18. Additions + } + + fullButtonData = { + { id = "1", width = "84", height = "33", offsetX = "1", offsetY = "2" }, -- Act/Agenda + { id = "2", width = "78", height = "69", offsetX = "1", offsetY = "-62" }, -- Map + { id = "3", width = "36", height = "70", offsetX = "-62", offsetY = "-66" }, -- Green + { id = "4", width = "70", height = "36", offsetX = "-36", offsetY = "-126" }, -- White + { id = "5", width = "70", height = "36", offsetX = "39", offsetY = "-126" }, -- Orange + { id = "6", width = "36", height = "70", offsetX = "64", offsetY = "-66" }, -- Red + { id = "7", width = "38", height = "38", offsetX = "-64", offsetY = "-3" }, -- Victory + { id = "8", width = "40", height = "40", offsetX = "66", offsetY = "-3" }, -- Guide + { id = "9", width = "56", height = "16", offsetX = "1", offsetY = "-20" }, -- Player count + { id = "10", width = "36", height = "16", offsetX = "1", offsetY = "-102" }, -- Bless/Curse + { id = "11", width = "168", height = "56", offsetX = "1", offsetY = "47" }, -- Scenarios + { id = "12", width = "52", height = "53", offsetX = "-154", offsetY = "134" }, -- Player card panel + { id = "13", width = "22", height = "22", offsetX = "-116", offsetY = "132" }, -- Search card panel + { id = "14", width = "120", height = "75", offsetX = "-152", offsetY = "70" }, -- Player card display + { id = "15", width = "40", height = "54", offsetX = "-150", offsetY = "-38" }, -- Deck builder + { id = "16", width = "104", height = "84", offsetX = "-154", offsetY = "-114" }, -- Rules area + { id = "17", width = "100", height = "170", offsetX = "152", offsetY = "72" }, -- Cycle area + { id = "18", width = "56", height = "60", offsetX = "182", offsetY = "-124" }, -- Additions + { id = "19", width = "20", height = "20", offsetX = "-8", offsetY = "150" }, -- Shrink + { id = "20", width = "20", height = "20", offsetX = "12", offsetY = "150" } -- Close + } + + playButtonData = { + { id = "1", width = "80", height = "33", offsetX = "0", offsetY = "55" }, + { id = "2", width = "78", height = "70", offsetX = "0", offsetY = "-8" }, + { id = "3", width = "35", height = "66", offsetX = "-65", offsetY = "-10" }, + { id = "4", width = "68", height = "32", offsetX = "-36", offsetY = "-71" }, + { id = "5", width = "68", height = "32", offsetX = "36", offsetY = "-71" }, + { id = "6", width = "35", height = "66", offsetX = "65", offsetY = "-10" }, + { id = "7", width = "38", height = "38", offsetX = "-66", offsetY = "52" }, + { id = "8", width = "38", height = "38", offsetX = "66", offsetY = "52" }, + { id = "9", width = "50", height = "12", offsetX = "0", offsetY = "33" }, + { id = "10", width = "32", height = "12", offsetX = "0", offsetY = "-48" }, + { id = "19", width = "20", height = "20", offsetX = "-10", offsetY = "80" }, + { id = "20", width = "20", height = "20", offsetX = "10", offsetY = "80" } + } + + playermatData = { + { + guid = '383d8b', + origin = { x = -25.00, y = 0, z = 26.20 }, + scale = { x = 31.5, y = 5.10, z = 14.59 }, + orientation = { x = 0, y = 0, z = 0 }, + minX = -44.43, + maxX = -17.44, + minZ = 20.17, + maxZ = 32.97, + xOffset = -0.07, + zOffset = 0.00, + claims = { true, false, false, false } + }, + { + guid = '8b081b', + origin = { x = -54.42, y = 0, z = 20.96 }, + scale = { x = 36.63, y = 5.10, z = 14.59 }, + orientation = { x = 0, y = 270, z = 0 }, + minX = -61.4, + maxX = -48.6, + minZ = -2.39, + maxZ = 24.53, + xOffset = 0.07, + zOffset = 0.03, + claims = { false, true, false, false } + }, + { + guid = 'bd0ff4', + origin = { x = -54.42, y = 0, z = -20.96 }, + scale = { x = 36.63, y = 5.10, z = 14.59 }, + orientation = { x = 0, y = 270, z = 0 }, + minX = -61.4, + maxX = -48.6, + minZ = -24.53, + maxZ = 2.39, + xOffset = 0.07, + zOffset = 0.02, + claims = { false, false, true, false } + }, + { + guid = '0840d5', + origin = { x = -25.00, y = 0, z = -26.60 }, + scale = { x = 31.5, y = 5.10, z = 14.59 }, + orientation = { x = 0, y = 180, z = 0 }, + minX = -44.43, + maxX = -17.44, + minZ = -32.97, + maxZ = -20.17, + xOffset = 0.07, + zOffset = -0.06, + claims = { false, false, false, true } + } + } + + editing = false + claiming = false + selectedEditButton = -1 + editPos = { 0, 0, 0 } + editPitch = 0 + editYaw = 0 + editDistance = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + cameraParams = loaded_data.cameras + fullVisibility = loaded_data.fullVis + playVisibility = loaded_data.playVis + + for i = 1, 4 do + playermatData[i].claims = loaded_data.claims[i] + end + else + cameraParams = { {}, {}, {}, {} } + + for cam = 1, 4 do + cameraParams[cam] = {} + + for i = 1, cameraCount do + cameraParams[cam][i] = {} + cameraParams[cam][i].position = defaultCameraParams[i].position + cameraParams[cam][i].pitch = defaultCameraParams[i].pitch + cameraParams[cam][i].yaw = defaultCameraParams[i].yaw + cameraParams[cam][i].distance = defaultCameraParams[i].distance + end + end + + fullVisibility = { false, false, false, false } + playVisibility = { false, false, false, false } + end + + resetOverlay() +end + +function onSave() + local allclaims = {} + + for i = 1, 4 do + table.insert(allclaims, playermatData[i].claims) + end + + return JSON.encode({ + cameras = cameraParams, + fullVis = fullVisibility, + playVis = playVisibility, + claims = allclaims + }) +end + +function displayFull(object, color) + local playerCount = getPlayerCount() + local colors + + if playerCount == 0 then + return + elseif playerCount == 1 then + colors = { 1, 2, 3, 4 } + else + colors = { getIndexForPlayerColor(color) } + end + + for i, v in ipairs(colors) do + if v > 0 then + fullVisibility[v] = true + playVisibility[v] = false + end + end + + resetOverlay() +end + +function displayPlayArea(object, color) + local playerCount = getPlayerCount() + local colors + + if playerCount == 0 then + return + elseif playerCount == 1 then + colors = { 1, 2, 3, 4 } + else + colors = { getIndexForPlayerColor(color) } + end + + for _, v in ipairs(colors) do + if v > 0 then + fullVisibility[v] = false + playVisibility[v] = true + end + end + + resetOverlay() +end + +function resetCameras(object, color) + local playerCount = getPlayerCount() + local colors + + if playerCount == 0 then + return + elseif playerCount == 1 then + colors = { 1, 2, 3, 4 } + else + colors = { getIndexForPlayerColor(color) } + end + + for iv, v in ipairs(colors) do + if v > 0 then + for i = 1, cameraCount do + cameraParams[v][i].position = defaultCameraParams[i].position + cameraParams[v][i].pitch = defaultCameraParams[i].pitch + cameraParams[v][i].yaw = defaultCameraParams[i].yaw + cameraParams[v][i].distance = defaultCameraParams[i].distance + end + end + end +end + +function closeOverlay(object, color) + local playerCount = getPlayerCount() + local colors + + editing = false + claiming = false + + if playerCount == 0 then + return + elseif playerCount == 1 then + colors = { 1, 2, 3, 4 } + else + colors = { getIndexForPlayerColor(color) } + end + + for _, v in ipairs(colors) do + if v > 0 then + fullVisibility[v] = false + playVisibility[v] = false + end + end + + resetOverlay() +end + +function resizeOverlay(object, color) + local playerCount = getPlayerCount() + local colors + + if playerCount == 0 then + return + elseif playerCount == 1 then + colors = { 1, 2, 3, 4 } + else + colors = { getIndexForPlayerColor(color) } + end + + for _, v in ipairs(colors) do + if v > 0 then + local full = fullVisibility[v] + fullVisibility[v] = not full + playVisibility[v] = full + end + end + + resetOverlay() +end + +function resetOverlay() + local guid = self.getGUID() + local color + local panel + local existingXml = UI.getXml() + local openingXml = '' + + -- try to only remove our panels + for p = 1, 2 do + i, j = string.find(existingXml, ' + ]] + + for _, d in ipairs(data) do + local buttonID = tonumber(d.id) + + if editing and buttonID < 19 then + if selectedEditButton < 0 then + color = "rgba(1,1,1,1)" + elseif buttonID == selectedEditButton then + color = "rgba(0,1,0,1)" + else + color = "rgba(1,0,0,1)" + end + elseif claiming and buttonID < 19 then + if buttonID >= 3 and buttonID <= 6 then + color = "rgba(1,1,1,1)" + else + color = "rgba(1,0,0,1)" + end + else + color = "rgba(0,1,0,0)" + end + + xml = xml .. [[ + ]] + end + + xml = xml .. [[ ]] + end + + if string.len(playColors) > 0 then + data = playButtonData + + xml = xml .. [[ + + ]] + + for _, d in ipairs(data) do + local buttonID = tonumber(d.id) + + if editing and buttonID < 19 then + if selectedEditButton < 0 then + color = "rgba(1,1,1,1)" + elseif buttonID == selectedEditButton then + color = "rgba(0,1,0,1)" + else + color = "rgba(1,0,0,1)" + end + elseif claiming and buttonID < 19 then + if buttonID >= 3 and buttonID <= 6 then + color = "rgba(1,1,1,1)" + else + color = "rgba(1,0,0,1)" + end + else + color = "rgba(0,1,0,0)" + end + + xml = xml .. [[ + ]] + end + + xml = xml .. [[ ]] + end + + local existingAssets = UI.getCustomAssets() + local largeOverlay = nil + local smallOverlay = nil + + for _, v in pairs(existingAssets) do + for _, vv in pairs(v) do + if vv == 'OverlayLarge' then + largeOverlay = v + end + if vv == 'OverlaySmall' then + smallOverlay = v + end + end + end + + local largeURL = 'http://cloud-3.steamusercontent.com/ugc/2021591230441678995/7B413A821136969D8723687A2AD66773B3F8FEED/' + local smallURL = 'http://cloud-3.steamusercontent.com/ugc/2021591230447630077/18C86248B9BDAF1DE01B67791439A39EE4F97B60/' + + if largeOverlay == nil then + largeOverlay = { name = 'OverlayLarge', url = largeURL } + table.insert(existingAssets, largeOverlay) + else + largeOverlay.url = largeURL + end + + if smallOverlay == nil then + smallOverlay = { name = 'OverlaySmall', url = smallURL } + table.insert(existingAssets, smallOverlay) + else + smallOverlay.url = smallURL + end + + UI.setXml(xml, existingAssets) +end + +function buttonClicked(player, _, idValue) + local buttonID = tonumber(idValue) + + if buttonID == 19 then + resizeOverlay(nil, player.color) + return + elseif buttonID == 20 then + closeOverlay(nil, player.color) + return + end + + if editing then + if selectedEditButton < 0 then + selectedEditButton = buttonID + else + if buttonID == selectedEditButton and editDistance > 0 then + local playerCount = getPlayerCount() + local colors + + if playerCount == 1 then + colors = { 1, 2, 3, 4 } + else + colors = { getIndexForPlayerColor(player.color) } + end + + for i, v in ipairs(colors) do + cameraParams[v][selectedEditButton].position = editPos + cameraParams[v][selectedEditButton].pitch = editPitch + cameraParams[v][selectedEditButton].yaw = editYaw + cameraParams[v][selectedEditButton].distance = editDistance + end + end + + editing = false + selectedEditButton = -1 + end + + resetOverlay() + elseif claiming then + if buttonID >= 3 and buttonID <= 6 then + local colorID = buttonID - 2 + local playerIndex = getIndexForPlayerColor(player.color) + + -- if we haven't claimed it, break all earlier claims + if playermatData[playerIndex].claims[colorID] == false then + for i = 1, 4 do + if i ~= colorID then + playermatData[i].claims[colorID] = false + playermatData[colorID].claims[i] = false + end + end + end + + for i = 1, 4 do + if playermatData[playerIndex].claims[i] then + playermatData[i].claims[colorID] = true + playermatData[colorID].claims[i] = true + end + end + + fullVisibility[colorID] = fullVisibility[playerIndex] + playVisibility[colorID] = playVisibility[playerIndex] + end + + claiming = false + resetOverlay() + else + loadCamera(player, _, idValue) + end +end + +function loadCamera(player, _, idValue) + local index = tonumber(idValue) + local playerColor = player.color + local playerIndex = getIndexForPlayerColor(playerColor) + + -- only do map zooming if the camera hasn't been specially set by user + if index == 2 and cameraParams[playerIndex][index].distance <= 0.0 then + local mapObjects = Physics.cast({ + origin = { x = -29.2, y = 0, z = 0.0 }, + direction = { x = 0, y = 1, z = 0 }, + type = 3, + size = { x = 36, y = 5, z = 31.4 }, + orientation = { x = 0, y = 90, z = 0 } + }) + + local minX = 100 + local maxX = -100 + local minZ = 100 + local maxZ = -100 + + for _, v in pairs(mapObjects) do + local obj = v.hit_object + + if obj.type == 'Card' or obj.type == 'Infinite' then + local bounds = obj.getBounds() + local x1 = bounds['center'][1] - bounds['size'][1] / 2 + local x2 = bounds['center'][1] + bounds['size'][1] / 2 + local z1 = bounds['center'][3] - bounds['size'][3] / 2 + local z2 = bounds['center'][3] + bounds['size'][3] / 2 + + minX = math.min(x1, minX) + maxX = math.max(x2, maxX) + minZ = math.min(z1, minZ) + maxZ = math.max(z2, maxZ) + end + end + + if minX < 100 then + local dx = maxX - minX + local dz = (maxZ - minZ) / (1.6) -- screen ratio * 1.2 (for my macbook pro, no idea how to generalize this) + local centerX = (minX + maxX) / 2 -- offset is to move it a bit up, so the cards don't block anything + local centerZ = (minZ + maxZ) / 2 + local scale = math.max(dx, dz) + + -- regression line from the following data points, seems linear + -- rows 1 scale 4.5 d 12 + -- rows 2 scale 11 d 16 + -- rows 3 scale 14.5 d 19.6 + -- rows 4 scale 19.6 d 25 + -- rows 5 scale 23.25 d 28 + -- rows 6 scale 30.8 d 34 + + -- modified by testing + local d = 0.96 * scale + 5 + player.lookAt({ position = { centerX, 0, centerZ }, pitch = 74, yaw = 90, distance = d }) + else + player.lookAt({ position = { -30.667, 0, 0 }, pitch = 74, yaw = 90, distance = 32 }) + end + elseif index >= 3 and index <= 6 then + local newMatIndex = index - 2 -- mat index 1 - 4 + local newMatColor = getPlayerColorForIndex(newMatIndex) + + if newMatColor ~= nil then + local playerCount = getPlayerCount() + + if playerCount <= 1 or playermatData[playerIndex].claims[newMatIndex] then + player.changeColor(newMatColor) + end + end + + if cameraParams[newMatIndex][index].distance <= 0.0 then + local matObjects = Physics.cast({ + origin = playermatData[newMatIndex].origin, + direction = { x = 0, y = 1, z = 0 }, + type = 3, + size = playermatData[newMatIndex].scale, + orientation = playermatData[newMatIndex].orientation + }) + + local minX = playermatData[newMatIndex].minX + local maxX = playermatData[newMatIndex].maxX + local minZ = playermatData[newMatIndex].minZ + local maxZ = playermatData[newMatIndex].maxZ + + for _, v in pairs(matObjects) do + local obj = v.hit_object + if obj.type == 'Card' or obj.type == 'Infinite' then + local bounds = obj.getBounds() + local x1 = bounds['center'][1] - bounds['size'][1] / 2 + local x2 = bounds['center'][1] + bounds['size'][1] / 2 + local z1 = bounds['center'][3] - bounds['size'][3] / 2 + local z2 = bounds['center'][3] + bounds['size'][3] / 2 + + minX = math.min(x1, minX) + maxX = math.max(x2, maxX) + minZ = math.min(z1, minZ) + maxZ = math.max(z2, maxZ) + end + end + + local dx, dz, centerX, centerZ, yaw + + -- White/Orange + if index > 3 and index < 6 then + dx = maxX - minX + dz = (maxZ - minZ) / 1.6 -- screen ratio * 1.2 (for my macbook pro, no idea how to generalize this) + yaw = 90 + + -- offset is to move it a bit up and right, so the cards/toolbar don't block anything + centerX = (minX + maxX) / 2 - dx * playermatData[newMatIndex].xOffset + centerZ = (minZ + maxZ) / 2 + dz * playermatData[newMatIndex].zOffset + -- Green/Red + else + dx = (maxX - minX) / 1.6 + dz = maxZ - minZ + yaw = playermatData[newMatIndex].orientation.y + 180 + centerX = (minX + maxX) / 2 + dx * playermatData[newMatIndex].zOffset + centerZ = (minZ + maxZ) / 2 - dz * playermatData[newMatIndex].xOffset + end + + local scale = math.max(dx, dz) + local d = 0.64 * scale + 7 + + -- need to wait if the player color changed + Wait.frames(function() + player.lookAt({ position = { centerX, 0, centerZ }, pitch = 75.823, yaw = yaw, distance = d }) + end, 2) + else + Wait.frames(function() + player.lookAt(cameraParams[newMatIndex][index]) + end, 2) + end + else + player.lookAt(cameraParams[playerIndex][index]) + end +end + +function beginSetCamera(object, color) + if getPlayerCount() == 0 then + return + elseif getIndexForPlayerColor(color) < 0 then + return + end + + editing = true + resetOverlay() +end + +function updateEditCamera(params) + editPos = params[1] + editPitch = params[2] + editYaw = params[3] + editDistance = params[4] +end + +function beginClaimColor(object, color) + if getPlayerCount() == 0 then + return + elseif getIndexForPlayerColor(color) < 0 then + return + end + + claiming = true + resetOverlay() +end + +function resetClaimColors(object, color) + if getPlayerCount() == 0 then + return + elseif getIndexForPlayerColor(color) < 0 then + return + end + + for c1 = 1, 4 do + for c2 = 1, 4 do + if c1 == c2 then + playermatData[c1].claims[c2] = true + else + playermatData[c1].claims[c2] = false + end + end + end +end + +function getPlayerCount() + local playerCount = 0 + local playerColors = {} + + for i = 1, 4 do + local guid = playermatData[i].guid + local mat = getObjectFromGUID(guid) + local color = mat.getVar('playerColor') + playerColors[i] = color + end + + for _, v in ipairs(getSeatedPlayers()) do + for _, vv in ipairs(playerColors) do + if v == vv then + playerCount = playerCount + 1 + end + end + end + + return playerCount +end + +function getPlayerColorForIndex(index) + if index < 0 or index > 4 then + return nil + end + + local guid = playermatData[index]['guid'] + if guid ~= nil then + local mat = getObjectFromGUID(guid) + return mat.getVar("playerColor") + end +end + +function getIndexForPlayerColor(color) + for i = 1, 4 do + local mat = getObjectFromGUID(playermatData[i].guid) + if mat ~= nil then + if mat.getVar('playerColor') == color then + return i + end + end + end + + return -1 +end \ No newline at end of file diff --git a/unpacked/Bag OptionPanel Source 830bd0/Bag jaqenZann's Navigation Overlay a8affa/Custom_Tile jaqenZann's Navigation Overlay Tile 9f2481.yaml b/unpacked/Bag OptionPanel Source 830bd0/Bag jaqenZann's Navigation Overlay a8affa/Custom_Tile jaqenZann's Navigation Overlay Tile 9f2481.yaml new file mode 100644 index 000000000..846974ff4 --- /dev/null +++ b/unpacked/Bag OptionPanel Source 830bd0/Bag jaqenZann's Navigation Overlay a8affa/Custom_Tile jaqenZann's Navigation Overlay Tile 9f2481.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/2021591230456185506/15AF790F0622B57C1F629DB3A8C38F2A99D0EB1B/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/2021591230456185506/15AF790F0622B57C1F629DB3A8C38F2A99D0EB1B/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9f2481 +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Tile jaqenZann''s Navigation Overlay Tile 9f2481.ttslua' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: jaqenZann's Navigation Overlay Tile +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -12.93 + posY: 3.56 + posZ: 28.57 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 3.0 + scaleY: 1.0 + scaleZ: 3.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Notecard Navigation Overlay 739ee5.yaml b/unpacked/Bag OptionPanel Source 830bd0/Bag jaqenZann's Navigation Overlay a8affa/Notecard Navigation Overlay e5803c.yaml similarity index 61% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Notecard Navigation Overlay 739ee5.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Bag jaqenZann's Navigation Overlay a8affa/Notecard Navigation Overlay e5803c.yaml index 05d7de518..d059713a3 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Notecard Navigation Overlay 739ee5.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Bag jaqenZann's Navigation Overlay a8affa/Notecard Navigation Overlay e5803c.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 Description: 'Controls a movable overlay allowing for quick movement to various parts of the table. There should only be one tile per table. @@ -17,7 +17,7 @@ Description: 'Controls a movable overlay allowing for quick movement to various Play Area: Displays a much smaller overlay only covering the play area.' DragSelectable: true GMNotes: '' -GUID: 739ee5 +GUID: e5803c Grid: true GridProjection: false Hands: false @@ -34,14 +34,14 @@ Snap: true States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 Description: 'If there is only 1 player, clicking a button to move to a playmat will change the player''s color to that playmat''s color. Changes to camera settings will apply to all colors. @@ -68,27 +68,27 @@ States: Sticky: true Tooltip: true Transform: - posX: 6.08392429 - posY: 1.53338218 - posZ: -32.7559 - rotX: 0.07987893 - rotY: 89.9998 - rotZ: 359.983124 + posX: -69.47138 + posY: 1.551499 + posZ: -50.97995 + rotX: -6.706855e-08 + rotY: 90.00628 + rotZ: 3.98763333e-09 scaleX: 0.7 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.7 Value: 0 XmlUI: '' '3': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 Description: 'Edit Camera: TTS does not make accessing camera settings easy, so this is done using a modified version of MrStump''s Camera Placement Helper. @@ -115,27 +115,27 @@ States: Sticky: true Tooltip: true Transform: - posX: 6.083923 - posY: 1.53338218 - posZ: -32.75589 - rotX: 0.07987937 - rotY: 89.99992 - rotZ: 359.983124 + posX: -69.47138 + posY: 1.55149889 + posZ: -50.97995 + rotX: -4.66551136e-08 + rotY: 90.00628 + rotZ: 9.637148e-09 scaleX: 0.7 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.7 Value: 0 XmlUI: '' '4': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 Description: '1. Click "Edit Camera" 2. Click a button in the overlay, it will turn green. @@ -164,28 +164,76 @@ States: Sticky: true Tooltip: true Transform: - posX: 6.08392334 - posY: 1.53338218 - posZ: -32.7558937 - rotX: 0.07987977 - rotY: 89.9998856 - rotZ: 359.983124 + posX: -69.47138 + posY: 1.55149889 + posZ: -50.97995 + rotX: -1.21061817e-07 + rotY: 90.00628 + rotZ: 9.462388e-08 scaleX: 0.7 - scaleY: 1 + scaleY: 1.0 + scaleZ: 0.7 + Value: 0 + XmlUI: '' + '5': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + Description: 'Claim Color: This is useful if you are running a game where one + person controls 2 colors, and one controls the other two, and you wish to have + your player color switch when you click White or Red, but not if you click Green + or Orange. + + + When you click Claim Color, the playmat areas of the overlay will turn white. Clicking + one will allow you to switch to that color with the overlay. ' + DragSelectable: true + GMNotes: '' + GUID: '516664' + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Notecard + Nickname: 'Navigation Overlay: Claim Colors' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.4611664 + posY: 1.59 + posZ: -1.54776835 + rotX: 5.3783765e-08 + rotY: 90.00012 + rotZ: 8.552772e-08 + scaleX: 0.7 + scaleY: 1.0 scaleZ: 0.7 Value: 0 XmlUI: '' Sticky: true Tooltip: true Transform: - posX: 18.45 - posY: 3.6 - posZ: -25.86 - rotX: 0 - rotY: 90 - rotZ: 0 + posX: -37.69 + posY: 3.67 + posZ: 9.23 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 scaleX: 0.7 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.7 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2.ttslua b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2.ttslua rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2.ttslua diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2.yaml similarity index 94% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2.yaml index cedd5dffd..5846d4d33 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - !include 'Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 03 The Path to Carcosa 06a742.yaml' @@ -47,13 +47,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/00%20CYOA.jpg?raw=true MaterialIndex: 3 MeshURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true @@ -84,11 +84,11 @@ Transform: posX: 21.01 posY: 3.16 posZ: -26.84 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 01 Night of the Zealot 56a91d.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 01 Night of the Zealot 56a91d.yaml similarity index 81% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 01 Night of the Zealot 56a91d.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 01 Night of the Zealot 56a91d.yaml index 10bb9eb58..29b1edb3c 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 01 Night of the Zealot 56a91d.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 01 Night of the Zealot 56a91d.yaml @@ -1,24 +1,24 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -47,11 +47,11 @@ ContainedObjects: posX: -12.985 posY: 2.511 posZ: 19.133 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' @@ -60,13 +60,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/01%20Night%20of%20the%20Zealot.jpg?raw=true MaterialIndex: 3 MeshURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true @@ -97,11 +97,11 @@ Transform: posX: 32.97 posY: 1.05 posZ: -73.1 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 02 The Dunwich Legacy 38d1cd.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 02 The Dunwich Legacy 38d1cd.yaml similarity index 81% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 02 The Dunwich Legacy 38d1cd.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 02 The Dunwich Legacy 38d1cd.yaml index 4886b94fe..e43b90e8a 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 02 The Dunwich Legacy 38d1cd.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 02 The Dunwich Legacy 38d1cd.yaml @@ -1,24 +1,24 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -47,11 +47,11 @@ ContainedObjects: posX: 12.25 posY: 3.029 posZ: 19.986 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' @@ -60,13 +60,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/02%20Dunwich%20Legacy.jpg?raw=true MaterialIndex: 3 MeshURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true @@ -97,11 +97,11 @@ Transform: posX: 32.97 posY: 1.05 posZ: -79.1 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 03 The Path to Carcosa 06a742.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 03 The Path to Carcosa 06a742.yaml similarity index 81% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 03 The Path to Carcosa 06a742.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 03 The Path to Carcosa 06a742.yaml index 172a9235c..265c62852 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 03 The Path to Carcosa 06a742.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 03 The Path to Carcosa 06a742.yaml @@ -1,24 +1,24 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -47,11 +47,11 @@ ContainedObjects: posX: 12.252 posY: 3.009 posZ: 11.986 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' @@ -60,13 +60,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/03%20Path%20to%20Carcosa.jpg?raw=true MaterialIndex: 3 MeshURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true @@ -97,11 +97,11 @@ Transform: posX: 32.97 posY: 1.04 posZ: -85.1 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 04 The Forgotten Age d5cd12.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 04 The Forgotten Age d5cd12.yaml similarity index 81% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 04 The Forgotten Age d5cd12.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 04 The Forgotten Age d5cd12.yaml index 10b6463ba..ecf5d8dbb 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 04 The Forgotten Age d5cd12.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 04 The Forgotten Age d5cd12.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - !include 'Custom_Model_Bag 04 The Forgotten Age d5cd12/Custom_PDF The Forgotten Age 20c2ad.yaml' @@ -19,13 +19,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/04%20Forgotten%20Age.jpg?raw=true MaterialIndex: 3 MeshURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true @@ -56,11 +56,11 @@ Transform: posX: 32.97 posY: 1.04 posZ: -91.1 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 04 The Forgotten Age d5cd12/Custom_PDF The Forgotten Age (Return to) 908cbf.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 04 The Forgotten Age d5cd12/Custom_PDF The Forgotten Age (Return to) 908cbf.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 04 The Forgotten Age d5cd12/Custom_PDF The Forgotten Age (Return to) 908cbf.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 04 The Forgotten Age d5cd12/Custom_PDF The Forgotten Age (Return to) 908cbf.yaml index 0eff7447d..f45c1e34e 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 04 The Forgotten Age d5cd12/Custom_PDF The Forgotten Age (Return to) 908cbf.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 04 The Forgotten Age d5cd12/Custom_PDF The Forgotten Age (Return to) 908cbf.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: -8.08 posY: 2.51 posZ: -5.59 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 04 The Forgotten Age d5cd12/Custom_PDF The Forgotten Age 20c2ad.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 04 The Forgotten Age d5cd12/Custom_PDF The Forgotten Age 20c2ad.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 04 The Forgotten Age d5cd12/Custom_PDF The Forgotten Age 20c2ad.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 04 The Forgotten Age d5cd12/Custom_PDF The Forgotten Age 20c2ad.yaml index 757a23b78..56c0cafeb 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 04 The Forgotten Age d5cd12/Custom_PDF The Forgotten Age 20c2ad.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 04 The Forgotten Age d5cd12/Custom_PDF The Forgotten Age 20c2ad.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: -8.24 posY: 2.51 posZ: -5.48 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 05 The Circle Undone 20d53c.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 05 The Circle Undone 20d53c.yaml similarity index 81% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 05 The Circle Undone 20d53c.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 05 The Circle Undone 20d53c.yaml index 504d668c7..511ff4509 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 05 The Circle Undone 20d53c.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 05 The Circle Undone 20d53c.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - !include 'Custom_Model_Bag 05 The Circle Undone 20d53c/Custom_PDF The Circle Undone 692219.yaml' @@ -19,13 +19,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/05%20Circle%20Undone.jpg?raw=true MaterialIndex: 3 MeshURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true @@ -56,11 +56,11 @@ Transform: posX: 24.97 posY: 1.04 posZ: -73.1 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 05 The Circle Undone 20d53c/Custom_PDF The Circle Undone (Return to) 9e9944.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 05 The Circle Undone 20d53c/Custom_PDF The Circle Undone (Return to) 9e9944.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 05 The Circle Undone 20d53c/Custom_PDF The Circle Undone (Return to) 9e9944.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 05 The Circle Undone 20d53c/Custom_PDF The Circle Undone (Return to) 9e9944.yaml index d18d6417b..355632091 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 05 The Circle Undone 20d53c/Custom_PDF The Circle Undone (Return to) 9e9944.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 05 The Circle Undone 20d53c/Custom_PDF The Circle Undone (Return to) 9e9944.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 2.23 posY: 2.7 posZ: -9.38 - rotX: 3 - rotY: 270 - rotZ: 2 + rotX: 3.0 + rotY: 270.0 + rotZ: 2.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 05 The Circle Undone 20d53c/Custom_PDF The Circle Undone 692219.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 05 The Circle Undone 20d53c/Custom_PDF The Circle Undone 692219.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 05 The Circle Undone 20d53c/Custom_PDF The Circle Undone 692219.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 05 The Circle Undone 20d53c/Custom_PDF The Circle Undone 692219.yaml index 2c80c87b3..29fb20d35 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 05 The Circle Undone 20d53c/Custom_PDF The Circle Undone 692219.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 05 The Circle Undone 20d53c/Custom_PDF The Circle Undone 692219.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 2.74 posY: 2.51 posZ: -7.44 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 06A The Dream-Quest f03c2d.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 06A The Dream-Quest f03c2d.yaml similarity index 81% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 06A The Dream-Quest f03c2d.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 06A The Dream-Quest f03c2d.yaml index 56d898ead..0a380cdad 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 06A The Dream-Quest f03c2d.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 06A The Dream-Quest f03c2d.yaml @@ -1,24 +1,24 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -47,11 +47,11 @@ ContainedObjects: posX: -21.449 posY: 2.511 posZ: 14.842 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' @@ -60,13 +60,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/06A%20Dream%20Quest.jpg?raw=true MaterialIndex: 3 MeshURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true @@ -97,11 +97,11 @@ Transform: posX: 24.97 posY: 1.04 posZ: -79.1 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 06B The Web of Dreams 1bac4d.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 06B The Web of Dreams 1bac4d.yaml similarity index 81% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 06B The Web of Dreams 1bac4d.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 06B The Web of Dreams 1bac4d.yaml index 1280bdab8..4096423e2 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 06B The Web of Dreams 1bac4d.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 06B The Web of Dreams 1bac4d.yaml @@ -1,24 +1,24 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -47,11 +47,11 @@ ContainedObjects: posX: -22.574 posY: 2.51 posZ: 5.1 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' @@ -60,13 +60,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/06B%20Web%20of%20Dreams.jpg?raw=true MaterialIndex: 3 MeshURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true @@ -97,11 +97,11 @@ Transform: posX: 24.97 posY: 1.04 posZ: -85.1 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 07 The Innsmouth Conspiracy f5f3b5.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 07 The Innsmouth Conspiracy f5f3b5.yaml similarity index 82% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 07 The Innsmouth Conspiracy f5f3b5.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 07 The Innsmouth Conspiracy f5f3b5.yaml index 2d546636b..ae7b580b5 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 07 The Innsmouth Conspiracy f5f3b5.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 07 The Innsmouth Conspiracy f5f3b5.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - !include 'Custom_Model_Bag 07 The Innsmouth Conspiracy f5f3b5/Custom_PDF 07 The Innsmouth Conspiracy - Play Order f42179.yaml' @@ -19,13 +19,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/07%20Innsmouth%20Conspiracy.jpg?raw=true MaterialIndex: 3 MeshURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true @@ -56,11 +56,11 @@ Transform: posX: 24.97 posY: 1.04 posZ: -91.1 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 07 The Innsmouth Conspiracy f5f3b5/Custom_PDF 07 The Innsmouth Conspiracy - Chronological c50a3a.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 07 The Innsmouth Conspiracy f5f3b5/Custom_PDF 07 The Innsmouth Conspiracy - Chronological c50a3a.yaml similarity index 87% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 07 The Innsmouth Conspiracy f5f3b5/Custom_PDF 07 The Innsmouth Conspiracy - Chronological c50a3a.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 07 The Innsmouth Conspiracy f5f3b5/Custom_PDF 07 The Innsmouth Conspiracy - Chronological c50a3a.yaml index 979e5eb31..820e82902 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 07 The Innsmouth Conspiracy f5f3b5/Custom_PDF 07 The Innsmouth Conspiracy - Chronological c50a3a.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 07 The Innsmouth Conspiracy f5f3b5/Custom_PDF 07 The Innsmouth Conspiracy - Chronological c50a3a.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: -3.49 posY: 2.51 posZ: -14.21 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 07 The Innsmouth Conspiracy f5f3b5/Custom_PDF 07 The Innsmouth Conspiracy - Play Order f42179.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 07 The Innsmouth Conspiracy f5f3b5/Custom_PDF 07 The Innsmouth Conspiracy - Play Order f42179.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 07 The Innsmouth Conspiracy f5f3b5/Custom_PDF 07 The Innsmouth Conspiracy - Play Order f42179.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 07 The Innsmouth Conspiracy f5f3b5/Custom_PDF 07 The Innsmouth Conspiracy - Play Order f42179.yaml index 909fa6960..b35691fd9 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 07 The Innsmouth Conspiracy f5f3b5/Custom_PDF 07 The Innsmouth Conspiracy - Play Order f42179.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 07 The Innsmouth Conspiracy f5f3b5/Custom_PDF 07 The Innsmouth Conspiracy - Play Order f42179.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 0.85 posY: 2.82 posZ: 73.96 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 08 Edge of the Earth e32dc3.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 08 Edge of the Earth e32dc3.yaml similarity index 80% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 08 Edge of the Earth e32dc3.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 08 Edge of the Earth e32dc3.yaml index 258ef0e96..cc66f5b86 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 08 Edge of the Earth e32dc3.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 08 Edge of the Earth e32dc3.yaml @@ -1,24 +1,24 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -47,11 +47,11 @@ ContainedObjects: posX: -5.104 posY: 2.714 posZ: -22.714 - rotX: 0 - rotY: 270 - rotZ: 180 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' @@ -60,13 +60,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/08%20Edge%20of%20the%20Earth.jpg?raw=true MaterialIndex: 3 MeshURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true @@ -97,11 +97,11 @@ Transform: posX: 16.97 posY: 1.06 posZ: -73.1 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 09 The Scarlet Keys 11d148.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 09 The Scarlet Keys 11d148.yaml similarity index 80% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 09 The Scarlet Keys 11d148.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 09 The Scarlet Keys 11d148.yaml index 6fa941366..e6a4e6158 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 09 The Scarlet Keys 11d148.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag 09 The Scarlet Keys 11d148.yaml @@ -1,24 +1,24 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -47,11 +47,11 @@ ContainedObjects: posX: 16.697 posY: 3.047 posZ: -78.723 - rotX: 0 - rotY: 270 - rotZ: 180 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' @@ -60,13 +60,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/09%20The%20Scarlet%20Keys.jpg?raw=true MaterialIndex: 3 MeshURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true @@ -97,11 +97,11 @@ Transform: posX: 16.97 posY: 1.06 posZ: -79.1 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag C1 Dark Matter 3a08d9.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag C1 Dark Matter 3a08d9.yaml similarity index 81% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag C1 Dark Matter 3a08d9.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag C1 Dark Matter 3a08d9.yaml index 38111dc67..edae579b4 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag C1 Dark Matter 3a08d9.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag C1 Dark Matter 3a08d9.yaml @@ -1,24 +1,24 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -47,11 +47,11 @@ ContainedObjects: posX: 10.122 posY: 2.511 posZ: 0.255 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' @@ -60,13 +60,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/C1%20Dark%20Matter.jpg?raw=true MaterialIndex: 3 MeshURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true @@ -97,11 +97,11 @@ Transform: posX: 8.97 posY: 1.07 posZ: -79.1 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag C2 Alice in Wonderland ed1d0c.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag C2 Alice in Wonderland ed1d0c.yaml similarity index 81% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag C2 Alice in Wonderland ed1d0c.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag C2 Alice in Wonderland ed1d0c.yaml index 101b6cce2..eb51da05f 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag C2 Alice in Wonderland ed1d0c.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag C2 Alice in Wonderland ed1d0c.yaml @@ -1,24 +1,24 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -47,11 +47,11 @@ ContainedObjects: posX: 8.969 posY: 1.174 posZ: -79.104 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' @@ -60,13 +60,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/C2%20Alice%20in%20Wonderland.jpg?raw=true MaterialIndex: 3 MeshURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true @@ -97,11 +97,11 @@ Transform: posX: 8.97 posY: 1.07 posZ: -85.1 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04.yaml similarity index 87% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04.yaml index 967a2ed35..83bfc414f 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - !include 'Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 05 Red Tide Rising f053b0.yaml' @@ -31,13 +31,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/P1%20Challenge%20Scenarios.jpg?raw=true MaterialIndex: 3 MeshURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true @@ -68,11 +68,11 @@ Transform: posX: 8.97 posY: 1.08 posZ: -73.1 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 01 Read or Die 8994ea.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 01 Read or Die 8994ea.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 01 Read or Die 8994ea.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 01 Read or Die 8994ea.yaml index 315fa089b..c27dcb1de 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 01 Read or Die 8994ea.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 01 Read or Die 8994ea.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 9.66 posY: 2.86 posZ: -72.19 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 02 All or Nothing 8950c7.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 02 All or Nothing 8950c7.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 02 All or Nothing 8950c7.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 02 All or Nothing 8950c7.yaml index 92bb69fdd..79a5fe59f 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 02 All or Nothing 8950c7.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 02 All or Nothing 8950c7.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 9.93 posY: 2.86 posZ: -71.82 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 03 Bad Blood b5fcf1.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 03 Bad Blood b5fcf1.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 03 Bad Blood b5fcf1.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 03 Bad Blood b5fcf1.yaml index debfd8c71..d8b47386a 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 03 Bad Blood b5fcf1.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 03 Bad Blood b5fcf1.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 9.89 posY: 2.86 posZ: -72.85 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 04 By the Book a37a83.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 04 By the Book a37a83.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 04 By the Book a37a83.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 04 By the Book a37a83.yaml index 30862742f..6d465eb0a 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 04 By the Book a37a83.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 04 By the Book a37a83.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 11.12 posY: 2.86 posZ: -72.56 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 05 Red Tide Rising f053b0.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 05 Red Tide Rising f053b0.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 05 Red Tide Rising f053b0.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 05 Red Tide Rising f053b0.yaml index 3be151746..cf4d57c0e 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 05 Red Tide Rising f053b0.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 05 Red Tide Rising f053b0.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 8.56 posY: 2.86 posZ: -73.32 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 Challenge Scenarios 409b50.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 Challenge Scenarios 409b50.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 Challenge Scenarios 409b50.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 Challenge Scenarios 409b50.yaml index a76eaa157..34bc98861 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 Challenge Scenarios 409b50.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 Challenge Scenarios 409b50.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 9.93 posY: 2.86 posZ: -70.77 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 DC Death Itself 443855.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 DC Death Itself 443855.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 DC Death Itself 443855.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 DC Death Itself 443855.yaml index ed10df712..609d9874b 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 DC Death Itself 443855.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 DC Death Itself 443855.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 10.16 posY: 2.86 posZ: -72.67 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 DC Then it Multiplied d72c48.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 DC Then it Multiplied d72c48.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 DC Then it Multiplied d72c48.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 DC Then it Multiplied d72c48.yaml index 5e7d7f6f8..d8f7a3425 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 DC Then it Multiplied d72c48.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag P1 Challenge Scenarios 8f7e04/Custom_PDF P1 DC Then it Multiplied d72c48.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 8.45 posY: 2.86 posZ: -73.66 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad.yaml similarity index 87% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad.yaml index d8ca86569..4800a1ede 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - !include 'Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 06 The Blob that Ate Everything 6ad284.yaml' @@ -29,13 +29,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/S1%202016-2020.jpg?raw=true MaterialIndex: 3 MeshURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true @@ -66,11 +66,11 @@ Transform: posX: 16.97 posY: 1.06 posZ: -85.1 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S01 02 Carinvale of Horrors 538f32.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S01 02 Carinvale of Horrors 538f32.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S01 02 Carinvale of Horrors 538f32.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S01 02 Carinvale of Horrors 538f32.yaml index 4b7e75e52..df3f2f004 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S01 02 Carinvale of Horrors 538f32.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S01 02 Carinvale of Horrors 538f32.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 9.31 posY: 2.51 posZ: -1.4 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 01 Curse of the Rougarou 39bf7c.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 01 Curse of the Rougarou 39bf7c.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 01 Curse of the Rougarou 39bf7c.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 01 Curse of the Rougarou 39bf7c.yaml index e93ce5c45..8a8ea49fa 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 01 Curse of the Rougarou 39bf7c.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 01 Curse of the Rougarou 39bf7c.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 8.76 posY: 2.79 posZ: -0.99 - rotX: 5 - rotY: 270 - rotZ: 0 + rotX: 5.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 03 The Labyrinths of Lunacy d014ce.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 03 The Labyrinths of Lunacy d014ce.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 03 The Labyrinths of Lunacy d014ce.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 03 The Labyrinths of Lunacy d014ce.yaml index a0e64474f..f09a11abe 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 03 The Labyrinths of Lunacy d014ce.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 03 The Labyrinths of Lunacy d014ce.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 6.48 posY: 2.51 posZ: -0.14 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 04 Guardians of the Abyss 6611a9.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 04 Guardians of the Abyss 6611a9.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 04 Guardians of the Abyss 6611a9.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 04 Guardians of the Abyss 6611a9.yaml index 14beb553d..df1999c45 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 04 Guardians of the Abyss 6611a9.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 04 Guardians of the Abyss 6611a9.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 7.32 posY: 2.66 posZ: -1.47 - rotX: 3 - rotY: 270 - rotZ: 0 + rotX: 3.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 05 Murder at the Excelsior Hotel b13297.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 05 Murder at the Excelsior Hotel b13297.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 05 Murder at the Excelsior Hotel b13297.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 05 Murder at the Excelsior Hotel b13297.yaml index 2699ca7df..8b1668fc7 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 05 Murder at the Excelsior Hotel b13297.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 05 Murder at the Excelsior Hotel b13297.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 8.41 posY: 2.59 posZ: -0.94 - rotX: 0 - rotY: 270 - rotZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 06 The Blob that Ate Everything 6ad284.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 06 The Blob that Ate Everything 6ad284.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 06 The Blob that Ate Everything 6ad284.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 06 The Blob that Ate Everything 6ad284.yaml index 724a977fe..f12ba7f49 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 06 The Blob that Ate Everything 6ad284.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 06 The Blob that Ate Everything 6ad284.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 7.82 posY: 2.65 posZ: 0.8 - rotX: 0 - rotY: 270 - rotZ: 2 + rotX: 0.0 + rotY: 270.0 + rotZ: 2.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 Stand-Alone Scenarios 2016-2020 00a430.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 Stand-Alone Scenarios 2016-2020 00a430.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 Stand-Alone Scenarios 2016-2020 00a430.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 Stand-Alone Scenarios 2016-2020 00a430.yaml index e8c46088b..a6f23b289 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 Stand-Alone Scenarios 2016-2020 00a430.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S1 Stand-Alones 2016-2020 e227ad/Custom_PDF S1 Stand-Alone Scenarios 2016-2020 00a430.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 7.13 posY: 2.51 posZ: 0.02 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8.yaml similarity index 83% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8.yaml index b430689d0..4b96af42d 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - !include 'Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 10 Fortune and Folly e19e46.yaml' @@ -23,13 +23,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/S2%202020-202.jpg?raw=true MaterialIndex: 3 MeshURL: https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true @@ -60,11 +60,11 @@ Transform: posX: 16.97 posY: 1.06 posZ: -91.1 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 07 Barkham Horror 409b50.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 07 Barkham Horror 409b50.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 07 Barkham Horror 409b50.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 07 Barkham Horror 409b50.yaml index 23ab2068d..d03281f83 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 07 Barkham Horror 409b50.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 07 Barkham Horror 409b50.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 16.58 posY: 2.85 posZ: -90.92 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 08 War of the Outer Gods bffa04.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 08 War of the Outer Gods bffa04.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 08 War of the Outer Gods bffa04.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 08 War of the Outer Gods bffa04.yaml index 672463e93..77a97b35d 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 08 War of the Outer Gods bffa04.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 08 War of the Outer Gods bffa04.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: -15.98 posY: 2.51 posZ: -13.36 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 09 Machinations Through Time f5dbf1.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 09 Machinations Through Time f5dbf1.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 09 Machinations Through Time f5dbf1.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 09 Machinations Through Time f5dbf1.yaml index 42247e08f..7c866a146 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 09 Machinations Through Time f5dbf1.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 09 Machinations Through Time f5dbf1.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: -15.36 posY: 2.51 posZ: -15.28 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 10 Fortune and Folly e19e46.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 10 Fortune and Folly e19e46.yaml similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 10 Fortune and Folly e19e46.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 10 Fortune and Folly e19e46.yaml index 1489debbc..56a1b1854 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 10 Fortune and Folly e19e46.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Custom_Model_Bag S2 Stand-Alones 2020-202 4c47d8/Custom_PDF S2 10 Fortune and Folly e19e46.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 17.32 posY: 2.85 posZ: -92.94 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.76 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Notecard Return to Expansions 2275ed.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Notecard Return to Expansions 2275ed.yaml similarity index 90% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Notecard Return to Expansions 2275ed.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Notecard Return to Expansions 2275ed.yaml index 9284961c3..5c26d060d 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign Guides e87ea2/Notecard Return to Expansions 2275ed.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Model_Bag CYOA Campaign Guides e87ea2/Notecard Return to Expansions 2275ed.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 Description: "When playing with the Return to Versions of the CYOA guides you will need to use the Return to setup card avaliable above the scenario card to modify the original setup of the game.\r\n\r\nEither version can be used to play a Standard @@ -34,9 +34,9 @@ Transform: posX: 29.34 posY: 1.37 posZ: -65.81 - rotX: 0 - rotY: 90 - rotZ: 0 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 scaleX: 1.25 scaleY: 1.25 scaleZ: 1.25 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Hand Helper 450688.ttslua b/unpacked/Bag OptionPanel Source 830bd0/Custom_Tile Hand Helper 450688.ttslua similarity index 51% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Hand Helper 450688.ttslua rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Tile Hand Helper 450688.ttslua index 652319c6e..79b7b30be 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Hand Helper 450688.ttslua +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Tile Hand Helper 450688.ttslua @@ -45,199 +45,121 @@ __bundle_register("__root", function(require, _LOADED, __bundle_register, __bund require("accessories/HandHelper") end) __bundle_register("accessories/HandHelper", function(require, _LOADED, __bundle_register, __bundle_modules) -local playmatAPI = require("playermat/PlaymatApi") +local playmatApi = require("playermat/PlaymatApi") -local buttonParamaters = {} -buttonParamaters.function_owner = self +-- forward declaration of variables that are used across functions +local matColor, handColor, loopId, hovering --- saving "playerColor" and "des" -function onSave() return JSON.encode({ playerColor, des}) end +function onLoad() + local buttonParamaters = {} + buttonParamaters.function_owner = self -function onLoad(saved_data) - -- loading saved data - local loaded_data = JSON.decode(saved_data) - playerColor = loaded_data[1] or Player.getAvailableColors()[1] - des = loaded_data[2] or false + -- index 0: button as hand size label + buttonParamaters.hover_color = "White" + buttonParamaters.click_function = "none" + buttonParamaters.position = { 0, 0.11, -0.4 } + buttonParamaters.height = 0 + buttonParamaters.width = 0 + buttonParamaters.font_size = 500 + buttonParamaters.font_color = "White" + self.createButton(buttonParamaters) - -- index 0: button as hand size label - buttonParamaters.hover_color = "White" - buttonParamaters.click_function = "none" - buttonParamaters.position = { 0, 0.11, -0.4 } - buttonParamaters.height = 0 - buttonParamaters.width = 0 - buttonParamaters.font_size = 500 - buttonParamaters.font_color = "White" - self.createButton(buttonParamaters) + -- index 1: button to toggle "des" + buttonParamaters.label = "DES: ✗" + buttonParamaters.click_function = "none" + buttonParamaters.position = { 0, 0.11, 0.25 } + buttonParamaters.height = 0 + buttonParamaters.width = 0 + buttonParamaters.font_size = 120 + self.createButton(buttonParamaters) - -- index 1: button to toggle "des" - buttonParamaters.label = "DES: " .. (des and "✓" or "✗") - buttonParamaters.click_function = "toggleDES" - buttonParamaters.position = { 0.475, 0.11, 0.25 } - buttonParamaters.height = 175 - buttonParamaters.width = 440 - buttonParamaters.font_size = 90 - buttonParamaters.font_color = "Black" - self.createButton(buttonParamaters) + -- index 2: button to discard a card + buttonParamaters.label = "discard random card" + buttonParamaters.click_function = "discardRandom" + buttonParamaters.position = { 0, 0.11, 0.7 } + buttonParamaters.height = 175 + buttonParamaters.width = 900 + buttonParamaters.font_size = 90 + buttonParamaters.font_color = "Black" + self.createButton(buttonParamaters) - -- index 2: button to discard a card - buttonParamaters.label = "discard random card" - buttonParamaters.click_function = "discardRandom" - buttonParamaters.position = { 0, 0.11, 0.7 } - buttonParamaters.width = 900 - self.createButton(buttonParamaters) + updateColors() - -- index 3: button to select color - buttonParamaters.label = playerColor - buttonParamaters.color = playerColor - buttonParamaters.hover_color = playerColor - buttonParamaters.click_function = "changeColor" - buttonParamaters.tooltip = "change color" - buttonParamaters.position = { -0.475, 0.11, 0.25 } - buttonParamaters.width = 440 - self.createButton(buttonParamaters) - - -- start loop to update card count - loopId = Wait.time(||updateValue(), 1, -1) - - -- context menu to quickly bind color - self.addContextMenuItem("Bind to my color", function(color) - changeColor(_, _, _, color) - end) - - -- context menu to display additional information - self.addContextMenuItem("More Information", function() - printToAll("------------------------------", "White") - printToAll("Hand Helper by Chr1Z", "Orange") - printToAll("original by Tikatoy", "White") - printToAll("Note: 'Hidden' cards can't be randomly discarded.", "Yellow") - printToAll("Set them aside beforehand!", "Yellow") - end) - - -- initialize the pseudo random number generator - math.randomseed(os.time()) + -- start loop to update card count + loopId = Wait.time(updateValue, 1, -1) end +-- updates colors when object is dropped somewhere +function onDrop() updateColors() end + +-- toggles counting method briefly function onObjectHover(hover_color, obj) - -- only continue if correct player hovers over "self" - if obj ~= self or hover_color ~= playerColor then return end + -- only continue if correct player hovers over "self" + if obj ~= self or hover_color ~= handColor or hovering then return end - -- stop loop, toggle "des" and displayed value briefly, then start new loop - Wait.stop(loopId) - des = not des - updateValue() - des = not des - loopId = Wait.time(||updateValue(), 1, -1) + -- toggle this flag so this doesn't get executed multiple times during the delay + hovering = true + + -- stop loop, toggle "des" and displayed value briefly, then start new loop after 2s + Wait.stop(loopId) + updateValue(true) + Wait.time(function() + loopId = Wait.time(updateValue, 1, -1) + hovering = false + end, 1) end --- toggle "des" and update button label -function toggleDES() - des = not des - self.editButton({index = 1, label = "DES: " .. (des and "✓" or "✗")}) - updateValue() +-- updates the matcolor and handcolor variable +function updateColors() + matColor = playmatApi.getMatColorByPosition(self.getPosition()) + handColor = playmatApi.getPlayerColor(matColor) + self.setName(handColor .. " Hand Helper") end -- count cards in hand (by name for DES) -function updateValue() - if not playerExists(playerColor) then return end +function updateValue(toggle) + -- update colors if handColor doesn't own a handzone + if Player[handColor].getHandCount() == 0 then + updateColors() + end - local hand = Player[playerColor].getHandObjects() - local size = 0 + -- if there is still no handzone, then end here + if Player[handColor].getHandCount() == 0 then return end - if des then - local cardHash = {} - for _, obj in pairs(hand) do - if obj.tag == "Card" then - local name = obj.getName() - local title = string.match(name, '(.+)(%s%(%d+%))') or name - cardHash[title] = obj - end - end - for _, obj in pairs(cardHash) do - size = size + 1 - end - else - for _, obj in pairs(hand) do - if obj.tag == "Card" then size = size + 1 end - end + -- get state of "Dream-Enhancing Serum" from playermat and update button label + local des = playmatApi.isDES(matColor) + if toggle then des = not des end + self.editButton({ index = 1, label = "DES: " .. (des and "✓" or "✗") }) + + -- count cards in hand + local hand = Player[handColor].getHandObjects() + local size = 0 + + if des then + local cardHash = {} + for _, obj in pairs(hand) do + if obj.tag == "Card" then + local name = obj.getName() + local title = string.match(name, '(.+)(%s%(%d+%))') or name + cardHash[title] = true + end end - -- change button label and color - self.editButton({index = 0, font_color = des and "Green" or "White", label = size}) -end - --- allows change of color via external call -function externalColorChange(newColor) - changeColor(_, _, _, newColor) -end - --- get index of current color and move up one step (or down for right-click) -function changeColor(_, _, isRightClick, color) - if color then - playerColor = color - else - local COLORS = Player.getAvailableColors() - local pos = indexOf(COLORS, playerColor) - - if isRightClick then - if pos == nil or pos == 1 then pos = #COLORS - else pos = pos - 1 end - else - if pos == nil or pos == #COLORS then pos = 1 - else pos = pos + 1 end - end - - -- update playerColor - playerColor = COLORS[pos] + for _, title in pairs(cardHash) do + size = size + 1 end + else + for _, obj in pairs(hand) do + if obj.tag == "Card" then size = size + 1 end + end + end - -- update "change color" button (note: remove and create instantly updates hover_color) - buttonParamaters.label = playerColor - buttonParamaters.color = playerColor - buttonParamaters.hover_color = playerColor - self.removeButton(3) - self.createButton(buttonParamaters) + -- update button label and color + self.editButton({ index = 0, font_color = des and "Green" or "White", label = size }) end ---------------------------------------------------------- --- discards a random card from hand ---------------------------------------------------------- - +-- discards a random non-hidden card from hand function discardRandom() - if not playerExists(playerColor) then return end - - -- error handling: hand is empty - local hand = Player[playerColor].getHandObjects() - if #hand == 0 then - broadcastToAll("Cannot discard from empty hand!", "Red") - else - local searchPos = Player[playerColor].getHandTransform().position - - local discardPos = playmatAPI.getDiscardPosition(playmatAPI.getMatColorByPosition(searchPos)) - if discardPos == nil then - broadcastToAll("Couldn't retrieve discard position from playermat!", "Red") - return - end - - local num = math.random(1, #hand) - hand[num].setPosition(discardPos) - broadcastToAll(playerColor .. " randomly discarded card " .. num .. "/" .. #hand .. ".", "White") - end -end - ---------------------------------------------------------- --- helper functions ---------------------------------------------------------- - --- helper to search array -function indexOf(array, value) - for i, v in ipairs(array) do - if v == value then return i end - end -end - --- helper to check if player exists -function playerExists(color) - local COLORS = Player.getAvailableColors() - return indexOf(COLORS, color) and true or false + playmatApi.doDiscardOne(matColor) end end) __bundle_register("playermat/PlaymatApi", function(require, _LOADED, __bundle_register, __bundle_modules) @@ -284,6 +206,31 @@ do end end + -- Returns the color of the player's hand that is seated next to the playermat + ---@param matColor String Color of the playermat + PlaymatApi.getPlayerColor = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getVar("playerColor") + end + + -- Returns the color of the playermat that owns the playercolor's hand + ---@param handColor String Color of the playermat + PlaymatApi.getMatColor = function(handColor) + local matColors = {"White", "Orange", "Green", "Red"} + for i, mat in ipairs(internal.getMatForColor("All")) do + local color = mat.getVar("playerColor") + if color == handColor then return matColors[i] end + end + return "NOT_FOUND" + end + + -- Returns if there is the card "Dream-Enhancing Serum" on the requested playermat + ---@param matColor String Color of the playermat + PlaymatApi.isDES = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getVar("isDES") + end + -- Returns the draw deck of the requested playmat ---@param matColor String Color of the playermat PlaymatApi.getDrawDeck = function(matColor) @@ -299,6 +246,36 @@ do return mat.call("returnGlobalDiscardPosition") end + -- Transforms a local position into a global position + ---@param localPos Table Local position to be transformed + ---@param matColor String Color of the playermat + PlaymatApi.transformLocalPosition = function(localPos, matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.positionToWorld(localPos) + end + + -- Returns the rotation of the requested playmat + ---@param matColor String Color of the playermat + PlaymatApi.returnRotation = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getRotation() + end + + -- Triggers the Upkeep for the requested playmat + ---@param matColor String Color of the playermat + ---@param playerColor String Color of the calling player (for messages) + PlaymatApi.doUpkeepFromHotkey = function(matColor, playerColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.call("doUpkeepFromHotkey", playerColor) + end + + -- Returns the active investigator id + ---@param matColor String Color of the playermat + PlaymatApi.returnInvestigatorId = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getVar("activeInvestigatorId") + end + -- Sets the requested playermat's snap points to limit snapping to matching card types or not. If -- matchTypes is true, the main card slot snap points will only snap assets, while the -- investigator area point will only snap Investigators. If matchTypes is false, snap points will @@ -352,6 +329,20 @@ do return count end + -- Adds the specified amount of resources to the requested playermat's resource counter + PlaymatApi.gainResources = function(amount, matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("gainResources", amount) + end + end + + -- Discard a non-hidden card from the corresponding player's hand + PlaymatApi.doDiscardOne = function(matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("doDiscardOne") + end + end + -- Convenience function to look up a mat's object by color, or get all mats. ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also -- accepts "All" as a special value which will return all four mats. diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Hand Helper 450688.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Tile Hand Helper 450688.yaml similarity index 63% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Hand Helper 450688.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Tile Hand Helper 450688.yaml index 95ac95e89..e76e454b8 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Hand Helper 450688.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Tile Hand Helper 450688.yaml @@ -1,33 +1,27 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 0 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1704036721123215146/E44A3B99EACF310E49E94977151A03C9A3DC7F17/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1704036721123215146/E44A3B99EACF310E49E94977151A03C9A3DC7F17/ - WidthScale: 0 -Description: '- Displays the hand size (total or by title for "Dream Enhancing Serum"), - hover over it to briefly toggle counting method + WidthScale: 0.0 +Description: 'Displays the hand size (total or by title for "Dream Enhancing Serum"), + hover over it to briefly toggle counting method. - - Adds a context menu to "Short Supply" for the 1st turn - - - - Allows you to randomly discard a card from your hand - - - See context menu for additional information.' + Allows you to randomly discard a card from your hand.' DragSelectable: true GMNotes: '' GUID: '450688' @@ -39,7 +33,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Tile Hand Helper 450688.ttslua' -LuaScriptState: '["Green",false]' +LuaScriptState: '' MeasureMovement: false Name: Custom_Tile Nickname: Hand Helper @@ -53,11 +47,11 @@ Transform: posX: 37.61 posY: 2.21 posZ: -51.97 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Search Assistant 17aed0.ttslua b/unpacked/Bag OptionPanel Source 830bd0/Custom_Tile Search Assistant 17aed0.ttslua similarity index 77% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Search Assistant 17aed0.ttslua rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Tile Search Assistant 17aed0.ttslua index 94ee62767..9d364d59b 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Search Assistant 17aed0.ttslua +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Tile Search Assistant 17aed0.ttslua @@ -41,17 +41,218 @@ local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = ( return require, loaded, register, modules end)(nil) +__bundle_register("playermat/PlaymatApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local PlaymatApi = { } + local internal = { } + + local MAT_IDS = { + White = "8b081b", + Orange = "bd0ff4", + Green = "383d8b", + Red = "0840d5" + } + + local CLUE_COUNTER_GUIDS = { + White = "37be78", + Orange = "1769ed", + Green = "032300", + Red = "d86b7c" + } + + local CLUE_CLICKER_GUIDS = { + White = "db85d6", + Orange = "3f22e5", + Green = "891403", + Red = "4111de" + } + + -- Returns the color of the by position requested playermat as string + ---@param startPos Table Position of the search, table get's roughly cut into 4 quarters to assign a playermat + PlaymatApi.getMatColorByPosition = function(startPos) + if startPos.x < -42 then + if startPos.z > 0 then + return "White" + else + return "Orange" + end + else + if startPos.z > 0 then + return "Green" + else + return "Red" + end + end + end + + -- Returns the color of the player's hand that is seated next to the playermat + ---@param matColor String Color of the playermat + PlaymatApi.getPlayerColor = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getVar("playerColor") + end + + -- Returns the color of the playermat that owns the playercolor's hand + ---@param handColor String Color of the playermat + PlaymatApi.getMatColor = function(handColor) + local matColors = {"White", "Orange", "Green", "Red"} + for i, mat in ipairs(internal.getMatForColor("All")) do + local color = mat.getVar("playerColor") + if color == handColor then return matColors[i] end + end + return "NOT_FOUND" + end + + -- Returns if there is the card "Dream-Enhancing Serum" on the requested playermat + ---@param matColor String Color of the playermat + PlaymatApi.isDES = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getVar("isDES") + end + + -- Returns the draw deck of the requested playmat + ---@param matColor String Color of the playermat + PlaymatApi.getDrawDeck = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + mat.call("getDrawDiscardDecks") + return mat.getVar("drawDeck") + end + + -- Returns the position of the discard pile of the requested playmat + ---@param matColor String Color of the playermat + PlaymatApi.getDiscardPosition = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.call("returnGlobalDiscardPosition") + end + + -- Transforms a local position into a global position + ---@param localPos Table Local position to be transformed + ---@param matColor String Color of the playermat + PlaymatApi.transformLocalPosition = function(localPos, matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.positionToWorld(localPos) + end + + -- Returns the rotation of the requested playmat + ---@param matColor String Color of the playermat + PlaymatApi.returnRotation = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getRotation() + end + + -- Triggers the Upkeep for the requested playmat + ---@param matColor String Color of the playermat + ---@param playerColor String Color of the calling player (for messages) + PlaymatApi.doUpkeepFromHotkey = function(matColor, playerColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.call("doUpkeepFromHotkey", playerColor) + end + + -- Returns the active investigator id + ---@param matColor String Color of the playermat + PlaymatApi.returnInvestigatorId = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getVar("activeInvestigatorId") + end + + -- Sets the requested playermat's snap points to limit snapping to matching card types or not. If + -- matchTypes is true, the main card slot snap points will only snap assets, while the + -- investigator area point will only snap Investigators. If matchTypes is false, snap points will + -- be reset to snap all cards. + ---@param matchCardTypes Boolean. Whether snap points should only snap for the matching card + -- types. + ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also + -- accepts "All" as a special value which will apply the setting to all four mats. + PlaymatApi.setLimitSnapsByType = function(matchCardTypes, matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("setLimitSnapsByType", matchCardTypes) + end + end + + -- Sets the requested playermat's draw 1 button to visible + ---@param isDrawButtonVisible Boolean. Whether the draw 1 button should be visible or not + ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also + -- accepts "All" as a special value which will apply the setting to all four mats. + PlaymatApi.showDrawButton = function(isDrawButtonVisible, matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("showDrawButton", isDrawButtonVisible) + end + end + + -- Shows or hides the clickable clue counter for the requested playermat + ---@param showCounter Boolean. Whether the clickable counter should be present or not + ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also + -- accepts "All" as a special value which will apply the setting to all four mats. + PlaymatApi.clickableClues = function(showCounter, matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("clickableClues", showCounter) + end + end + + -- Removes all clues (to the trash for tokens and counters set to 0) for the requested playermat + ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also + -- accepts "All" as a special value which will apply the setting to all four mats. + PlaymatApi.removeClues = function(matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("removeClues") + end + end + + -- Reports the clue count for the requested playermat + ---@param useClickableCounters Boolean Controls which type of counter is getting checked + PlaymatApi.getClueCount = function(useClickableCounters, matColor) + local count = 0 + for _, mat in ipairs(internal.getMatForColor(matColor)) do + count = count + tonumber(mat.call("getClueCount", useClickableCounters)) + end + return count + end + + -- Adds the specified amount of resources to the requested playermat's resource counter + PlaymatApi.gainResources = function(amount, matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("gainResources", amount) + end + end + + -- Discard a non-hidden card from the corresponding player's hand + PlaymatApi.doDiscardOne = function(matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("doDiscardOne") + end + end + + -- Convenience function to look up a mat's object by color, or get all mats. + ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also + -- accepts "All" as a special value which will return all four mats. + ---@return: Array of playermat objects. If a single mat is requested, will return a single-element + -- array to simplify processing by consumers. + internal.getMatForColor = function(matColor) + local targetMatGuid = MAT_IDS[matColor] + if targetMatGuid != nil then + return { getObjectFromGUID(targetMatGuid) } + end + if matColor == "All" then + return { + getObjectFromGUID(MAT_IDS.White), + getObjectFromGUID(MAT_IDS.Orange), + getObjectFromGUID(MAT_IDS.Green), + getObjectFromGUID(MAT_IDS.Red), + } + end + end + + return PlaymatApi +end +end) __bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) require("accessories/SearchAssistant") end) __bundle_register("accessories/SearchAssistant", function(require, _LOADED, __bundle_register, __bundle_modules) -local playmatAPI = require("playermat/PlaymatApi") +local playmatApi = require("playermat/PlaymatApi") -- forward declaration of variables that are used across functions -local matColor -local setAsidePosition -local setAsideRotation -local drawDeckPosition +local matColor, handColor, setAsidePosition, setAsideRotation, drawDeckPosition local quickParameters = {} quickParameters.function_owner = self @@ -149,10 +350,11 @@ end -- start the search (change UI, set handCards aside, draw cards) function startSearch(messageColor, number) - matColor = playmatAPI.getMatColorByPosition(self.getPosition()) + matColor = playmatApi.getMatColorByPosition(self.getPosition()) + handColor = playmatApi.getPlayerColor(matColor) -- get draw deck - local drawDeck = playmatAPI.getDrawDeck(matColor) + local drawDeck = playmatApi.getDrawDeck(matColor) if drawDeck == nil then printToColor(matColor .. " draw deck could not be found!", messageColor, "Red") return @@ -168,8 +370,8 @@ function startSearch(messageColor, number) end -- get position and rotation for set aside cards - local handData = Player[matColor].getHandTransform() - local handCards = Player[matColor].getHandObjects() + local handData = Player[handColor].getHandTransform() + local handCards = Player[handColor].getHandObjects() setAsidePosition = handData.position + offset * handData.right setAsideRotation = { handData.rotation.x, handData.rotation.y + 180, 180 } @@ -183,18 +385,18 @@ function startSearch(messageColor, number) local object = v.hit_object if object.tag == "Card" and not object.is_face_down then object.flip() - Wait.time(function() drawDeck = playmatAPI.getDrawDeck(matColor) end, 1) + Wait.time(function() drawDeck = playmatApi.getDrawDeck(matColor) end, 1) break end end - Wait.time(function() drawDeck.deal(number, matColor) end, 1) + Wait.time(function() drawDeck.deal(number, handColor) end, 1) searchView() end -- place handCards back into deck and optionally shuffle function endSearch(_, _, isRightClick) - local handCards = Player[matColor].getHandObjects() + local handCards = Player[handColor].getHandObjects() for i = #handCards, 1, -1 do handCards[i].setPosition(drawDeckPosition + Vector(0, 6 - i * 0.3, 0)) @@ -203,7 +405,7 @@ function endSearch(_, _, isRightClick) if not isRightClick then Wait.time(function() - local deck = playmatAPI.getDrawDeck(matColor) + local deck = playmatApi.getDrawDeck(matColor) if deck ~= nil then deck.shuffle() end @@ -215,11 +417,11 @@ function endSearch(_, _, isRightClick) local obj = v.hit_object if obj.tag == "Deck" then Wait.time(function() - obj.deal(#obj.getObjects(), matColor) + obj.deal(#obj.getObjects(), handColor) end, 1) break elseif obj.tag == "Card" then - obj.setPosition(Player[matColor].getHandTransform().position) + obj.setPosition(Player[handColor].getHandTransform().position) obj.flip() break end @@ -239,139 +441,4 @@ function searchArea(position) }) end end) -__bundle_register("playermat/PlaymatApi", function(require, _LOADED, __bundle_register, __bundle_modules) -do - local PlaymatApi = { } - local internal = { } - - local MAT_IDS = { - White = "8b081b", - Orange = "bd0ff4", - Green = "383d8b", - Red = "0840d5" - } - - local CLUE_COUNTER_GUIDS = { - White = "37be78", - Orange = "1769ed", - Green = "032300", - Red = "d86b7c" - } - - local CLUE_CLICKER_GUIDS = { - White = "db85d6", - Orange = "3f22e5", - Green = "891403", - Red = "4111de" - } - - -- Returns the color of the by position requested playermat as string - ---@param startPos Table Position of the search, table get's roughly cut into 4 quarters to assign a playermat - PlaymatApi.getMatColorByPosition = function(startPos) - if startPos.x < -42 then - if startPos.z > 0 then - return "White" - else - return "Orange" - end - else - if startPos.z > 0 then - return "Green" - else - return "Red" - end - end - end - - -- Returns the draw deck of the requested playmat - ---@param matColor String Color of the playermat - PlaymatApi.getDrawDeck = function(matColor) - local mat = getObjectFromGUID(MAT_IDS[matColor]) - mat.call("getDrawDiscardDecks") - return mat.getVar("drawDeck") - end - - -- Returns the position of the discard pile of the requested playmat - ---@param matColor String Color of the playermat - PlaymatApi.getDiscardPosition = function(matColor) - local mat = getObjectFromGUID(MAT_IDS[matColor]) - return mat.call("returnGlobalDiscardPosition") - end - - -- Sets the requested playermat's snap points to limit snapping to matching card types or not. If - -- matchTypes is true, the main card slot snap points will only snap assets, while the - -- investigator area point will only snap Investigators. If matchTypes is false, snap points will - -- be reset to snap all cards. - ---@param matchCardTypes Boolean. Whether snap points should only snap for the matching card - -- types. - ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also - -- accepts "All" as a special value which will apply the setting to all four mats. - PlaymatApi.setLimitSnapsByType = function(matchCardTypes, matColor) - for _, mat in ipairs(internal.getMatForColor(matColor)) do - mat.call("setLimitSnapsByType", matchCardTypes) - end - end - - -- Sets the requested playermat's draw 1 button to visible - ---@param isDrawButtonVisible Boolean. Whether the draw 1 button should be visible or not - ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also - -- accepts "All" as a special value which will apply the setting to all four mats. - PlaymatApi.showDrawButton = function(isDrawButtonVisible, matColor) - for _, mat in ipairs(internal.getMatForColor(matColor)) do - mat.call("showDrawButton", isDrawButtonVisible) - end - end - - -- Shows or hides the clickable clue counter for the requested playermat - ---@param showCounter Boolean. Whether the clickable counter should be present or not - ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also - -- accepts "All" as a special value which will apply the setting to all four mats. - PlaymatApi.clickableClues = function(showCounter, matColor) - for _, mat in ipairs(internal.getMatForColor(matColor)) do - mat.call("clickableClues", showCounter) - end - end - - -- Removes all clues (to the trash for tokens and counters set to 0) for the requested playermat - ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also - -- accepts "All" as a special value which will apply the setting to all four mats. - PlaymatApi.removeClues = function(matColor) - for _, mat in ipairs(internal.getMatForColor(matColor)) do - mat.call("removeClues") - end - end - - -- Reports the clue count for the requested playermat - ---@param useClickableCounters Boolean Controls which type of counter is getting checked - PlaymatApi.getClueCount = function(useClickableCounters, matColor) - local count = 0 - for _, mat in ipairs(internal.getMatForColor(matColor)) do - count = count + tonumber(mat.call("getClueCount", useClickableCounters)) - end - return count - end - - -- Convenience function to look up a mat's object by color, or get all mats. - ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also - -- accepts "All" as a special value which will return all four mats. - ---@return: Array of playermat objects. If a single mat is requested, will return a single-element - -- array to simplify processing by consumers. - internal.getMatForColor = function(matColor) - local targetMatGuid = MAT_IDS[matColor] - if targetMatGuid != nil then - return { getObjectFromGUID(targetMatGuid) } - end - if matColor == "All" then - return { - getObjectFromGUID(MAT_IDS.White), - getObjectFromGUID(MAT_IDS.Orange), - getObjectFromGUID(MAT_IDS.Green), - getObjectFromGUID(MAT_IDS.Red), - } - end - end - - return PlaymatApi -end -end) return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Search Assistant 17aed0.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Tile Search Assistant 17aed0.yaml similarity index 84% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Search Assistant 17aed0.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Tile Search Assistant 17aed0.yaml index 7fdcfe1ef..676f14318 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Search Assistant 17aed0.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Tile Search Assistant 17aed0.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1838053776205435595/ECFB88938ADBD1EF7AEF713111A11330FD9FAA5A/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1838053776205435595/ECFB88938ADBD1EF7AEF713111A11330FD9FAA5A/ - WidthScale: 0 + WidthScale: 0.0 Description: 'Searches the top X cards of the nearest playmat by setting your hand aside and putting the cards into your hand. @@ -41,16 +41,17 @@ Snap: true Sticky: true Tags: - CleanUpHelper_ignore +- displacement_excluded Tooltip: true Transform: posX: 29.25 posY: 8.4 posZ: -27.09 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Chaos Bag Manager 023240.ttslua b/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Chaos Bag Manager 023240.ttslua new file mode 100644 index 000000000..1c9412270 --- /dev/null +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Chaos Bag Manager 023240.ttslua @@ -0,0 +1,131 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("accessories/ChaosBagManager") +end) +__bundle_register("accessories/ChaosBagManager", function(require, _LOADED, __bundle_register, __bundle_modules) +local TOKEN_IDS = { + -- first row + "p1", "0", "m1", "m2", "m3", "m4", + -- second row + "m5", "m6", "m7", "m8", "frost", + -- third row + "blue", "skull", "cultist", "tablet", "elder", "red" +} + +local BUTTON_TOOLTIP = { + -- first row + "+1", "0", "-1", "-2", "-3", "-4", + -- second row + "-5", "-6", "-7", "-8", "Frost", + -- third row + "Elder Sign", "Skull", "Cultist", "Tablet", "Elder Thing", "Auto-fail" +} + +local BUTTON_POSITION = { + -- first row + -1.90, -1.14, -0.38, 0.38, 1.14, 1.90, + -- second row + -1.90, -1.14, -0.38, 0.38, 1.90, + -- third row + -1.90, -1.14, -0.38, 0.38, 1.14, 1.90 +} + +-- common button parameters +local buttonParameters = {} +buttonParameters.function_owner = self +buttonParameters.color = { 0, 0, 0, 0 } +buttonParameters.width = 300 +buttonParameters.height = 300 + +local name +local tokens = {} + +function onLoad() + -- create buttons for tokens + for i = 1, #BUTTON_POSITION do + local funcName = "buttonClick" .. i + self.setVar(funcName, function(_, _, isRightClick) buttonClick(i, isRightClick) end) + + buttonParameters.click_function = funcName + buttonParameters.tooltip = BUTTON_TOOLTIP[i] + buttonParameters.position = { x = BUTTON_POSITION[i], y = 0, z = 0 } + + if i < 7 then + buttonParameters.position.z = -0.778 + elseif i > 11 then + buttonParameters.position.z = 0.755 + end + + self.createButton(buttonParameters) + end +end + +-- click function for buttons +function buttonClick(index, isRightClick) + local tokenId = TOKEN_IDS[index] + + if isRightClick then + Global.call("removeChaosToken", tokenId) + else + local tokens = {} + local name = BUTTON_TOOLTIP[index] + local chaosbag = Global.call("findChaosBag") + + for _, v in ipairs(chaosbag.getObjects()) do + if v.name == name then table.insert(tokens, v.guid) end + end + + -- spawn token (only 8 frost tokens allowed) + if tokenId == "frost" and #tokens == 8 then + printToAll("The maximum of 8 Frost tokens is already in the bag.", "Yellow") + return + end + + Global.call("spawnChaosToken", tokenId) + printToAll("Adding " .. name .. " token (in bag: " .. #tokens + 1 .. ")", "White") + end +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Chaos Bag Manager 023240.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Chaos Bag Manager 023240.yaml similarity index 83% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Chaos Bag Manager 023240.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Token Chaos Bag Manager 023240.yaml index b0f115911..26ae9a431 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Chaos Bag Manager 023240.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Chaos Bag Manager 023240.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1857193769884995506/A760D5A6C66A035C4E4812BF5F0D511010EF526C/ - WidthScale: 0 + WidthScale: 0.0 Description: 'Adds/removes the desired token from the chaos bag. @@ -45,11 +45,11 @@ Transform: posX: 22.21 posY: 5.65 posZ: -34.81 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.5 - scaleY: 1 + scaleY: 1.0 scaleZ: 2.5 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Clean Up Helper 26cf4b.ttslua b/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Clean Up Helper 26cf4b.ttslua similarity index 55% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Clean Up Helper 26cf4b.ttslua rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Token Clean Up Helper 26cf4b.ttslua index cf4e7d478..a1a418bff 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Clean Up Helper 26cf4b.ttslua +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Clean Up Helper 26cf4b.ttslua @@ -41,6 +41,267 @@ local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = ( return require, loaded, register, modules end)(nil) +__bundle_register("core/SoundCubeApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local SoundCubeApi = {} + + -- this table links the name of a trigger effect to its index + local soundIndices = { + ["Vacuum"] = 0, + ["Deep Bell"] = 1, + ["Dark Souls"] = 2 + } + + function playTriggerEffect(index) + getObjectsWithTag("SoundCube")[1].AssetBundle.playTriggerEffect(index) + end + + -- plays the by name requested sound + ---@param soundName String Name of the sound to play + SoundCubeApi.playSoundByName = function(soundName) + playTriggerEffect(soundIndices[soundName]) + end + + return SoundCubeApi +end +end) +__bundle_register("core/token/TokenSpawnTrackerApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local TokenSpawnTracker = { } + + local SPAWN_TRACKER_GUID = "e3ffc9" + + TokenSpawnTracker.hasSpawnedTokens = function(cardGuid) + return getObjectFromGUID(SPAWN_TRACKER_GUID).call("hasSpawnedTokens", cardGuid) + end + + TokenSpawnTracker.markTokensSpawned = function(cardGuid) + return getObjectFromGUID(SPAWN_TRACKER_GUID).call("markTokensSpawned", cardGuid) + end + + TokenSpawnTracker.resetTokensSpawned = function(cardGuid) + return getObjectFromGUID(SPAWN_TRACKER_GUID).call("resetTokensSpawned", cardGuid) + end + + TokenSpawnTracker.resetAllAssetAndEvents = function() + return getObjectFromGUID(SPAWN_TRACKER_GUID).call("resetAllAssetAndEvents") + end + + TokenSpawnTracker.resetAllLocations = function() + return getObjectFromGUID(SPAWN_TRACKER_GUID).call("resetAllLocations") + end + + TokenSpawnTracker.resetAll = function() + return getObjectFromGUID(SPAWN_TRACKER_GUID).call("resetAll") + end + + return TokenSpawnTracker +end +end) +__bundle_register("playermat/PlaymatApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local PlaymatApi = { } + local internal = { } + + local MAT_IDS = { + White = "8b081b", + Orange = "bd0ff4", + Green = "383d8b", + Red = "0840d5" + } + + local CLUE_COUNTER_GUIDS = { + White = "37be78", + Orange = "1769ed", + Green = "032300", + Red = "d86b7c" + } + + local CLUE_CLICKER_GUIDS = { + White = "db85d6", + Orange = "3f22e5", + Green = "891403", + Red = "4111de" + } + + -- Returns the color of the by position requested playermat as string + ---@param startPos Table Position of the search, table get's roughly cut into 4 quarters to assign a playermat + PlaymatApi.getMatColorByPosition = function(startPos) + if startPos.x < -42 then + if startPos.z > 0 then + return "White" + else + return "Orange" + end + else + if startPos.z > 0 then + return "Green" + else + return "Red" + end + end + end + + -- Returns the color of the player's hand that is seated next to the playermat + ---@param matColor String Color of the playermat + PlaymatApi.getPlayerColor = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getVar("playerColor") + end + + -- Returns the color of the playermat that owns the playercolor's hand + ---@param handColor String Color of the playermat + PlaymatApi.getMatColor = function(handColor) + local matColors = {"White", "Orange", "Green", "Red"} + for i, mat in ipairs(internal.getMatForColor("All")) do + local color = mat.getVar("playerColor") + if color == handColor then return matColors[i] end + end + return "NOT_FOUND" + end + + -- Returns if there is the card "Dream-Enhancing Serum" on the requested playermat + ---@param matColor String Color of the playermat + PlaymatApi.isDES = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getVar("isDES") + end + + -- Returns the draw deck of the requested playmat + ---@param matColor String Color of the playermat + PlaymatApi.getDrawDeck = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + mat.call("getDrawDiscardDecks") + return mat.getVar("drawDeck") + end + + -- Returns the position of the discard pile of the requested playmat + ---@param matColor String Color of the playermat + PlaymatApi.getDiscardPosition = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.call("returnGlobalDiscardPosition") + end + + -- Transforms a local position into a global position + ---@param localPos Table Local position to be transformed + ---@param matColor String Color of the playermat + PlaymatApi.transformLocalPosition = function(localPos, matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.positionToWorld(localPos) + end + + -- Returns the rotation of the requested playmat + ---@param matColor String Color of the playermat + PlaymatApi.returnRotation = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getRotation() + end + + -- Triggers the Upkeep for the requested playmat + ---@param matColor String Color of the playermat + ---@param playerColor String Color of the calling player (for messages) + PlaymatApi.doUpkeepFromHotkey = function(matColor, playerColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.call("doUpkeepFromHotkey", playerColor) + end + + -- Returns the active investigator id + ---@param matColor String Color of the playermat + PlaymatApi.returnInvestigatorId = function(matColor) + local mat = getObjectFromGUID(MAT_IDS[matColor]) + return mat.getVar("activeInvestigatorId") + end + + -- Sets the requested playermat's snap points to limit snapping to matching card types or not. If + -- matchTypes is true, the main card slot snap points will only snap assets, while the + -- investigator area point will only snap Investigators. If matchTypes is false, snap points will + -- be reset to snap all cards. + ---@param matchCardTypes Boolean. Whether snap points should only snap for the matching card + -- types. + ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also + -- accepts "All" as a special value which will apply the setting to all four mats. + PlaymatApi.setLimitSnapsByType = function(matchCardTypes, matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("setLimitSnapsByType", matchCardTypes) + end + end + + -- Sets the requested playermat's draw 1 button to visible + ---@param isDrawButtonVisible Boolean. Whether the draw 1 button should be visible or not + ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also + -- accepts "All" as a special value which will apply the setting to all four mats. + PlaymatApi.showDrawButton = function(isDrawButtonVisible, matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("showDrawButton", isDrawButtonVisible) + end + end + + -- Shows or hides the clickable clue counter for the requested playermat + ---@param showCounter Boolean. Whether the clickable counter should be present or not + ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also + -- accepts "All" as a special value which will apply the setting to all four mats. + PlaymatApi.clickableClues = function(showCounter, matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("clickableClues", showCounter) + end + end + + -- Removes all clues (to the trash for tokens and counters set to 0) for the requested playermat + ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also + -- accepts "All" as a special value which will apply the setting to all four mats. + PlaymatApi.removeClues = function(matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("removeClues") + end + end + + -- Reports the clue count for the requested playermat + ---@param useClickableCounters Boolean Controls which type of counter is getting checked + PlaymatApi.getClueCount = function(useClickableCounters, matColor) + local count = 0 + for _, mat in ipairs(internal.getMatForColor(matColor)) do + count = count + tonumber(mat.call("getClueCount", useClickableCounters)) + end + return count + end + + -- Adds the specified amount of resources to the requested playermat's resource counter + PlaymatApi.gainResources = function(amount, matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("gainResources", amount) + end + end + + -- Discard a non-hidden card from the corresponding player's hand + PlaymatApi.doDiscardOne = function(matColor) + for _, mat in ipairs(internal.getMatForColor(matColor)) do + mat.call("doDiscardOne") + end + end + + -- Convenience function to look up a mat's object by color, or get all mats. + ---@param matColor String for one of the active player colors - White, Orange, Green, Red. Also + -- accepts "All" as a special value which will return all four mats. + ---@return: Array of playermat objects. If a single mat is requested, will return a single-element + -- array to simplify processing by consumers. + internal.getMatForColor = function(matColor) + local targetMatGuid = MAT_IDS[matColor] + if targetMatGuid != nil then + return { getObjectFromGUID(targetMatGuid) } + end + if matColor == "All" then + return { + getObjectFromGUID(MAT_IDS.White), + getObjectFromGUID(MAT_IDS.Orange), + getObjectFromGUID(MAT_IDS.Green), + getObjectFromGUID(MAT_IDS.Red), + } + end + end + + return PlaymatApi +end +end) __bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) require("accessories/CleanUpHelper") end) @@ -49,76 +310,73 @@ __bundle_register("accessories/CleanUpHelper", function(require, _LOADED, __bund Cleans up the table for the next scenario in a campaign: - sets counters to default values (resources and doom) or trauma values (health and sanity, if not disabled) from campaign log - puts everything on playmats and hands into respective trashcans -- use the IGNORE_TAG to exclude objects from tidying (default: "CleanUpHelper_Ignore") ---]] - -local tokenSpawnTrackerApi = require("core/token/TokenSpawnTrackerApi") - --- enable this for debugging -local SHOW_RAYS = false +- use the IGNORE_TAG to exclude objects from tidying (default: "CleanUpHelper_Ignore")]] +local tokenSpawnTrackerApi = require("core/token/TokenSpawnTrackerApi") +local soundCubeApi = require("core/SoundCubeApi") +local playmatApi = require("playermat/PlaymatApi") -- these objects will be ignored -local IGNORE_GUIDS = { +local IGNORE_GUIDS = { -- big playmat, change image panel and investigator counter - "b7b45b"; "f182ee"; "721ba2"; + "b7b45b", "f182ee", "721ba2", -- bless/curse manager - "afa06b"; "bd0253"; "5933fb"; + "afa06b", "bd0253", "5933fb", -- stuff on agenda/act playmat - "85c4c6"; "4a3aa4"; "fea079"; "b015d8"; "11e0cf"; "9f334f"; "70b9f6"; "0a5a29"; + "85c4c6", "4a3aa4", "fea079", "b015d8", "11e0cf", "9f334f", "70b9f6", "0a5a29", -- doom/location token bag - "47ffc3"; "170f10"; + "47ffc3", "170f10", -- table "4ee1f2" } -- objects with this tag will be ignored -local IGNORE_TAG = "CleanUpHelper_ignore" +local IGNORE_TAG = "CleanUpHelper_ignore" -- colors and order for following tables -local COLORS = { "White"; "Orange"; "Green"; "Red"; "Agenda" } +local COLORS = { "White", "Orange", "Green", "Red", "Agenda" } -- counter GUIDS (4x damage and 4x horror) -local DAMAGE_HORROR_GUIDS = { - "eb08d6"; "e64eec"; "1f5a0a"; "591a45"; - "468e88"; "0257d9"; "7b5729"; "beb964"; +local DAMAGE_HORROR_GUIDS = { + "eb08d6", "e64eec", "1f5a0a", "591a45", + "468e88", "0257d9", "7b5729", "beb964", } -local RESET_VALUES = {} +local RESET_VALUES = {} -- GUIDS of objects (in order of ownership relating to 'COLORS') -local PLAYERMAT_GUIDS = { "8b081b"; "bd0ff4"; "383d8b"; "0840d5" } -local RESOURCE_GUIDS = { "4406f0"; "816d84"; "cd15ac"; "a4b60d" } -local TRACKER_GUIDS = { "e598c2"; "b4a5f7"; "af7ed7"; "e74881" } -local CLUE_GUIDS = { "d86b7c"; "1769ed"; "032300"; "37be78" } -local CLUE_CLICKER_GUIDS = { "db85d6"; "3f22e5"; "891403"; "4111de" } -local TRASHCAN_GUIDS = { "147e80"; "f7b6c8"; "5f896a"; "4b8594"; "70b9f6" } +local PLAYERMAT_GUIDS = { "8b081b", "bd0ff4", "383d8b", "0840d5" } +local RESOURCE_GUIDS = { "4406f0", "816d84", "cd15ac", "a4b60d" } +local TRACKER_GUIDS = { "e598c2", "b4a5f7", "af7ed7", "e74881" } +local CLUE_GUIDS = { "d86b7c", "1769ed", "032300", "37be78" } +local CLUE_CLICKER_GUIDS = { "db85d6", "3f22e5", "891403", "4111de" } +local TRASHCAN_GUIDS = { "147e80", "f7b6c8", "5f896a", "4b8594", "70b9f6" } -- values for physics.cast (4 entries for player zones, 5th entry for agenda/act deck, 6th for campaign log) -local PHYSICS_POSITION = { - { -54.5, 2, 21 }; - { -54.5, 2, -21 }; - { -25.0, 2, 26 }; - { -25.0, 2, -26 }; - { -02.0, 2, 10 }; +local PHYSICS_POSITION = { + { -54.5, 2, 21 }, + { -54.5, 2, -21 }, + { -27.0, 2, 26 }, + { -27.0, 2, -26 }, + { -02.0, 2, 10 }, { -00.0, 2, -27 } } -local PHYSICS_ROTATION = { 270, 270, 0, 180, 270, 0 } +local PHYSICS_ROTATION = { 270, 270, 0, 180, 270, 0 } -local PHYSICS_SCALE = { - { 36.6, 1, 14.5 }; - { 36.6, 1, 14.5 }; - { 28.0, 1, 14.5 }; - { 28.0, 1, 14.5 }; - { 55.0, 1, 13.5 }; +local PHYSICS_SCALE = { + { 36.6, 1, 14.5 }, + { 36.6, 1, 14.5 }, + { 34.0, 1, 14.5 }, + { 34.0, 1, 14.5 }, + { 55.0, 1, 13.5 }, { 05.0, 1, 05.0 } } -local optionsVisible = false -local options = {} -options["importTrauma"] = true -options["tidyPlayermats"] = true -options["removeDrawnLines"] = false +local optionsVisible = false +local options = {} +options["importTrauma"] = true +options["tidyPlayermats"] = true +options["removeDrawnLines"] = false local buttonParameters = {} buttonParameters.function_owner = self @@ -128,9 +386,7 @@ buttonParameters.function_owner = self --------------------------------------------------------- function onSave() - return JSON.encode({ - options = options - }) + return JSON.encode({ options = options }) end function onLoad(savedData) @@ -212,6 +468,7 @@ function cleanUp(_, color) printToAll("Clean up started!", "Orange") printToAll("Resetting counters...", "White") + soundCubeApi.playSoundByName("Vacuum") ignoreCustomDataHelper() getTrauma() updateCounters(DAMAGE_HORROR_GUIDS, RESET_VALUES, "Damage / Horror") @@ -231,7 +488,6 @@ end --------------------------------------------------------- -- modular functions, called by other functions --------------------------------------------------------- - function updateCounters(tableOfGUIDs, tableOfNewValues, info) if tonumber(tableOfNewValues) then local value = tableOfNewValues @@ -260,7 +516,7 @@ function resetSkillTrackers() if obj ~= nil then obj.call("updateStats", { 1, 1, 1, 1 }) else - printToAll("Skill tracker number " .. i .. " could not be found.", "Yellow") + printToAll("Skill tracker for " .. COLORS[i] .. " playmat could not be found.", "Yellow") end end end @@ -286,8 +542,8 @@ end -- read values for trauma from campaign log if enabled function getTrauma() RESET_VALUES = { - 0; 0; 0; 0; - 0; 0; 0; 0 + 0, 0, 0, 0, + 0, 0, 0, 0 } -- stop here if trauma import is disabled @@ -343,7 +599,7 @@ function discardHands() for i = 1, 4 do local trashcan = getObjectFromGUID(TRASHCAN_GUIDS[i]) if trashcan == nil then return end - local hand = Player[COLORS[i]].getHandObjects() + local hand = Player[playmatApi.getPlayerColor(COLORS[i])].getHandObjects() for j = #hand, 1, -1 do trashcan.putObject(hand[j]) end @@ -386,7 +642,7 @@ function tidyPlayerMatCoroutine() local trashcan = getObjectFromGUID(TRASHCAN_GUIDS[i]) if trashcan == nil then printToAll("Trashcan for " .. COLORS[i] .. " playmat could not be found!", "Red") - return + return 1 end for _, entry in ipairs(findObjects(i)) do @@ -437,7 +693,7 @@ function findObjects(num) size = PHYSICS_SCALE[num], origin = PHYSICS_POSITION[num], orientation = { 0, PHYSICS_ROTATION[num], 0 }, - debug = SHOW_RAYS + debug = false }) end @@ -451,37 +707,4 @@ function tableContains(table, value) return false end end) -__bundle_register("core/token/TokenSpawnTrackerApi", function(require, _LOADED, __bundle_register, __bundle_modules) -do - local TokenSpawnTracker = { } - - local SPAWN_TRACKER_GUID = "e3ffc9" - - TokenSpawnTracker.hasSpawnedTokens = function(cardGuid) - return getObjectFromGUID(SPAWN_TRACKER_GUID).call("hasSpawnedTokens", cardGuid) - end - - TokenSpawnTracker.markTokensSpawned = function(cardGuid) - return getObjectFromGUID(SPAWN_TRACKER_GUID).call("markTokensSpawned", cardGuid) - end - - TokenSpawnTracker.resetTokensSpawned = function(cardGuid) - return getObjectFromGUID(SPAWN_TRACKER_GUID).call("resetTokensSpawned", cardGuid) - end - - TokenSpawnTracker.resetAllAssetAndEvents = function() - return getObjectFromGUID(SPAWN_TRACKER_GUID).call("resetAllAssetAndEvents") - end - - TokenSpawnTracker.resetAllLocations = function() - return getObjectFromGUID(SPAWN_TRACKER_GUID).call("resetAllLocations") - end - - TokenSpawnTracker.resetAll = function() - return getObjectFromGUID(SPAWN_TRACKER_GUID).call("resetAll") - end - - return TokenSpawnTracker -end -end) return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Clean Up Helper 26cf4b.xml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Clean Up Helper 26cf4b.xml similarity index 100% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Clean Up Helper 26cf4b.xml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Token Clean Up Helper 26cf4b.xml diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Clean Up Helper 26cf4b.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Clean Up Helper 26cf4b.yaml similarity index 89% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Clean Up Helper 26cf4b.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Token Clean Up Helper 26cf4b.yaml index 0efdf70e8..1e9c20802 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Clean Up Helper 26cf4b.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Clean Up Helper 26cf4b.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1850441528393599634/FA79B99F5544D16D38DCC8A26F1CEB3E7D9FED17/ - WidthScale: 0 + WidthScale: 0.0 CustomUIAssets: - Name: font_teutonic-arkham Type: 1 @@ -56,11 +56,11 @@ Transform: posX: 30.96 posY: 4.13 posZ: -20.81 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.5 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.5 Value: 0 XmlUI: !include 'Custom_Token Clean Up Helper 26cf4b.xml' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Custom Playmat Images 004fe7.ttslua b/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Custom Playmat Images 004fe7.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Custom Playmat Images 004fe7.ttslua rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Token Custom Playmat Images 004fe7.ttslua diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Custom Playmat Images 004fe7.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Custom Playmat Images 004fe7.yaml similarity index 94% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Custom Playmat Images 004fe7.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Token Custom Playmat Images 004fe7.yaml index f3c1d5137..31ffd856c 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Custom Playmat Images 004fe7.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Custom Playmat Images 004fe7.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/2026086584367391757/2E37A1020563AA528471DA7425B8E58343E2BAF7/ - WidthScale: 0 + WidthScale: 0.0 Description: Change playmat image to a custom one made by Mint Tea Fan. DragSelectable: true GMNotes: '' @@ -52,11 +52,11 @@ Transform: posX: 44.32 posY: 2.29 posZ: -60.49 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.33 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.33 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Displacement Tool 0f1374.ttslua b/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Displacement Tool 0f1374.ttslua similarity index 86% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Displacement Tool 0f1374.ttslua rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Token Displacement Tool 0f1374.ttslua index e742c2f53..5bb370671 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Displacement Tool 0f1374.ttslua +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Displacement Tool 0f1374.ttslua @@ -41,6 +41,9 @@ local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = ( return require, loaded, register, modules end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("accessories/DisplacementTool") +end) __bundle_register("accessories/DisplacementTool", function(require, _LOADED, __bundle_register, __bundle_modules) local playAreaApi = require("core/PlayAreaApi") @@ -145,10 +148,29 @@ do { container = container, object = object }) end + -- counts the VP on locations in the play area + PlayAreaApi.countVP = function() + return getObjectFromGUID(PLAY_AREA_GUID).call("countVP") + end + + -- highlights all locations in the play area without metadata + ---@param state Boolean True if highlighting should be enabled + PlayAreaApi.highlightMissingData = function(state) + return getObjectFromGUID(PLAY_AREA_GUID).call("highlightMissingData", state) + end + + -- highlights all locations in the play area with VP + ---@param state Boolean True if highlighting should be enabled + PlayAreaApi.highlightCountedVP = function(state) + return getObjectFromGUID(PLAY_AREA_GUID).call("highlightCountedVP", state) + end + + -- Checks if an object is in the play area (returns true or false) + PlayAreaApi.isInPlayArea = function(object) + return getObjectFromGUID(PLAY_AREA_GUID).call("isInPlayArea", object) + end + return PlayAreaApi end end) -__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) -require("accessories/DisplacementTool") -end) return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Displacement Tool 0f1374.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Displacement Tool 0f1374.yaml similarity index 83% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Displacement Tool 0f1374.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Token Displacement Tool 0f1374.yaml index d0cde4b2a..9e63936f1 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Displacement Tool 0f1374.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Displacement Tool 0f1374.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1915746489209870095/5F6A6F2946DBEB81667C15B112F9E35943E61A97/ - WidthScale: 0 + WidthScale: 0.0 Description: Moves all objects on the playmat in the chosen direction. DragSelectable: true GMNotes: '' @@ -43,11 +43,11 @@ Transform: posX: 31.48 posY: 4.2 posZ: -20.34 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.5 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.5 Value: 0 XmlUI: '' diff --git a/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Token Arranger 022907.ttslua b/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Token Arranger 022907.ttslua new file mode 100644 index 000000000..572154362 --- /dev/null +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Token Arranger 022907.ttslua @@ -0,0 +1,462 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("accessories/TokenArranger") +end) +__bundle_register("accessories/TokenArranger", function(require, _LOADED, __bundle_register, __bundle_modules) +local mythosAreaApi = require("core/MythosAreaApi") + +-- common parameters +local buttonParameters = {} +buttonParameters.function_owner = self +buttonParameters.label = "" +buttonParameters.tooltip = "Increase / Decrease" +buttonParameters.color = { 0, 0, 0, 0 } +buttonParameters.width = 325 +buttonParameters.height = 325 + +local inputParameters = {} +inputParameters.function_owner = self +inputParameters.font_size = 100 +inputParameters.width = 250 +inputParameters.height = inputParameters.font_size + 23 +inputParameters.alignment = 3 +inputParameters.validation = 2 +inputParameters.tab = 2 + +-- variables with save function +local tokenPrecedence = {} +local latestLoad = "XXX" +local percentage = false + +-- variables without save function +local updating = false +local TOKEN_NAMES = { + "Elder Sign", + "Skull", + "Cultist", + "Tablet", + "Elder Thing", + "Auto-fail", + "Bless", + "Curse", + "Frost", + "" +} + +-- saving the precedence settings and information on the most recently loaded data +function onSave() + return JSON.encode({ + tokenPrecedence = tokenPrecedence, + latestLoad = latestLoad, + percentage = percentage + }) +end + +-- loading data, button creation and initial layouting +function onLoad(saveState) + if saveState ~= nil and saveState ~= "" then + local loadedData = JSON.decode(saveState) + tokenPrecedence = loadedData.tokenPrecedence + latestLoad = loadedData.latestLoad or "XXX" + percentage = loadedData.percentage + else + loadDefaultValues() + end + + createButtonsAndInputs(true) + layout() + + -- context menu items + self.addContextMenuItem("Load default values", function() + latestLoad = "XXX" + loadDefaultValues() + updateUI() + layout() + end) + + self.addContextMenuItem("Toggle percentages", function() + if percentage then + percentage = false + else + percentage = "basic" + broadcastToAll("Percentages are unreliable when using tokens that draw other tokens (bless or curse for example).", + "Yellow") + end + layout() + end) + + self.addContextMenuItem("Toggle cumulative", function() + if percentage == "cumulative" then + percentage = "basic" + else + percentage = "cumulative" + end + broadcastToAll("Percentages are unreliable when using tokens that draw other tokens (bless or curse for example).", + "Yellow") + layout() + end) + + -- grab token metadata from mythos area + Wait.time(function() onTokenDataChanged(mythosAreaApi.returnTokenData()) end, 0.2) +end + +-- delete temporary tokens when destroyed +function onDestroy() deleteCopiedTokens() end + +-- layout tokens when dropped (after 1.5 seconds) +function onDrop() Wait.time(layout, 1.5) end + +-- delete temporary tokens when picked up +function onPickUp() deleteCopiedTokens() end + +-- helper functions to carry index +function attachIndex(click_function, index) + local fn_name = click_function .. index + _G[fn_name] = function(_, _, isRightClick) + _G[click_function](isRightClick, index) + end + return fn_name +end + +function attachIndex2(input_function, index) + local fn_name = input_function .. index + _G[fn_name] = function(_, _, input, selected) + _G[input_function](input, selected, index) + end + return fn_name +end + +-- click_function for buttons on chaos tokens +function tokenClick(isRightClick, index) + local change = tonumber(isRightClick and "-1" or "1") + tokenPrecedence[TOKEN_NAMES[index]][1] = tokenPrecedence[TOKEN_NAMES[index]][1] + change + self.editInput({ + index = index - 1, + value = tokenPrecedence[TOKEN_NAMES[index]][1] + }) + layout() +end + +-- input_function for input_boxes +function tokenInput(input, selected, index) + if selected == false then + local num = tonumber(input) + if num ~= nil then + tokenPrecedence[TOKEN_NAMES[index]][1] = num + end + layout() + end +end + +-- loads the default precedence table +function loadDefaultValues() + -- 1st value: token modifiers for sorting + -- 2nd value: order for equivalent tokens (starts at 2 because of "+1" token) + tokenPrecedence = { + ["Elder Sign"] = { 100, 2}, + ["Skull"] = { -1, 3}, + ["Cultist"] = { -2, 4}, + ["Tablet"] = { -3, 5}, + ["Elder Thing"] = { -4, 6}, + ["Auto-fail"] = { -100, 7}, + ["Bless"] = { 101, 8}, + ["Curse"] = { -101, 9}, + ["Frost"] = { -99, 10}, + [""] = { 0, 11} + } +end + +-- creates buttons and inputs (if argument is true) +function createButtonsAndInputs(loadInputs) + local offset = 0.725 + local pos = { x = { -1.067, 0.377 }, z = -2.175 } + + -- button and inputs index 0-9 + for i = 1, 10 do + if i < 6 then + buttonParameters.position = { pos.x[1], 0, pos.z + i * offset } + inputParameters.position = { pos.x[1] + offset, 0.1, pos.z + i * offset } + else + buttonParameters.position = { pos.x[2], 0, pos.z + (i - 5) * offset } + inputParameters.position = { pos.x[2] + offset, 0.1, pos.z + (i - 5) * offset } + end + + buttonParameters.click_function = attachIndex("tokenClick", i) + self.createButton(buttonParameters) + + -- only create inputs on initial load + if loadInputs then + inputParameters.input_function = attachIndex2("tokenInput", i) + inputParameters.value = tokenPrecedence[TOKEN_NAMES[i]][1] + self.createInput(inputParameters) + end + end + + -- index 10: "Update / Hide" button + self.createButton({ + function_owner = self, + label = "Update / Hide", + click_function = "layout", + tooltip = "Left-Click: Update!\nRight-Click: Hide Tokens!", + position = { 0.725, 0.1, 2.025 }, + color = { 1, 1, 1 }, + width = 675, + height = 175 + }) +end + +-- update input fields +function updateUI() + for i = 1, 10 do + self.editInput({ + index = i - 1, + value = tokenPrecedence[TOKEN_NAMES[i]][1] + }) + end +end + +-- order function for data sorting +function tokenValueComparator(left, right) + if (left.value ~= right.value) then + return left.value > right.value + elseif left.order ~= right.order then + return left.order < right.order + else + return false + end +end + +-- deletes previously placed tokens +function deleteCopiedTokens() + for _, token in ipairs(getObjectsWithTag("tempToken")) do + token.destruct() + end + + -- this removes the percentage buttons + self.clearButtons() + createButtonsAndInputs() +end + +-- creates percentage representation buttons +function createPercentageButton(basePercentage, valueCount, tokenName, cumulativePercentage) + local buttonScale, offset, textColor, labelString + + if percentage == "cumulative" then + buttonScale = {1.5, 1.5, 1.5} + offset = -2.85 + else + buttonScale = {2, 2, 2} + offset = -2.675 + end + + -- if this is a cumulative button (bottom one of the two created buttons) + if cumulativePercentage then + offset = -2.45 + textColor = {1, 1, 1} + + -- only display one digit for 100% + if cumulativePercentage == 100 then + labelString = string.format("%s", string.format("%05.1f", cumulativePercentage) .. "%") + else + labelString = string.format("%s", string.format("%05.2f", cumulativePercentage) .. "%") + end + else + labelString = string.format("%s", string.format("%05.2f", basePercentage) .. "%") + if tokenName == "Elder Sign" then + textColor = {0.35, 0.71, 0.85} + elseif tokenName == "Auto-fail" then + textColor = {0.86, 0.1, 0.1} + elseif tokenName then + textColor = {0.68, 0.53, 0.86} + else + textColor = {0.85, 0.67, 0.33} + end + end + + self.createButton({ + label = labelString, + click_function = "none", + width = 0, + height = 0, + scale = buttonScale, + font_color = textColor, + position = Vector(2.3, -0.05, offset + 0.875 * valueCount) + }) +end + +-- main function (delete old tokens, clone chaos bag content, sort it and position it) +function layout(_, _, isRightClick) + if updating then return end + updating = true + deleteCopiedTokens() + + -- stop here if right-clicked + if isRightClick then + updating = false + return + end + + local chaosBag = Global.call("findChaosBag") + local data = {} + + -- clone tokens from chaos bag (default position above trash can) + for i, obj in ipairs(chaosBag.getData().ContainedObjects) do + obj["Tags"] = { "tempToken" } + local spawnedObj = spawnObjectData({ + data = obj, + position = { 0.49, 3, 0 } + }) + + local value = tonumber(obj.Nickname) + local precedence = tokenPrecedence[obj.Nickname] + + data[i] = { + token = spawnedObj, + value = value or precedence[1] + } + + -- order for comparator function + if precedence ~= nil then + data[i].order = precedence[2] + else + data[i].order = value + end + end + + -- sort table by value (symbols last if same value) + table.sort(data, tokenValueComparator) + + -- laying out the tokens + local pos = self.getPosition() + Vector(3.55, -0.05, -3.95) + if percentage then pos.z = pos.z - 3.05 end + + local location = { x = pos.x, y = pos.y, z = pos.z } + local currentValue = data[1].value + local tokenCount = 0 + local valueCount = 1 + local cumulativePercentage = 0 + local tokenName = false + + for _, item in ipairs(data) do + if item.value ~= currentValue then + if percentage then + local basePercentage = math.floor((tokenCount / #data) * 10000) / 100 + createPercentageButton(basePercentage, valueCount, tokenName) + if percentage == "cumulative" then + cumulativePercentage = cumulativePercentage + basePercentage + createPercentageButton(basePercentage, valueCount, tokenName, cumulativePercentage) + end + end + + location.x = location.x - 1.75 + location.z = pos.z + currentValue = item.value + valueCount = valueCount + 1 + tokenCount = 0 + end + + item.token.setPosition(location) + item.token.setRotation(self.getRotation()) + location.z = location.z - 1.75 + tokenCount = tokenCount + 1 + tokenName = item.token.getName() + + -- set tokenName to false if it does not contain letters + -- tokenName is used by `createPercentageButton()` to determine the textcolor for percentages + if string.match(tokenName, "%a") == nil then + tokenName = false + end + end + + -- this is repeated to create the button for the last token + if percentage then + local basePercentage = math.floor((tokenCount / #data) * 10000) / 100 + createPercentageButton(basePercentage, valueCount, tokenName) + if percentage == "cumulative" then + cumulativePercentage = cumulativePercentage + basePercentage + createPercentageButton(basePercentage, valueCount, tokenName, cumulativePercentage) + end + end + + -- introducing a small delay to limit update calls + Wait.time(function() updating = false end, 0.1) +end + +-- called from outside to set default values for tokens +function onTokenDataChanged(parameters) + local tokenData = parameters.tokenData or {} + local currentScenario = parameters.currentScenario or "" + local useFrontData = parameters.useFrontData + + -- only update if this data is new + local info = currentScenario .. tostring(useFrontData) + if latestLoad == info then return end + latestLoad = info + + -- update token precedence + for key, table in pairs(tokenData) do + local modifier = table.modifier + if modifier == -999 then modifier = 0 end + tokenPrecedence[key][1] = modifier + end + + updateUI() + layout() +end +end) +__bundle_register("core/MythosAreaApi", function(require, _LOADED, __bundle_register, __bundle_modules) +do + local MythosAreaApi = {} + local MYTHOS_AREA_GUID = "9f334f" + + -- returns the chaos token metadata (if provided through scenario reference card) + MythosAreaApi.returnTokenData = function() + return getObjectFromGUID("9f334f").call("returnTokenData") + end + + return MythosAreaApi +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Token Arranger 022907.yaml b/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Token Arranger 022907.yaml similarity index 65% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Token Arranger 022907.yaml rename to unpacked/Bag OptionPanel Source 830bd0/Custom_Token Token Arranger 022907.yaml index 3612ac6dc..842a3ade0 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Token Arranger 022907.yaml +++ b/unpacked/Bag OptionPanel Source 830bd0/Custom_Token Token Arranger 022907.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.100000009 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1838054223124059668/0BF8F541309E717BA84987BD554675A2FD06AF9F/ - WidthScale: 0 + WidthScale: 0.0 Description: 'Displays the content of the chaos bag in tabular fashion. @@ -32,23 +32,24 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Token Token Arranger 022907.ttslua' -LuaScriptState: '{"":[0,11],"Auto-fail":[-100,7],"Bless":[101,8],"Cultist":[-2,4],"Curse":[-101,9],"Elder - Sign":[100,2],"Elder Thing":[-4,6],"Frost":[-99,10],"Skull":[-1,3],"Tablet":[-3,5]}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Token Nickname: Token Arranger Snap: true Sticky: true +Tags: +- TokenArranger Tooltip: true Transform: - posX: 22.95 - posY: 5.24 - posZ: -30.3 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 2 - scaleY: 1 - scaleZ: 2 + posX: -42.3 + posY: 1.53 + posZ: -46.5 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag OptionPanel Source 830bd0/Infinite_Bag Attachment Helper 7f4976.yaml b/unpacked/Bag OptionPanel Source 830bd0/Infinite_Bag Attachment Helper 7f4976.yaml new file mode 100644 index 000000000..22de34158 --- /dev/null +++ b/unpacked/Bag OptionPanel Source 830bd0/Infinite_Bag Attachment Helper 7f4976.yaml @@ -0,0 +1,211 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 0.37256 + r: 0.30589 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + Bag: + Order: 0 + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomMesh: + CastShadows: true + ColliderURL: http://cloud-3.steamusercontent.com/ugc/1754695414379239413/0B8E68F3B7311DCF2138FB701F78D1D93FBA4CAB/ + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1750192233783143973/D526236AAE16BDBB98D3F30E27BAFC1D3E21F4AC/ + MaterialIndex: 1 + MeshURL: http://cloud-3.steamusercontent.com/ugc/1754695414379239413/0B8E68F3B7311DCF2138FB701F78D1D93FBA4CAB/ + NormalURL: '' + TypeIndex: 6 + Description: 'Drop cards here to display name, cost and skill icons. + + + See context menu for options.' + DragSelectable: true + GMNotes: '' + GUID: d45664 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: "-- Bundled by luabundle {\"version\":\"1.6.0\"}\nlocal __bundle_require, + __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire)\n\tlocal + loadingPlaceholder = {[{}] = true}\n\n\tlocal register\n\tlocal modules = {}\n\n\tlocal + require\n\tlocal loaded = {}\n\n\tregister = function(name, body)\n\t\tif not + modules[name] then\n\t\t\tmodules[name] = body\n\t\tend\n\tend\n\n\trequire = + function(name)\n\t\tlocal loadedModule = loaded[name]\n\n\t\tif loadedModule then\n\t\t\tif + loadedModule == loadingPlaceholder then\n\t\t\t\treturn nil\n\t\t\tend\n\t\telse\n\t\t\tif + not modules[name] then\n\t\t\t\tif not superRequire then\n\t\t\t\t\tlocal identifier + = type(name) == 'string' and '\\\"' .. name .. '\\\"' or tostring(name)\n\t\t\t\t\terror('Tried + to require ' .. identifier .. ', but no such module has been registered')\n\t\t\t\telse\n\t\t\t\t\treturn + superRequire(name)\n\t\t\t\tend\n\t\t\tend\n\n\t\t\tloaded[name] = loadingPlaceholder\n\t\t\tloadedModule + = modules[name](require, loaded, register, modules)\n\t\t\tloaded[name] = loadedModule\n\t\tend\n\n\t\treturn + loadedModule\n\tend\n\n\treturn require, loaded, register, modules\nend)(nil)\n__bundle_register(\"accessories/AttachmentHelper\", + function(require, _LOADED, __bundle_register, __bundle_modules)\nlocal fontColor\nlocal + BACKGROUNDS = {\n {\n title = \"Ancestral Knowledge\",\n url = + \"http://cloud-3.steamusercontent.com/ugc/1915746489207287888/2F9F6F211ED0F98E66C9D35D93221E4C7FB6DD3C/\",\n + \ fontcolor = { 1, 1, 1 }\n },\n {\n title = \"Astronomical Atlas\",\n + \ url = \"http://cloud-3.steamusercontent.com/ugc/1754695853007989004/9153BC204FC707AE564ECFAC063A11CB8C2B5D1E/\",\n + \ fontcolor = { 1, 1, 1 }\n },\n {\n title = \"Backpack\",\n url + \ = \"http://cloud-3.steamusercontent.com/ugc/2018212896278691928/F55BEFFC2540109C6333179532F583B367FF2EBC/\",\n + \ fontcolor = { 0, 0, 0 }\n },\n {\n title = \"Crystallizer of Dreams\",\n + \ url = \"http://cloud-3.steamusercontent.com/ugc/1915746489207280958/100F16441939E5E23818651D1EB5C209BF3125B9/\",\n + \ fontcolor = { 1, 1, 1 }\n },\n {\n title = \"Diana Stanley\",\n url + \ = \"http://cloud-3.steamusercontent.com/ugc/1754695635919071208/1AB7222850201630826BFFBA8F2BD0065E2D572F/\",\n + \ fontcolor = { 1, 1, 1 }\n },\n {\n title = \"Gloria Goldberg\",\n + \ url = \"http://cloud-3.steamusercontent.com/ugc/1754695635919102502/453D4426118C8A6DE2EA281184716E26CA924C84/\",\n + \ fontcolor = { 1, 1, 1 }\n },\n {\n title = \"Sefina Rousseau\",\n + \ url = \"http://cloud-3.steamusercontent.com/ugc/1754695635919099826/3C3CBFFAADB2ACA9957C736491F470AE906CC953/\",\n + \ fontcolor = { 0, 0, 0 }\n },\n {\n title = \"Stick to the Plan\",\n + \ url = \"http://cloud-3.steamusercontent.com/ugc/2018214163838897493/8E38B96C5A8D703A59009A932432CBE21ABE63A2/\",\n + \ fontcolor = { 1, 1, 1 }\n },\n {\n title = \"Wooden Sledge\",\n url + \ = \"http://cloud-3.steamusercontent.com/ugc/1750192233783143973/D526236AAE16BDBB98D3F30E27BAFC1D3E21F4AC/\",\n + \ fontcolor = { 0, 0, 0 }\n }\n}\n\n-- save state and options to restore onLoad\nfunction + onSave() return JSON.encode({ cardsInBag, showCost, showIcons }) end\n\n-- load + variables and create context menu\nfunction onLoad(savedData)\n local loadedData + = JSON.decode(savedData)\n cardsInBag = loadedData[1] or {}\n showCost + \ = loadedData[2] or true\n showIcons = loadedData[3] or true\n + \ fontColor = getFontColor()\n recreateButtons()\n\n self.addContextMenuItem(\"Select + image\", selectImage)\n self.addContextMenuItem(\"Toggle cost\", function(color)\n + \ showCost = not showCost\n printToColor(\"Show cost of cards: \" .. tostring(showCost), + color, \"White\")\n refresh()\n end)\n\n self.addContextMenuItem(\"Toggle + skill icons\", function(color)\n showIcons = not showIcons\n printToColor(\"Show + skill icons of cards: \" .. tostring(showIcons), color, \"White\")\n refresh()\n + \ end)\nend\n\n-- gets the font color based on background url\nfunction getFontColor()\n + \ local customInfo = self.getCustomObject()\n for i = 1, #BACKGROUNDS do\n if + BACKGROUNDS[i].url == customInfo.diffuse then\n return BACKGROUNDS[i].fontcolor\n + \ end\n end\n return { 1, 1, 1 }\nend\n\n-- called by context menu to change + background image\nfunction selectImage(color)\n -- generate list of options\n + \ local options = {}\n for i = 1, #BACKGROUNDS do\n options[i] = BACKGROUNDS[i].title\n + \ end\n\n -- prompt user to select option\n Player[color].showOptionsDialog(\"Select + image:\", options, 1, function(_, optionIndex)\n local customInfo = self.getCustomObject()\n + \ customInfo.diffuse = BACKGROUNDS[optionIndex].url\n self.setCustomObject(customInfo)\n + \ self.reload()\n end)\nend\n\n-- only allow cards to enter, split decks and + reject other objects\nfunction onObjectEnterContainer(container, object)\n if + container ~= self then return end\n if object.tag == \"Deck\" then\n takeDeckOut(object.getGUID(), + self.getPosition() + Vector(0, 0.1, 0))\n elseif object.tag ~= \"Card\" then\n + \ broadcastToAll(\"The 'Attachment Helper' is meant to be used for cards.\", + \"White\")\n else\n findCard(object.getGUID(), object.getName(), object.getGMNotes())\n + \ recreateButtons()\n end\nend\n\n-- takes the deck out and splits in into + single cards\nfunction takeDeckOut(guid, pos)\n local deck = self.takeObject({ + guid = guid, position = pos, smooth = false })\n for i = 1, #deck.getObjects() + do\n self.putObject(deck.takeObject({ position = pos + Vector(0, 0.1 * i, 0), + smooth = false }))\n end\nend\n\n-- removes leaving cards from the \"cardInBag\" + table\nfunction onObjectLeaveContainer(container, object)\n if container == self + then\n local guid = object.getGUID()\n local found = false\n for i, card + in ipairs(cardsInBag) do\n if card.id == guid then\n table.remove(cardsInBag, + i)\n found = true\n break\n end\n end\n\n if found ~= + true then\n local name = object.getName()\n for i, card in ipairs(cardsInBag) + do\n if card.name == name then\n table.remove(cardsInBag, i)\n + \ break\n end\n end\n end\n recreateButtons()\n end\nend\n\n-- + refreshes displayed buttons based on contained cards\nfunction refresh()\n cardsInBag + = {}\n for _, object in ipairs(self.getObjects()) do\n findCard(object.guid, + object.name, object.gm_notes)\n end\n recreateButtons()\nend\n\n-- gets cost + and icons for a card\nfunction findCard(guid, name, GMNotes)\n local cost = \"\"\n + \ local icons = {}\n local metadata = {}\n local displayName = name\n\n if + displayName == nil or displayName == \"\" then displayName = \"unnamed\" end\n + \ if showCost or showIcons then metadata = JSON.decode(GMNotes) end\n\n if showCost + then\n if GMNotes ~= \"\" then cost = metadata.cost end\n if cost == nil + or cost == \"\" then cost = \"\u2013\" end\n displayName = \"[\" .. cost .. + \"] \" .. displayName\n end\n\n if showIcons then\n if GMNotes ~= \"\" then\n + \ icons[1] = metadata.wildIcons\n icons[2] = metadata.willpowerIcons\n + \ icons[3] = metadata.intellectIcons\n icons[4] = metadata.combatIcons\n + \ icons[5] = metadata.agilityIcons\n end\n\n local IconTypes = { \"Wild\", + \"Willpower\", \"Intellect\", \"Combat\", \"Agility\" }\n local found = false\n + \ for i = 1, 5 do\n if icons[i] ~= nil and icons[i] ~= \"\" then\n if + found == false then\n displayName = displayName .. \"\\n\" .. IconTypes[i] + .. \": \" .. icons[i]\n found = true\n else\n displayName + = displayName .. \" \" .. IconTypes[i] .. \": \" .. icons[i]\n end\n end\n + \ end\n end\n table.insert(cardsInBag, { name = name, displayName = displayName, + id = guid })\nend\n\n-- recreates buttons with up-to-date labels\nfunction recreateButtons()\n + \ self.clearButtons()\n local verticalPosition = 1.65\n\n for _, card in ipairs(cardsInBag) + do\n local id = card.id\n local funcName = \"removeCard\" .. id\n self.setVar(funcName, + function() removeCard(id) end)\n self.createButton({\n label = + card.displayName,\n click_function = funcName,\n function_owner = self,\n + \ position = { 0, -0.1, verticalPosition },\n height = + 200,\n width = 1200,\n font_size = string.len(card.displayName) + > 20 and 75 or 100\n })\n verticalPosition = verticalPosition - 0.5\n end\n\n + \ local countLabel = #cardsInBag\n local fontSize = 250\n if #cardsInBag == + 0 then\n countLabel = \"Attachment Helper\"\n fontSize = 150\n end\n\n + \ self.createButton({\n label = countLabel,\n click_function = + \"none\",\n function_owner = self,\n position = { 0, -0.1, -1.7 },\n + \ height = 0,\n width = 0,\n font_size = fontSize,\n + \ font_color = fontColor\n })\nend\n\n-- click-function for buttons to + take a card out of the bag\nfunction removeCard(cardGUID)\n self.takeObject({\n + \ guid = cardGUID,\n rotation = self.getRotation(),\n position = self.getPosition() + + Vector(0, 0.25, 0),\n callback_function = function(obj) obj.resting = true + end\n })\nend\nend)\n__bundle_register(\"__root\", function(require, _LOADED, + __bundle_register, __bundle_modules)\nrequire(\"accessories/AttachmentHelper\")\nend)\nreturn + __bundle_require(\"__root\")" + LuaScriptState: '[[],true,true]' + MaterialIndex: -1 + MeasureMovement: false + MeshIndex: -1 + Name: Custom_Model_Bag + Nickname: Attachment Helper + Number: 0 + Snap: true + Sticky: true + Tags: + - Asset + Tooltip: true + Transform: + posX: 19.228 + posY: 3.822 + posZ: -19.636 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + Value: 0 + XmlUI: '' +Description: Provides card-sized bags that are useful for cards that are attached + facedown (e.g. Backpack). +DragSelectable: true +GMNotes: '' +GUID: 7f4976 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Infinite_Bag +Nickname: Attachment Helper +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 27.68 + posY: 4.47 + posZ: -31.03 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9.yaml index d2732fdba..65f9c53df 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9.yaml @@ -1,13 +1,13 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: b: 0.94118 - g: 0.12548 + g: 0.125479966 r: 0.62745 ContainedObjects: - !include "Bag Tarot Deck (Scripted) a230f9/Card The Magician \xB7 I 0fd716.yaml" @@ -57,9 +57,9 @@ Transform: posX: -55.03 posY: 1.41 posZ: -78.77 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.45 scaleY: 0.45 scaleZ: 0.45 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Death · XIII a00798.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Death · XIII a00798.yaml index b8385135f..49c19a3f1 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Death · XIII a00798.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Death · XIII a00798.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266313 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: -12.35 posY: 3.34 posZ: 54.46 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Judgement · XX e5e392.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Judgement · XX e5e392.yaml index ea9959ad8..4fa6de5bf 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Judgement · XX e5e392.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Judgement · XX e5e392.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266320 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: -13.79 posY: 3.08 posZ: 64.41 - rotX: 0 - rotY: 270 - rotZ: 178 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 178.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Justice · XI c4282a.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Justice · XI c4282a.yaml index d6c27d326..747a8b748 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Justice · XI c4282a.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Justice · XI c4282a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266311 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: 16.04 posY: 3.39 posZ: 45.85 - rotX: 1 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Strength · VIII e0ad3b.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Strength · VIII e0ad3b.yaml index 30fc09e51..ae8484d2b 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Strength · VIII e0ad3b.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Strength · VIII e0ad3b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266308 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: -12.35 posY: 3.34 posZ: 52.46 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Temperance · XIV ffb72a.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Temperance · XIV ffb72a.yaml index 91bd523e5..ce27a1337 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Temperance · XIV ffb72a.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Temperance · XIV ffb72a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266314 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: 17.19 posY: 3.16 posZ: 48.91 - rotX: 0 - rotY: 270 - rotZ: 356 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 356.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Chariot · VII f633db.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Chariot · VII f633db.yaml index 3c3dfeeda..3d36e00d7 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Chariot · VII f633db.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Chariot · VII f633db.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266307 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: 21.65 posY: 3.33 posZ: 44.49 - rotX: 0 - rotY: 270 - rotZ: 2 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 2.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Devil · XV 8328fd.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Devil · XV 8328fd.yaml index 034b11c65..eddfa7dd6 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Devil · XV 8328fd.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Devil · XV 8328fd.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266315 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: -12.35 posY: 3.58 posZ: 46.46 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Emperor · IV 8be589.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Emperor · IV 8be589.yaml index b5a1c1740..6eb523097 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Emperor · IV 8be589.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Emperor · IV 8be589.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266304 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: -11.97 posY: 3.34 posZ: 57.31 - rotX: 0 - rotY: 90 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Empress · III ee4a47.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Empress · III ee4a47.yaml index 89d8e14d9..cc315d658 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Empress · III ee4a47.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Empress · III ee4a47.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266303 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: -12.35 posY: 3.34 posZ: 48.46 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Fool · 0 01cd9f.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Fool · 0 01cd9f.yaml index 19c7c1a89..863fb3e06 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Fool · 0 01cd9f.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Fool · 0 01cd9f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266300 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: -13.79 posY: 3.56 posZ: 59.35 - rotX: 2 - rotY: 0 - rotZ: 180 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 2.0 + rotY: 0.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hanged Man · XII 522d77.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hanged Man · XII 522d77.yaml index d1efbf8ae..615da7d46 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hanged Man · XII 522d77.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hanged Man · XII 522d77.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266312 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: 20.96 posY: 3.21 posZ: 48.65 - rotX: 0 - rotY: 270 - rotZ: 353 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 353.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hermit · IX e2e3a0.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hermit · IX e2e3a0.yaml index 9ca919ee1..52af83d2d 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hermit · IX e2e3a0.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hermit · IX e2e3a0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266309 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: 20.95 posY: 3.12 posZ: 50.18 - rotX: 0 - rotY: 270 - rotZ: 358 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hierophant · V 2f9064.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hierophant · V 2f9064.yaml index d6a06ccdb..e4c4b6c53 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hierophant · V 2f9064.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hierophant · V 2f9064.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266305 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: 17.93 posY: 3.33 posZ: 44.63 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The High Priestess · II a6d017.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The High Priestess · II a6d017.yaml index 33f6facd8..2cba6e5e5 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The High Priestess · II a6d017.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The High Priestess · II a6d017.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266302 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: -12.11 posY: 3.34 posZ: 55.8 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Lovers · VI d5d07a.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Lovers · VI d5d07a.yaml index 823fd17cb..4b7fbbfcc 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Lovers · VI d5d07a.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Lovers · VI d5d07a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266306 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: 17.61 posY: 3.36 posZ: 46.71 - rotX: 359 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Magician · I 0fd716.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Magician · I 0fd716.yaml index 71272e443..1eb7e04fc 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Magician · I 0fd716.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Magician · I 0fd716.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266301 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: -13.79 posY: 2.98 posZ: 65.42 - rotX: 0 - rotY: 270 - rotZ: 178 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 178.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Moon · XVIII 37c24c.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Moon · XVIII 37c24c.yaml index b5df42d54..6df7b93de 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Moon · XVIII 37c24c.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Moon · XVIII 37c24c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266318 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: -13.79 posY: 4.15 posZ: 52.3 - rotX: 2 - rotY: 0 - rotZ: 180 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 2.0 + rotY: 0.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Star · XVII 37153b.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Star · XVII 37153b.yaml index 71c60effd..b90fff225 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Star · XVII 37153b.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Star · XVII 37153b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266317 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: -13.79 posY: 4.24 posZ: 51.29 - rotX: 2 - rotY: 0 - rotZ: 180 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 2.0 + rotY: 0.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Sun · XIX 65b6cb.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Sun · XIX 65b6cb.yaml index eee333ea6..f97de7877 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Sun · XIX 65b6cb.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Sun · XIX 65b6cb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266319 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: -13.79 posY: 3.9 posZ: 55.32 - rotX: 2 - rotY: 0 - rotZ: 180 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 2.0 + rotY: 0.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Tower · XVI 25ae32.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Tower · XVI 25ae32.yaml index 80faaa1d2..28b2ac782 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Tower · XVI 25ae32.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Tower · XVI 25ae32.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266316 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: -13.79 posY: 2.56 posZ: 70.46 - rotX: 0 - rotY: 270 - rotZ: 178 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 178.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The World · XXI dacc75.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The World · XXI dacc75.yaml index 2816ded72..251d9b427 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The World · XXI dacc75.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The World · XXI dacc75.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266321 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: -13.79 posY: 2.64 posZ: 69.45 - rotX: 0 - rotY: 270 - rotZ: 178 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 178.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Wheel of Fortune · X 00f067.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Wheel of Fortune · X 00f067.yaml index 96b4f87e8..7aa476ec7 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Wheel of Fortune · X 00f067.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Wheel of Fortune · X 00f067.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266310 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: 19.68 posY: 3.3 posZ: 41.77 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Token Source 124381.yaml b/unpacked/Bag Token Source 124381.yaml index ad4b80757..f36574233 100644 --- a/unpacked/Bag Token Source 124381.yaml +++ b/unpacked/Bag Token Source 124381.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: b: 0.63589 - g: 0.16729 - r: 0.15842 + g: 0.167289972 + r: 0.158419967 ContainedObjects: - !include 'Bag Token Source 124381/Custom_Token Damage cd2a02.yaml' - !include 'Bag Token Source 124381/Custom_Token Horror 36be72.yaml' @@ -38,12 +38,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 78.46 - posY: 1.14 + posX: 78.0 + posY: 1.05 posZ: -1.0 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.53 scaleY: 0.53 scaleZ: 0.53 diff --git a/unpacked/Bag Token Source 124381/Custom_Tile ClueDoom a3fb6c.yaml b/unpacked/Bag Token Source 124381/Custom_Tile ClueDoom a3fb6c.yaml index e91dde41c..b2d54ee61 100644 --- a/unpacked/Bag Token Source 124381/Custom_Tile ClueDoom a3fb6c.yaml +++ b/unpacked/Bag Token Source 124381/Custom_Tile ClueDoom a3fb6c.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: https://i.imgur.com/EoL7yaZ.png ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357164917/1D06F1DC4D6888B6F57124BD2AFE20D0B0DA15A8/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -41,11 +41,11 @@ Transform: posX: 78.66 posY: 2.4 posZ: -1.06 - rotX: 8 - rotY: 90 - rotZ: 0 + rotX: 8.0 + rotY: 90.0 + rotZ: 0.0 scaleX: 0.25 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.25 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Token Source 124381/Custom_Tile Path 7234af.yaml b/unpacked/Bag Token Source 124381/Custom_Tile Path 7234af.yaml index 1b24ebc5e..2fec40649 100644 --- a/unpacked/Bag Token Source 124381/Custom_Tile Path 7234af.yaml +++ b/unpacked/Bag Token Source 124381/Custom_Tile Path 7234af.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.60453 @@ -13,10 +13,10 @@ CustomImage: Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: https://i.imgur.com/vppt2my.png ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -38,9 +38,9 @@ Snap: true States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.6045295 @@ -52,10 +52,10 @@ States: Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: path @@ -84,16 +84,16 @@ States: rotX: 359.9201 rotY: 269.9961 rotZ: 0.0168742146 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' '3': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.6045295 @@ -105,10 +105,10 @@ States: Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: path @@ -138,7 +138,7 @@ States: rotY: 272.9828 rotZ: 0.01687373 scaleX: 0.8 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.8 Value: 0 XmlUI: '' @@ -150,11 +150,11 @@ Transform: posX: -50.37 posY: 1.75 posZ: -0.17 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Token Source 124381/Custom_Token Damage cd2a02.yaml b/unpacked/Bag Token Source 124381/Custom_Token Damage cd2a02.yaml index 4ba59c161..818d6999a 100644 --- a/unpacked/Bag Token Source 124381/Custom_Token Damage cd2a02.yaml +++ b/unpacked/Bag Token Source 124381/Custom_Token Damage cd2a02.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857974350/E16168497E847B690A16F1C0914E4F5C872555B6/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -38,24 +38,24 @@ Snap: false States: '10': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857975474/DFCA4DBDEDCC936D2A2888A98C9B2FEBCD30C22B/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -80,34 +80,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '11': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857975559/D34362DF759435E36BF4109C8EE397D96EDE6B56/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -131,34 +131,34 @@ States: posX: -26.8049335 posY: 1.00999987 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '12': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857975658/F7CBB1000A579C9642A259174E611C0118190022/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -182,34 +182,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '13': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857975808/E0965014A9756E7CB50A144006363535D43BA6F5/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -233,34 +233,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '14': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857975959/B5BB691A4BF8E83DD2B514C81EC38E8E082ED787/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -284,34 +284,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '15': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857976119/2EFDA564FE2E9F58EB47F21B4CB69117876DCC7A/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -335,34 +335,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '16': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857976252/7FE12F57BD8ED418097467B0472B2B510C5B3D05/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -386,34 +386,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '17': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857976402/BFC6C6655B0EB1C3DFD3819AFEA599F8D42CEB64/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -437,34 +437,34 @@ States: posX: -26.8049335 posY: 1.00999987 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '18': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857976543/32E963CDBABCDEBEF3FB499670577A19689E1D8B/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -488,34 +488,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '19': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857976679/9CFECB352760F82A558905BC6874DD47F807F785/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -539,34 +539,34 @@ States: posX: -26.8049335 posY: 1.01000011 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857974497/B53160AEF67C32741FB7393B887A745C5A0403A6/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -590,34 +590,34 @@ States: posX: -26.8049335 posY: 1.00999987 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '20': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857976805/C81E859758C7B35531566E99CFFDC10626F184D2/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -641,34 +641,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '21': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857976909/640634C5EC652071E14B8EDDEB8800ED4CFECBE3/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -692,34 +692,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '22': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857977001/6854680D0F7FE536050A1FDDC5A31B642BAA82FB/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -743,34 +743,34 @@ States: posX: -26.8049335 posY: 1.00999987 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '23': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857977114/58B8C6AFC58BEC7F5CDA992B399235E1D1CE216A/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -794,34 +794,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '24': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857977249/7D1F115182E691E90A505760A3349D237C0F16E1/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -845,34 +845,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '25': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857977373/3EB829A410A896DFBA803FB029394976F6AE0CCB/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -896,34 +896,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '26': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857977465/9CA5019A545C6BF2AA1BBB3112267EACAF52C01E/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -947,34 +947,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '27': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857977563/7037BEF939CFBDC031481366476C44C7C3EF322D/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -998,34 +998,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '28': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857977715/F7661D4ADB8F7071FB4E836B2BAF43C3820848E4/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -1049,34 +1049,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '29': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857977844/58C1F8974EEF4961249B44B8517B350F18753379/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -1100,34 +1100,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '3': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857974625/F8D98C87DCB93C8CDF106FFAB3DA836B22DA8BEB/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -1151,34 +1151,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '30': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857977960/7AC1D20BCD93FD3D035EC26A4C108A82E72EBA86/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -1202,34 +1202,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '31': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857978096/D6F6F7EDF5E14EE6B9EE21F807E7CF4F9F9EC028/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -1253,34 +1253,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '32': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857978200/E6CDADB9AAB0A79E8526D7A4A1F49471893F7947/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -1304,34 +1304,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '33': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857978337/818E96F0D2BCB45CC90CEE863677312245594B4C/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -1355,34 +1355,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '34': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857978437/B98FDAB4D1EBC1D40E969DEF9CA7143C8D251BB4/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -1406,34 +1406,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '35': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857978553/9A27448271331CDD6292E14F2CB49D71C50CEBF3/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -1457,34 +1457,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '36': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857978668/D56BF0309ECBDDC4DC4C8FFB71C8B80B320A5E11/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -1508,34 +1508,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '37': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857978779/A532740121C41FEF6E30A9E98F933AE1D15907CB/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -1559,34 +1559,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '38': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857978910/695348D90CBB1D5EF857964662D3D29478FAECC2/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -1610,34 +1610,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '39': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857979053/575819DDF05E4E6FBFA296DD68E7AF6A764CE2B6/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -1661,34 +1661,34 @@ States: posX: -26.8049335 posY: 1.00999987 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '4': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857974789/EC9F446EA2DF1E2AE8369138E6873B28852469F1/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -1712,34 +1712,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '40': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857979152/FFC073DECEC5837E340C37F6CE4F40938E40C514/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -1763,34 +1763,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '41': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857979285/C69BFF8D1ECC77BF0F5DAD355DD6E84A6A268731/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -1814,34 +1814,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '42': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857979439/375AE4A39169F62B3447BDC1AA4A26A6690A66D7/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -1865,34 +1865,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '43': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857979609/C5BFCF1A87F14282C61EC920FD21D9B25E883693/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -1916,34 +1916,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '44': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857979713/BEB28A94C343F57F6DC3A81F32DDB657CD896EBC/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -1967,34 +1967,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '45': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857979797/B27B29B4FF6D550F532D46CD0F7A3EDF984FD39A/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -2018,34 +2018,34 @@ States: posX: -26.8049335 posY: 1.00999987 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '46': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857979901/BA1482E12F3DB002FADB2F5C74FA48EA8DE1E31F/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -2069,34 +2069,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '47': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857980020/3756AD3A8C521914A763443EC79407CB6F38B8E4/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -2120,34 +2120,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '48': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857980124/599CAF38B47AD4B29319213CD65C40946DF84777/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -2171,34 +2171,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '49': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857980220/D3682CD04922D7709D49C1066AD921221AD92F74/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -2222,34 +2222,34 @@ States: posX: -26.8049335 posY: 1.01000011 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '5': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857974892/4AFA955A876D8E5BD28DA6164F38EDFBC9988E0F/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -2273,34 +2273,34 @@ States: posX: -26.8049335 posY: 1.00999987 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '50': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857980328/86FB8E62D4EAD71432622244C92A7B261D1D2F6A/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -2324,34 +2324,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '6': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857975047/33060EB9820DE72C983844818A81444377736BB1/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -2375,34 +2375,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '7': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857975160/6B9DD5F5EBFF943633F1A97D4F2D5EAA15D2E3CA/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -2426,34 +2426,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '8': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857975274/4E93F71661D310DB5FB0472E49E935F16AD0B16E/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -2477,34 +2477,34 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' '9': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 15 + MergeDistancePixels: 15.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1615094763857975360/E524936A793CC5871EE74EBE75388A61ABDD44D0/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -2528,11 +2528,11 @@ States: posX: -26.8049335 posY: 1.01 posZ: 9.519388 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.239203319 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.239203319 Value: 0 XmlUI: '' @@ -2542,11 +2542,11 @@ Transform: posX: 78.67 posY: 2.35 posZ: -1.21 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.24 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.24 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Token Source 124381/Custom_Token Horror 36be72.yaml b/unpacked/Bag Token Source 124381/Custom_Token Horror 36be72.yaml index 1224a3552..fc1d0fc34 100644 --- a/unpacked/Bag Token Source 124381/Custom_Token Horror 36be72.yaml +++ b/unpacked/Bag Token Source 124381/Custom_Token Horror 36be72.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 5 + MergeDistancePixels: 5.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357163535/6D9E0756503664D65BDB384656AC6D4BD713F5FC/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -38,24 +38,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 5 + MergeDistancePixels: 5.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357163230/ED46F8BBAEDB4D3C96C654D48C56110D35F3F54F/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: horror @@ -80,34 +80,34 @@ States: posX: -27.7533741 posY: 1.210006 posZ: 15.9442654 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.25 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.25 Value: 0 XmlUI: '' '3': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 5 + MergeDistancePixels: 5.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357162977/E5D453CC14394519E004B4F8703FC425A7AE3D6C/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: horror @@ -132,34 +132,34 @@ States: posX: -27.7533741 posY: 1.210006 posZ: 15.9442368 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.25 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.25 Value: 0 XmlUI: '' '4': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 5 + MergeDistancePixels: 5.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357164483/5E22FEAE253AE65BDE3FA09E4EE7133569F7E194/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: horror @@ -184,34 +184,34 @@ States: posX: -27.7533741 posY: 1.21000612 posZ: 15.9442348 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.25 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.25 Value: 0 XmlUI: '' '5': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 5 + MergeDistancePixels: 5.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357164251/34DC7172A2B433047DA853796DB52AECE019F99F/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: horror @@ -236,34 +236,34 @@ States: posX: -27.7533741 posY: 1.21000612 posZ: 15.9442024 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.25 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.25 Value: 0 XmlUI: '' '6': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 5 + MergeDistancePixels: 5.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357164030/0A12FD352F28A560EA7E7952D8CA618A5245F1E0/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: horror @@ -288,34 +288,34 @@ States: posX: -27.7533741 posY: 1.21000624 posZ: 15.94415 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.25 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.25 Value: 0 XmlUI: '' '7': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 5 + MergeDistancePixels: 5.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357114485/8B2B8A9F61CC2D8C1F10977ABDB4BA2423AD143F/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: horror @@ -340,34 +340,34 @@ States: posX: -27.7533741 posY: 1.21000612 posZ: 15.944108 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.25 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.25 Value: 0 XmlUI: '' '8': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 5 + MergeDistancePixels: 5.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357163806/F397C22A8DDB8F22E08E42E6449C3B5D8CFDB313/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: horror @@ -392,34 +392,34 @@ States: posX: -27.753376 posY: 1.210006 posZ: 15.9440966 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.25 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.25 Value: 0 XmlUI: '' '9': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 5 + MergeDistancePixels: 5.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357110165/AD791E6817304851C0ABD7AE97AA60326AC14538/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: horror @@ -444,11 +444,11 @@ States: posX: -27.753376 posY: 1.21000612 posZ: 15.9440622 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.25 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.25 Value: 0 XmlUI: '' @@ -458,11 +458,11 @@ Transform: posX: 79.03 posY: 2.31 posZ: -1.38 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.25 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.25 Value: 0 XmlUI: '' diff --git a/unpacked/Bag Token Source 124381/Custom_Token Resource 00d19a.yaml b/unpacked/Bag Token Source 124381/Custom_Token Resource 00d19a.yaml index ac0d5b3f6..157617616 100644 --- a/unpacked/Bag Token Source 124381/Custom_Token Resource 00d19a.yaml +++ b/unpacked/Bag Token Source 124381/Custom_Token Resource 00d19a.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 5 + MergeDistancePixels: 5.0 Stackable: true StandUp: false Thickness: 0.3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -41,9 +41,9 @@ Transform: posX: 78.85 posY: 2.27 posZ: -1.47 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.17 scaleY: 0.17 scaleZ: 0.17 diff --git a/unpacked/Bag Token Source 124381/Custom_Token Resource Counter 498ec0.yaml b/unpacked/Bag Token Source 124381/Custom_Token Resource Counter 498ec0.yaml index 030dad210..e003f64a1 100644 --- a/unpacked/Bag Token Source 124381/Custom_Token Resource Counter 498ec0.yaml +++ b/unpacked/Bag Token Source 124381/Custom_Token Resource Counter 498ec0.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomToken: - MergeDistancePixels: 5 + MergeDistancePixels: 5.0 Stackable: false StandUp: false Thickness: 0.1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/949599153663401115/EAA6D40FC6E15204BBE551BCDED35CC8C75111BF/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -38,14 +38,14 @@ Snap: false Sticky: true Tooltip: false Transform: - posX: 0 - posY: 3 - posZ: 0 - rotX: 0 - rotY: 270 - rotZ: 0 + posX: 0.0 + posY: 3.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.26 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.26 Value: 0 XmlUI: '' diff --git a/unpacked/BlockRectangle Table Divider 612072.yaml b/unpacked/BlockRectangle Table Divider 612072.yaml index 9ab38775b..be17cfd53 100644 --- a/unpacked/BlockRectangle Table Divider 612072.yaml +++ b/unpacked/BlockRectangle Table Divider 612072.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.7451 @@ -28,14 +28,14 @@ Snap: true Sticky: true Tooltip: false Transform: - posX: 0 + posX: 0.0 posY: 1.44 - posZ: 42 - rotX: 0 - rotY: 90 - rotZ: 0 + posZ: 42.0 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 scaleX: 0.25 scaleY: 0.1 - scaleZ: 70 + scaleZ: 70.0 Value: 0 XmlUI: '' diff --git a/unpacked/BlockRectangle Table Divider 75937e.yaml b/unpacked/BlockRectangle Table Divider 75937e.yaml index 7140214e6..6ca614425 100644 --- a/unpacked/BlockRectangle Table Divider 75937e.yaml +++ b/unpacked/BlockRectangle Table Divider 75937e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.7451 @@ -30,12 +30,12 @@ Tooltip: false Transform: posX: -16.81 posY: 1.55 - posZ: -71 - rotX: 0 - rotY: 0 - rotZ: 0 + posZ: -71.0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.25 scaleY: 0.1 - scaleZ: 25 + scaleZ: 25.0 Value: 0 XmlUI: '' diff --git a/unpacked/BlockRectangle Table Divider 8646eb.yaml b/unpacked/BlockRectangle Table Divider 8646eb.yaml index 0bfb46055..052b05e16 100644 --- a/unpacked/BlockRectangle Table Divider 8646eb.yaml +++ b/unpacked/BlockRectangle Table Divider 8646eb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.7451 @@ -30,12 +30,12 @@ Tooltip: false Transform: posX: -29.99 posY: 1.53 - posZ: 71 - rotX: 0 - rotY: 0 - rotZ: 0 + posZ: 71.0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.25 scaleY: 0.1 - scaleZ: 25 + scaleZ: 25.0 Value: 0 XmlUI: '' diff --git a/unpacked/BlockRectangle Table Divider 975c39.yaml b/unpacked/BlockRectangle Table Divider 975c39.yaml index 617827ee8..cfcec2108 100644 --- a/unpacked/BlockRectangle Table Divider 975c39.yaml +++ b/unpacked/BlockRectangle Table Divider 975c39.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.7451 @@ -28,14 +28,14 @@ Snap: true Sticky: true Tooltip: false Transform: - posX: 0 + posX: 0.0 posY: 1.44 - posZ: -42 - rotX: 0 - rotY: 90 - rotZ: 0 + posZ: -42.0 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 scaleX: 0.25 scaleY: 0.1 - scaleZ: 70 + scaleZ: 70.0 Value: 0 XmlUI: '' diff --git a/unpacked/Card Detailed phase reference 68fe54.yaml b/unpacked/Card Detailed phase reference 68fe54.yaml index 6f7740915..72db180af 100644 --- a/unpacked/Card Detailed phase reference 68fe54.yaml +++ b/unpacked/Card Detailed phase reference 68fe54.yaml @@ -1,13 +1,13 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 265902 ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 CustomDeck: '2659': BackIsHidden: false @@ -38,14 +38,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -62 + posX: -62.0 posY: 1.5 - posZ: 71 - rotX: 0 - rotY: 270 - rotZ: 0 + posZ: 71.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 5.88 - scaleY: 1 + scaleY: 1.0 scaleZ: 5.88 Value: 0 XmlUI: '' diff --git a/unpacked/Card Rules Index 91c83e.yaml b/unpacked/Card Rules Index 91c83e.yaml index 3f435bf31..aa99768b2 100644 --- a/unpacked/Card Rules Index 91c83e.yaml +++ b/unpacked/Card Rules Index 91c83e.yaml @@ -1,13 +1,13 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 266103 ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 CustomDeck: '2661': BackIsHidden: false @@ -38,14 +38,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -62 + posX: -62.0 posY: 1.5 - posZ: 89 - rotX: 0 - rotY: 270 - rotZ: 0 + posZ: 89.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 5.88 - scaleY: 1 + scaleY: 1.0 scaleZ: 5.88 Value: 0 XmlUI: '' diff --git a/unpacked/Checker_black Arkham Deck Cutter 445115.ttslua b/unpacked/Checker_black Arkham Deck Cutter 445115.ttslua index 5f9028c49..ef9c31b55 100644 --- a/unpacked/Checker_black Arkham Deck Cutter 445115.ttslua +++ b/unpacked/Checker_black Arkham Deck Cutter 445115.ttslua @@ -45,34 +45,32 @@ __bundle_register("__root", function(require, _LOADED, __bundle_register, __bund require("util/DeckCutter") end) __bundle_register("util/DeckCutter", function(require, _LOADED, __bundle_register, __bundle_modules) ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2020-09-26 5:50 p.m. ---- - ----@param index number ----@param player_color string +-- cut 3 (6) cards from a deck if numpad 1 (2) is pressed function onScriptingButtonDown(index, player_color) - if not (index>=1 and index<=3) then return end + if not (index >= 1 and index <= 2) then return end - local count = index * 3 - - ---@type Player + local count = index * 3 local player = Player[player_color] - local object = player:getHoverObject() + local object = player.getHoverObject() + if not object then + broadcastToColor("Hover over a deck and try again.", player_color, "Orange") + return + end + if object.tag ~= "Deck" then + broadcastToColor("Hover over a deck and try again.", player_color, "Orange") + return + end + if count >= object.getQuantity() then + broadcastToColor("Deck is too small to cut " .. count .. " cards.", player_color, "Orange") + return + end - if (not object) then return end - if (object.tag~="Deck") then return end - if (count >= object:getQuantity()) then return end - - for _ =1, count do - local target_position = object:positionToWorld(Vector(0, 0, -3.5)) - - object:takeObject { + local pos = object.positionToWorld(Vector(0, 0, -3.5)) + for _ = 1, count do + object.takeObject { index = 0, - position = target_position, + position = pos, smooth = false } end diff --git a/unpacked/Checker_black Arkham Deck Cutter 445115.yaml b/unpacked/Checker_black Arkham Deck Cutter 445115.yaml index b0724d887..3176b8dbd 100644 --- a/unpacked/Checker_black Arkham Deck Cutter 445115.yaml +++ b/unpacked/Checker_black Arkham Deck Cutter 445115.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 - r: 0 + b: 0.0 + g: 0.0 + r: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -29,12 +29,12 @@ Tags: - arkham_setup_memory_object Tooltip: true Transform: - posX: 77.16 - posY: 1.3 + posX: 78.0 + posY: 1.21 posZ: 6.32 - rotX: 0 - rotY: 270 - rotZ: 180 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 scaleX: 0.25 scaleY: 0.25 scaleZ: 0.25 diff --git a/unpacked/Checker_black Command Manager a0b1de.ttslua b/unpacked/Checker_black Command Manager a0b1de.ttslua deleted file mode 100644 index 52bde0332..000000000 --- a/unpacked/Checker_black Command Manager a0b1de.ttslua +++ /dev/null @@ -1,287 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-08-22 6:36 a.m. ---- - ----@class CommandTableEntry ----@field public object TTSObject ----@field public runOn ArkhamImport_Command_RunDirectives -local CommandTableEntry = {} - ----@type table -local commands = {} - ----@type table -local found_commands = {} - ----@type table -local command_state - -local function load_commands() - local command_objects = getObjectsWithTag("import_command") - - for _, object in ipairs(command_objects) do - commands[object:getVar("command_name")] = { - object = object, - runOn = object:getTable("runOn") - } - end -end - ----@param configuration ArkhamImportConfiguration ----@param message string ----@return ArkhamImport_CommandManager_InitializationResults -local function build_error(configuration, message) - return { - configuration = configuration, - is_successful = false, - error_message = message - } -end - ----@param source table ----@param updates table -local function merge_tables(source, updates) - for key, _ in pairs(source) do - local update = updates[key] - if update~=nil then - source[key] = update - end - end -end - ----@param instruction TTSObject ----@param initialization_state any ----@param arguments string[] ----@return ArkhamImport_CommandManager_InitializationResults|nil -local function run_instruction(instruction, initialization_state, arguments) - ---@type ArkhamImport_Command_DescriptionInstructionResults - local result = instruction:call("do_instruction", { - configuration = initialization_state.configuration, - command_state = initialization_state.command_state, - arguments = arguments - }) - - if (not result) or type(result)~="table" then - return build_error(initialization_state.configuration, table.concat({"Command \"", instruction:getName(), "\" did not return a table from do_instruction call. Type \"", type(result), "\" was returned."})) - end - - if not result.is_successful then - return build_error(result.configuration, result.error_message) - end - - merge_tables(initialization_state, result) -end - ----@param description string ----@param initialization_state table ----@return ArkhamImport_CommandManager_InitializationResults|nil -local function initialize_instructions(description, initialization_state) - for _, instruction in ipairs(parse(description)) do - local command = commands[instruction.command] - - if command==nil then - return build_error(initialization_state.configuration, table.concat({ "Could not find command \"", command, "\"."})) - end - - found_commands[instruction.command] = true - - if command.runOn.instructions then - local error = run_instruction(command.object, initialization_state, instruction.arguments) - if error then return error end - end - end -end - ----@param parameters ArkhamImport_CommandManager_InitializationArguments ----@return table -local function create_initialize_state(parameters) - return { - configuration = parameters.configuration, - command_state = {} - } -end - ----@param parameters ArkhamImport_CommandManager_InitializationArguments ----@return ArkhamImport_CommandManager_InitializationResults -function initialize(parameters) - found_commands = {} - load_commands() - - local initialization_state = create_initialize_state(parameters) - - local error = initialize_instructions(parameters.description, initialization_state) - if error then return error end - - command_state = initialization_state.command_state - - return { - configuration = initialization_state.configuration, - is_successful = true - } -end - ----@param parameters ArkhamImport_CommandManager_HandlerArguments ----@return table -local function create_handler_state(parameters) - return { - card = parameters.card, - handled = false, - zone = parameters.zone, - command_state = command_state - }, - { - configuration = parameters.configuration, - source_guid = parameters.source_guid - } -end - ----@param card ArkhamImportCard ----@param zone = string[] ----@param handled boolean ----@param error_message string ----@return ArkhamImport_CommandManager_HandlerResults -local function create_handler_error(card, zone, handled, error_message) - return { - handled = handled, - card = card, - zone = zone, - is_successful = false, - error_message = error_message - } -end - ----@param handler TTSObject ----@param handler_state table ----@param handler_constants table ----@return ArkhamImport_CommandManager_HandlerResults|nil -local function call_handler(handler, handler_state, handler_constants) - ---@type ArkhamImport_CommandManager_HandlerResults - local results = handler:call("handle_card", { - configuration = handler_constants.configuration, - source_guid = handler_constants.source_guid, - card = handler_state.card, - zone = handler_state.zone, - command_state = handler_state.command_state, - }) - - if not results.is_successful then return create_handler_error(results.card, results.zone, results.handled, results.error_message) end - - merge_tables(handler_state, results) - command_state = handler_state.command_state -end - ----@param handler_state table ----@param handler_constants table ----@return ArkhamImport_CommandManager_HandlerResults|nil -local function run_handlers(handler_state, handler_constants) - for command_name, _ in pairs(found_commands) do - local command = commands[command_name] - if command.runOn.handlers then - local error = call_handler(command.object, handler_state, handler_constants) - if error then return error end - - if (handler_state.handled) then return end - end - end -end - ----@param parameters ArkhamImport_CommandManager_HandlerArguments ----@return ArkhamImport_CommandManager_HandlerResults -function handle(parameters) - local handler_state, handler_constants = create_handler_state(parameters) - - local error = run_handlers(handler_state, handler_constants) - if error then return error end - - return { - handled = handler_state.handled, - card = handler_state.card, - zone = handler_state.zone, - is_successful = true - } -end - ----@param description string ----@return ArkhamImportCommandParserResult[] -function parse(description) - local input = description - - if #input<=4 then return {} end - - ---@type string - local current, l1, l2, l3 = "", "", "", "" - - local concat = table.concat - - local function advance() - current, l1, l2, l3 = l1, l2, l3, input:sub(1,1) - input = input:sub(2) - end - - local function advance_all() - current, l1, l2, l3 = input:sub(1,1), input:sub(2,2), input:sub(3,3), input:sub(4,4) - input = input:sub(5) - end - - advance_all() - - ---@type ArkhamImportCommandParserResult[] - local results = {} - - ---@type string - local command - - ---@type string[] - local arguments = {} - - ---@type string - local separator - - ---@type string[] - local result = {} - - while #current>0 do - if current=="<" and l1=="?" and l2 == "?" then - command = nil - arguments = {} - separator = l3 - result = {} - - advance_all() - elseif current == "?" and l1 == "?" and l2 == ">" then - if not command then - table.insert(results, { - command = concat(result), - arguments = {} - }) - else - table.insert(arguments, concat(result)) - table.insert(results, { - command = command, - arguments = arguments - }) - end - - separator = nil - current, l1, l2, l3 = l3, input:sub(1,1), input:sub(2,2), input:sub(3,3) - input = input:sub(4) - elseif current == separator then - if not command then - command = concat(result) - else - table.insert(arguments, concat(result)) - end - result = {} - advance() - else - if separator~=nil then - table.insert(result, current) - end - advance() - end - end - - return results -end \ No newline at end of file diff --git a/unpacked/Checker_black Command Manager a0b1de.yaml b/unpacked/Checker_black Command Manager a0b1de.yaml deleted file mode 100644 index 7d548ad7d..000000000 --- a/unpacked/Checker_black Command Manager a0b1de.yaml +++ /dev/null @@ -1,40 +0,0 @@ -AltLookAngle: - x: 0 - y: 0 - z: 0 -Autoraise: true -ColorDiffuse: - b: 0 - g: 0 - r: 0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: a0b1de -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: true -LuaScript: !include 'Checker_black Command Manager a0b1de.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Checker_black -Nickname: Command Manager -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 77.06 - posY: 1.3 - posZ: 9.38 - rotX: 0 - rotY: 270 - rotZ: 180 - scaleX: 0.25 - scaleY: 0.25 - scaleZ: 0.25 -Value: 0 -XmlUI: '' diff --git a/unpacked/Checker_black UI Builder ddd2eb.ttslua b/unpacked/Checker_black UI Builder ddd2eb.ttslua deleted file mode 100644 index b7102e4fa..000000000 --- a/unpacked/Checker_black UI Builder ddd2eb.ttslua +++ /dev/null @@ -1,77 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-08-24 9:55 a.m. ---- - --- Please call this first. It makes things so much easier. ----@param target TTSObject ----@param callback_name string ----@return number -local function make_decktype_checkbox(target, callback_name) - -- Create Private/Published checkbox - target:createButton { - click_function = callback_name, - function_owner = target, - position = Vector(-0.33, 0.1, -0.255), - width = 2100, - height = 500, - tooltip = "Click to toggle Private/Published deck ID", - label = "Private", - font_size = 350, - scale = Vector(0.1, 0.1, 0.1), - color = Color(0.9, 0.7, 0.5), - hover_color = Color(0.4, 0.6, 0.8) - } - return target:getButtons()[1].index -- If we do this first, we know that our index is our new button -end - -function noop() end - ----@param target TTSObject ----@param debug_deck_id string|nil -local function make_text(target, debug_deck_id) - -- Create textbox - target:createInput { - function_owner = self, - position = Vector(0.33, 0.1, -0.255), - width = 2200, - height = 500, - scale = Vector(0.1, 0.1, 0.1), - font_size = 450, - tooltip = "*****PLEASE USE AN UNPUBLISHED DECK IF JUST FOR TTS TO AVOID FLOODING ARKHAMDB PUBLISHED DECK LISTS!*****\nInput deck ID from ArkhamDB URL of the deck\nExample: For the URL 'https://arkhamdb.com/decklist/view/101/knowledge-overwhelming-solo-deck-1.0', you should input '101'", - alignment = 3, - value = debug_deck_id or "", - color = Color(0.9, 0.7, 0.5), - validation = 2, - input_function = "noop" - } -end - ----@param target TTSObject ----@param callback_name string -local function make_button(target, callback_name) - -- Create Button - target:createButton { - click_function = callback_name, - function_owner = target, - position = Vector(0.0, 0.05, -0.1), - width = 300, - height = 100, - tooltip = "Click to build your deck!", - scale = Vector(1, 1, 0.6), - color = Color.Black - } -end - ----@param parameters ArkhamImportUIParameters ----@return number -function create_ui(parameters) - local target = getObjectFromGUID(parameters.target_guid) - - local index = make_decktype_checkbox(target, parameters.checkbox_toggle_callback_name) - make_text(target, parameters.debug_deck_id) - make_button(target, parameters.build_deck_callback_name) - - return index -end \ No newline at end of file diff --git a/unpacked/Checker_white Configuration 03804b.yaml b/unpacked/Checker_white Configuration 03804b.yaml index 0a363f9c6..b9d09f792 100644 --- a/unpacked/Checker_white Configuration 03804b.yaml +++ b/unpacked/Checker_white Configuration 03804b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 1.0 diff --git a/unpacked/Checker_white Token Spawner 36b4ee.ttslua b/unpacked/Checker_white Token Spawn Tool 36b4ee.ttslua similarity index 95% rename from unpacked/Checker_white Token Spawner 36b4ee.ttslua rename to unpacked/Checker_white Token Spawn Tool 36b4ee.ttslua index 2e72788c1..44063f06f 100644 --- a/unpacked/Checker_white Token Spawner 36b4ee.ttslua +++ b/unpacked/Checker_white Token Spawn Tool 36b4ee.ttslua @@ -42,14 +42,11 @@ local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = ( return require, loaded, register, modules end)(nil) __bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) -require("util/TokenSpawner") +require("util/TokenSpawnTool") end) -__bundle_register("util/TokenSpawner", function(require, _LOADED, __bundle_register, __bundle_modules) +__bundle_register("util/TokenSpawnTool", function(require, _LOADED, __bundle_register, __bundle_modules) local tokenManager = require("core/token/TokenManager") - local TOKEN_INDEX = {} -TOKEN_INDEX[1] = false -TOKEN_INDEX[2] = false TOKEN_INDEX[3] = "resourceCounter" TOKEN_INDEX[4] = "damage" TOKEN_INDEX[5] = "path" @@ -598,6 +595,28 @@ do { container = container, object = object }) end + -- counts the VP on locations in the play area + PlayAreaApi.countVP = function() + return getObjectFromGUID(PLAY_AREA_GUID).call("countVP") + end + + -- highlights all locations in the play area without metadata + ---@param state Boolean True if highlighting should be enabled + PlayAreaApi.highlightMissingData = function(state) + return getObjectFromGUID(PLAY_AREA_GUID).call("highlightMissingData", state) + end + + -- highlights all locations in the play area with VP + ---@param state Boolean True if highlighting should be enabled + PlayAreaApi.highlightCountedVP = function(state) + return getObjectFromGUID(PLAY_AREA_GUID).call("highlightCountedVP", state) + end + + -- Checks if an object is in the play area (returns true or false) + PlayAreaApi.isInPlayArea = function(object) + return getObjectFromGUID(PLAY_AREA_GUID).call("isInPlayArea", object) + end + return PlayAreaApi end end) diff --git a/unpacked/Checker_white Token Spawner 36b4ee.yaml b/unpacked/Checker_white Token Spawn Tool 36b4ee.yaml similarity index 66% rename from unpacked/Checker_white Token Spawner 36b4ee.yaml rename to unpacked/Checker_white Token Spawn Tool 36b4ee.yaml index e801b88dd..39e157b2b 100644 --- a/unpacked/Checker_white Token Spawner 36b4ee.yaml +++ b/unpacked/Checker_white Token Spawn Tool 36b4ee.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 Description: '' DragSelectable: true GMNotes: '' @@ -18,21 +18,21 @@ HideWhenFaceDown: false IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: true -LuaScript: !include 'Checker_white Token Spawner 36b4ee.ttslua' +LuaScript: !include 'Checker_white Token Spawn Tool 36b4ee.ttslua' LuaScriptState: '' MeasureMovement: false Name: Checker_white -Nickname: Token Spawner +Nickname: Token Spawn Tool Snap: true Sticky: true Tooltip: true Transform: - posX: 77.16 - posY: 1.3 + posX: 78.0 + posY: 1.21 posZ: 6.95 - rotX: 0 - rotY: 270 - rotZ: 180 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 scaleX: 0.25 scaleY: 0.25 scaleZ: 0.25 diff --git a/unpacked/Checker_white Token Spawn Tracker e3ffc9.ttslua b/unpacked/Checker_white Token Spawn Tracker e3ffc9.ttslua index 705893be3..18d237bf3 100644 --- a/unpacked/Checker_white Token Spawn Tracker e3ffc9.ttslua +++ b/unpacked/Checker_white Token Spawn Tracker e3ffc9.ttslua @@ -41,6 +41,9 @@ local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = ( return require, loaded, register, modules end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/token/TokenSpawnTracker") +end) __bundle_register("core/token/TokenSpawnTracker", function(require, _LOADED, __bundle_register, __bundle_modules) local spawnedCardGuids = { } @@ -128,7 +131,4 @@ function onObjectEnterZone(zone, enterObject) end end end) -__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) -require("core/token/TokenSpawnTracker") -end) return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Checker_white Token Spawn Tracker e3ffc9.yaml b/unpacked/Checker_white Token Spawn Tracker e3ffc9.yaml index f53170625..27f34ed43 100644 --- a/unpacked/Checker_white Token Spawn Tracker e3ffc9.yaml +++ b/unpacked/Checker_white Token Spawn Tracker e3ffc9.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0.33333 - g: 0.33333 - r: 0.35366 + b: 0.333329946 + g: 0.333329946 + r: 0.353659958 Description: '' DragSelectable: true GMNotes: '' @@ -27,14 +27,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 77.88 - posY: 1.49 + posX: 78.0 + posY: 1.4 posZ: 1.88 - rotX: 0 - rotY: 0 - rotZ: 180 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Chinese_Checkers_Piece Flex Table Control bd69bd.yaml b/unpacked/Chinese_Checkers_Piece Flex Table Control bd69bd.yaml index 1c602024f..0a8bb7862 100644 --- a/unpacked/Chinese_Checkers_Piece Flex Table Control bd69bd.yaml +++ b/unpacked/Chinese_Checkers_Piece Flex Table Control bd69bd.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,9 +32,9 @@ Transform: posX: 73.16 posY: -0.26 posZ: -102.22 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.65 scaleY: 1.65 scaleZ: 1.65 diff --git a/unpacked/Custom_Assetbundle Decoration - Candle 5706ae.yaml b/unpacked/Custom_Assetbundle Decoration - Candle 5706ae.yaml index 37fcfa92f..81751e9e7 100644 --- a/unpacked/Custom_Assetbundle Decoration - Candle 5706ae.yaml +++ b/unpacked/Custom_Assetbundle Decoration - Candle 5706ae.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.8 @@ -36,11 +36,11 @@ Transform: posX: -50.03 posY: 1.48 posZ: -81.96 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Assetbundle SoundCube 3c988f.yaml b/unpacked/Custom_Assetbundle SoundCube 3c988f.yaml new file mode 100644 index 000000000..3c4762cba --- /dev/null +++ b/unpacked/Custom_Assetbundle SoundCube 3c988f.yaml @@ -0,0 +1,48 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.86837 + r: 1.0 +CustomAssetbundle: + AssetbundleSecondaryURL: '' + AssetbundleURL: http://cloud-3.steamusercontent.com/ugc/2037357792047851922/4D45FF1CA6F765ED1BCE935567BE88DED2AC5710/ + LoopingEffectIndex: 0 + MaterialIndex: 2 + TypeIndex: 0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3c988f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Assetbundle +Nickname: SoundCube +Snap: true +Sticky: true +Tags: +- SoundCube +Tooltip: true +Transform: + posX: 78.0 + posY: 1.65 + posZ: -27.0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Assetbundle TableBorderBottom 9f95fd.yaml b/unpacked/Custom_Assetbundle TableBorderBottom 9f95fd.yaml index bc56178ad..a5aa19abd 100644 --- a/unpacked/Custom_Assetbundle TableBorderBottom 9f95fd.yaml +++ b/unpacked/Custom_Assetbundle TableBorderBottom 9f95fd.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomAssetbundle: AssetbundleSecondaryURL: '' AssetbundleURL: http://cloud-3.steamusercontent.com/ugc/879750610978796471/14ED0DBD593370733A0309B0950004F33EB9FACA/ @@ -33,14 +33,14 @@ Snap: true Sticky: true Tooltip: false Transform: - posX: -54 - posY: -9 - posZ: 0 - rotX: 0 - rotY: 90 - rotZ: 0 + posX: -54.0 + posY: -9.0 + posZ: 0.0 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 scaleX: 5.45 - scaleY: 1 - scaleZ: 1 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Assetbundle TableBorderLeft 35b95f.yaml b/unpacked/Custom_Assetbundle TableBorderLeft 35b95f.yaml index ff6d9f106..a9cf84b73 100644 --- a/unpacked/Custom_Assetbundle TableBorderLeft 35b95f.yaml +++ b/unpacked/Custom_Assetbundle TableBorderLeft 35b95f.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomAssetbundle: AssetbundleSecondaryURL: '' AssetbundleURL: http://cloud-3.steamusercontent.com/ugc/879750610978796471/14ED0DBD593370733A0309B0950004F33EB9FACA/ @@ -33,14 +33,14 @@ Snap: true Sticky: true Tooltip: false Transform: - posX: 0 - posY: -9 + posX: 0.0 + posY: -9.0 posZ: 80.1 - rotX: 0 - rotY: 180 - rotZ: 0 - scaleX: 4 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 4.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Assetbundle TableBorderRight f938a2.yaml b/unpacked/Custom_Assetbundle TableBorderRight f938a2.yaml index 775e22717..9587095a1 100644 --- a/unpacked/Custom_Assetbundle TableBorderRight f938a2.yaml +++ b/unpacked/Custom_Assetbundle TableBorderRight f938a2.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomAssetbundle: AssetbundleSecondaryURL: '' AssetbundleURL: http://cloud-3.steamusercontent.com/ugc/879750610978796471/14ED0DBD593370733A0309B0950004F33EB9FACA/ @@ -33,14 +33,14 @@ Snap: true Sticky: true Tooltip: false Transform: - posX: 0 - posY: -9 + posX: 0.0 + posY: -9.0 posZ: -80.1 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 4 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 4.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Assetbundle TableBorderTop 5af8f2.yaml b/unpacked/Custom_Assetbundle TableBorderTop 5af8f2.yaml index a587db6c9..2dec2006d 100644 --- a/unpacked/Custom_Assetbundle TableBorderTop 5af8f2.yaml +++ b/unpacked/Custom_Assetbundle TableBorderTop 5af8f2.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomAssetbundle: AssetbundleSecondaryURL: '' AssetbundleURL: http://cloud-3.steamusercontent.com/ugc/879750610978796471/14ED0DBD593370733A0309B0950004F33EB9FACA/ @@ -33,14 +33,14 @@ Snap: true Sticky: true Tooltip: false Transform: - posX: 54 - posY: -9 - posZ: 0 - rotX: 0 - rotY: 270 - rotZ: 0 + posX: 54.0 + posY: -9.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 5.45 - scaleY: 1 - scaleZ: 1 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Assetbundle TableLegBottomLeft c8edca.yaml b/unpacked/Custom_Assetbundle TableLegBottomLeft c8edca.yaml index 313239c93..5aed21255 100644 --- a/unpacked/Custom_Assetbundle TableLegBottomLeft c8edca.yaml +++ b/unpacked/Custom_Assetbundle TableLegBottomLeft c8edca.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomAssetbundle: AssetbundleSecondaryURL: '' AssetbundleURL: http://cloud-3.steamusercontent.com/ugc/879750610978795929/723C50F43FAB3DE3DC12CB8460536E8CB34B60A3/ @@ -33,14 +33,14 @@ Snap: true Sticky: true Tooltip: false Transform: - posX: -54 - posY: -9 + posX: -54.0 + posY: -9.0 posZ: 80.1 - rotX: 0 - rotY: 90 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Assetbundle TableLegBottomRight afc863.yaml b/unpacked/Custom_Assetbundle TableLegBottomRight afc863.yaml index 799e544d0..8d6885506 100644 --- a/unpacked/Custom_Assetbundle TableLegBottomRight afc863.yaml +++ b/unpacked/Custom_Assetbundle TableLegBottomRight afc863.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomAssetbundle: AssetbundleSecondaryURL: '' AssetbundleURL: http://cloud-3.steamusercontent.com/ugc/879750610978795929/723C50F43FAB3DE3DC12CB8460536E8CB34B60A3/ @@ -33,14 +33,14 @@ Snap: true Sticky: true Tooltip: false Transform: - posX: -54 - posY: -9 + posX: -54.0 + posY: -9.0 posZ: -80.1 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Assetbundle TableLegTopLeft 393bf7.yaml b/unpacked/Custom_Assetbundle TableLegTopLeft 393bf7.yaml index aefd16919..2a7931186 100644 --- a/unpacked/Custom_Assetbundle TableLegTopLeft 393bf7.yaml +++ b/unpacked/Custom_Assetbundle TableLegTopLeft 393bf7.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomAssetbundle: AssetbundleSecondaryURL: '' AssetbundleURL: http://cloud-3.steamusercontent.com/ugc/879750610978795929/723C50F43FAB3DE3DC12CB8460536E8CB34B60A3/ @@ -33,14 +33,14 @@ Snap: true Sticky: true Tooltip: false Transform: - posX: 54 - posY: -9 + posX: 54.0 + posY: -9.0 posZ: 80.1 - rotX: 0 - rotY: 180 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Assetbundle TableLegTopRight 12c65e.yaml b/unpacked/Custom_Assetbundle TableLegTopRight 12c65e.yaml index 5ba578ae2..1311da184 100644 --- a/unpacked/Custom_Assetbundle TableLegTopRight 12c65e.yaml +++ b/unpacked/Custom_Assetbundle TableLegTopRight 12c65e.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomAssetbundle: AssetbundleSecondaryURL: '' AssetbundleURL: http://cloud-3.steamusercontent.com/ugc/879750610978795929/723C50F43FAB3DE3DC12CB8460536E8CB34B60A3/ @@ -33,14 +33,14 @@ Snap: true Sticky: true Tooltip: false Transform: - posX: 54 - posY: -9 + posX: 54.0 + posY: -9.0 posZ: -80.1 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Assetbundle_Bag Barkham Horror 308439.yaml b/unpacked/Custom_Assetbundle_Bag Barkham Horror 308439.yaml index f435aeb73..996208617 100644 --- a/unpacked/Custom_Assetbundle_Bag Barkham Horror 308439.yaml +++ b/unpacked/Custom_Assetbundle_Bag Barkham Horror 308439.yaml @@ -1,7574 +1,60 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ Name: dunwich_back Size: 7.4 Transform: - posX: -0.0021877822 - posY: -0.08963572 - posZ: -0.00288731651 - rotX: 270 - rotY: 359.869568 - rotZ: 0 - scaleX: 2.00000215 - scaleY: 2.00000238 - scaleZ: 2.00000262 + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 270.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 - ContainedObjects: - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 537611 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '041012' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dog Monocle - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.252 - posY: 1.482 - posZ: 11.986 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - ContainedObjects: - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538534 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hazard. - DragSelectable: true - GMNotes: '' - GUID: 4512a4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Stubborn Cat - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.213 - posY: 1.475 - posZ: 9.519 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538524 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Creature. - DragSelectable: true - GMNotes: '' - GUID: '593523' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Estranged Cat - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.353 - posY: 1.547 - posZ: 8.894 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538525 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Humanoid. Cultist. - DragSelectable: true - GMNotes: '' - GUID: d5e580 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Rodent-Killer - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.464 - posY: 1.541 - posZ: 7.441 - rotX: 0 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538526 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Humanoid, sort of? Cultist, definitely. - DragSelectable: true - GMNotes: '' - GUID: 4aec61 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Order Cultist - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.916 - posY: 1.798 - posZ: 6.103 - rotX: 0 - rotY: 270 - rotZ: 180 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538536 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Terror. - DragSelectable: true - GMNotes: '' - GUID: a5455b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Gaze of the Ceiling Cat - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.578 - posY: 1.475 - posZ: 9.962 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538532 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hazard. - DragSelectable: true - GMNotes: '' - GUID: '640243' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scratching Paws - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.28 - posY: 1.475 - posZ: 8.46 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538534 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hazard. - DragSelectable: true - GMNotes: '' - GUID: 173b96 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Stubborn Cat - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.432 - posY: 1.518 - posZ: 9.537 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538524 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Creature. - DragSelectable: true - GMNotes: '' - GUID: '593523' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Estranged Cat - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.353 - posY: 1.547 - posZ: 8.894 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538532 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hazard. - DragSelectable: true - GMNotes: '' - GUID: '640243' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scratching Paws - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.28 - posY: 1.475 - posZ: 8.46 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538531 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Terror. - DragSelectable: true - GMNotes: '' - GUID: d2376d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cats in the Mist - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.253 - posY: 1.475 - posZ: 8.409 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538529 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Scheme. - DragSelectable: true - GMNotes: '' - GUID: 188deb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hunted by Byakats - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 14.728 - posY: 1.477 - posZ: 9.232 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538527 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Monster. Catbomination. - DragSelectable: true - GMNotes: '' - GUID: c44211 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Servant of Dog-Sothoth - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.056 - posY: 1.507 - posZ: 8.844 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538530 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Scheme. - DragSelectable: true - GMNotes: '' - GUID: 75690e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: On Your Tail - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.482 - posY: 1.52 - posZ: 8.858 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538524 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Creature. - DragSelectable: true - GMNotes: '' - GUID: 58750b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Estranged Cat - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.353 - posY: 1.52 - posZ: 8.894 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538528 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Squirrel! - DragSelectable: true - GMNotes: '' - GUID: d2a05a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: SQUIRREL! - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.598 - posY: 1.476 - posZ: 8.837 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538530 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Scheme. - DragSelectable: true - GMNotes: '' - GUID: 12dd89 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: On Your Tail - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.288 - posY: 1.476 - posZ: 8.775 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538533 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Power. - DragSelectable: true - GMNotes: '' - GUID: 906d54 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Meowsks of Meowlathotep - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.529 - posY: 1.476 - posZ: 9.557 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538533 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Power. - DragSelectable: true - GMNotes: '' - GUID: 0fa302 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Meowsks of Meowlathotep - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.449 - posY: 1.539 - posZ: 9.816 - rotX: 0 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538525 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Humanoid. Cultist. - DragSelectable: true - GMNotes: '' - GUID: 9ae188 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Rodent-Killer - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.452 - posY: 1.496 - posZ: 7.44 - rotX: 0 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538528 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Squirrel! - DragSelectable: true - GMNotes: '' - GUID: 085963 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: SQUIRREL! - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.226 - posY: 1.52 - posZ: 9.212 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538532 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hazard. - DragSelectable: true - GMNotes: '' - GUID: '683523' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scratching Paws - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.469 - posY: 1.518 - posZ: 8.818 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538531 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Terror. - DragSelectable: true - GMNotes: '' - GUID: f02d56 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cats in the Mist - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.128 - posY: 1.518 - posZ: 8.668 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538531 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Terror. - DragSelectable: true - GMNotes: '' - GUID: d2376d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cats in the Mist - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.253 - posY: 1.475 - posZ: 8.409 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538527 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Monster. Catbomination. - DragSelectable: true - GMNotes: '' - GUID: cd29bc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Servant of Dog-Sothoth - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.32 - posY: 1.475 - posZ: 8.789 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538529 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Scheme. - DragSelectable: true - GMNotes: '' - GUID: '041647' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hunted by Byakats - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 14.638 - posY: 1.519 - posZ: 9.461 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538535 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Scheme. - DragSelectable: true - GMNotes: '' - GUID: 6843a4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mischief and Chaos - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.34 - posY: 1.518 - posZ: 9.344 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538536 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Terror. - DragSelectable: true - GMNotes: '' - GUID: 66c016 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Gaze of the Ceiling Cat - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.682 - posY: 1.516 - posZ: 10.111 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538535 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Scheme. - DragSelectable: true - GMNotes: '' - GUID: '170575' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mischief and Chaos - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.278 - posY: 1.475 - posZ: 9.291 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - DeckIDs: - - 538534 - - 538524 - - 538525 - - 538526 - - 538536 - - 538532 - - 538534 - - 538524 - - 538532 - - 538531 - - 538529 - - 538527 - - 538530 - - 538524 - - 538528 - - 538530 - - 538533 - - 538533 - - 538525 - - 538528 - - 538532 - - 538531 - - 538531 - - 538527 - - 538529 - - 538535 - - 538536 - - 538535 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0646bf - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Deck - Nickname: Encounter Deck - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.928 - posY: 1.744 - posZ: 5.757 - rotX: 0 - rotY: 270 - rotZ: 180 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - ContainedObjects: - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 537605 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 99800f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dogcatchers - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.937 - posY: 1.473 - posZ: -0.144 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 537604 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ed4256 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Take the Wheel - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.232 - posY: 1.514 - posZ: 0.037 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - DeckIDs: - - 537605 - - 537604 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 070a78 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Deck - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.15 - posY: 1.491 - posZ: -0.08 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - ContainedObjects: - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 537609 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: '197242' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Out of Doggie Treats - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.945 - posY: 1.468 - posZ: -15.045 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 537608 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: I Guess His Name is "Pete?" - DragSelectable: true - GMNotes: '' - GUID: 448d3a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Friendly Human - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.128 - posY: 1.5 - posZ: -14.77 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - DeckIDs: - - 537609 - - 537608 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0bd409 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Deck - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.15 - posY: 1.486 - posZ: -16.08 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538300 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5383': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: The Dog of War - DragSelectable: true - GMNotes: '' - GUID: 0c97f0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bark Harrigan - SidewaysCard: true - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.27 - posY: 1.483 - posZ: 15.92 - rotX: 0 - rotY: 180 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 266500 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '2665': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297416775/01D74E1F211ED12B6AB97E2C171FBF4BAD269E94/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297416623/C105E79E8FE67FCCE4ABADEB110F8C5E2A239447/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1943ff - Grid: false - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '"Skids" O''Drool' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.85 - posY: 1.481 - posZ: -0.08 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 0.6 - scaleY: 1 - scaleZ: 0.6 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - ContainedObjects: - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538307 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5383': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Agenda 2 - DragSelectable: true - GMNotes: '' - GUID: 2dc786 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Meowlathotep's Scheme - SidewaysCard: true - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 0.072 - posY: 1.594 - posZ: -4.166 - rotX: 0 - rotY: 183 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538306 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5383': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Agenda 1 - DragSelectable: true - GMNotes: '' - GUID: 35a3cd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Of Cats and Dogs - SidewaysCard: true - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 0.095 - posY: 1.636 - posZ: -4.269 - rotX: 0 - rotY: 180 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - CustomDeck: - '5383': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - DeckIDs: - - 538307 - - 538306 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 208ebc - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Deck - Nickname: Agenda Deck - SidewaysCard: true - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -2.725 - posY: 1.616 - posZ: 0.373 - rotX: 0 - rotY: 180 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - ContainedObjects: - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 537603 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: bc4a74 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Foul Odor - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.785 - posY: 1.475 - posZ: 8.08 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 537602 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: It Discombobulates Felines - DragSelectable: true - GMNotes: '' - GUID: 7031aa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Feline Discombobulator - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.889 - posY: 1.507 - posZ: 8.303 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - DeckIDs: - - 537603 - - 537602 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 31ee5d - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Deck - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.15 - posY: 1.493 - posZ: 7.92 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 266400 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '2664': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297416208/2178189EC4327D27ECC17AAB215436AA86507AF4/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297416065/D6E80F5A27085251DBDA0BC5DADACC3A45110101/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3549e7 - Grid: false - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Kate Winthpup - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.85 - posY: 1.484 - posZ: 7.92 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 0.6 - scaleY: 1 - scaleZ: 0.6 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 537610 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '357610' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Spiked Collar - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.25 - posY: 1.484 - posZ: 19.986 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 1 - g: 1 - r: 1 - CustomPDF: - PDFPage: 0 - PDFPageOffset: 0 - PDFPassword: '' - PDFUrl: http://cloud-3.steamusercontent.com/ugc/1626320456297582485/FD9DDA786EDAE5BAAA4D4F8474E89E5C9B328317/ - Description: The Meddling of Meowlathotep - DragSelectable: true - GMNotes: '' - GUID: 36b4eb - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_PDF - Nickname: Campaign Guide - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 0.27 - posY: 1.49 - posZ: 28.777 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 3 - scaleY: 1 - scaleZ: 3 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538411 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5384': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Barkham. Central. - DragSelectable: true - GMNotes: '' - GUID: 41fdc3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Tailside - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -23.676 - posY: 1.628 - posZ: -0.03 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 537612 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44bc00 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hired Dogs - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.25 - posY: 1.479 - posZ: 3.986 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538419 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5384': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Barkham. - DragSelectable: true - GMNotes: '' - GUID: 458f2b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Velma's Doghouse - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -17.12 - posY: 1.614 - posZ: -15.28 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.60453 - g: 0.60453 - r: 0.60453 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/vppt2my.png - ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '499088' - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - States: - '2': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44b0c5 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.7933121 - posY: 1.63758957 - posZ: 2.038383 - rotX: 359.9201 - rotY: 269.9961 - rotZ: 0.0168742146 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - '3': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b38c6 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.8217163 - posY: 1.99356019 - posZ: 0.4159239 - rotX: 359.9201 - rotY: 272.9828 - rotZ: 0.01687373 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 - Value: 0 - XmlUI: '' - Sticky: true - Tooltip: true - Transform: - posX: -23.676 - posY: 1.613 - posZ: -3.83 - rotX: 0 - rotY: 180 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - ContainedObjects: - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538518 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Extradimensional Cat - DragSelectable: true - GMNotes: '' - GUID: ce69cd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cat of Tindalos - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.214 - posY: 1.487 - posZ: 15.304 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538520 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Capricious Twins - DragSelectable: true - GMNotes: '' - GUID: 64feac - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Mewling Hunger - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.403 - posY: 1.559 - posZ: 15.6 - rotX: 0 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538519 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Don't Ask How - DragSelectable: true - GMNotes: '' - GUID: f4cd65 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Dweller in the Deep - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.975 - posY: 1.507 - posZ: 16.736 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538517 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Cat That Came Back - DragSelectable: true - GMNotes: '' - GUID: aef204 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Hisser in the Dark - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.079 - posY: 1.486 - posZ: 13.112 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538521 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Cat That is Also a Ghost - DragSelectable: true - GMNotes: '' - GUID: e86d3b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: GHOST CAT! - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 10.032 - posY: 1.546 - posZ: 14.179 - rotX: 0 - rotY: 270 - rotZ: 2 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538522 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: It's Exactly What it Sounds Like - DragSelectable: true - GMNotes: '' - GUID: 53c2ec - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cat Riding on a Byakat - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 10.185 - posY: 1.625 - posZ: 14.396 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538523 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Nocturnal Hunting Cat - DragSelectable: true - GMNotes: '' - GUID: 94906b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Pouncer in the Night - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.707 - posY: 1.618 - posZ: 14.15 - rotX: 0 - rotY: 270 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - DeckIDs: - - 538518 - - 538520 - - 538519 - - 538517 - - 538521 - - 538522 - - 538523 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 54092b - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Deck - Nickname: Meowsks - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -13.996 - posY: 1.656 - posZ: -0.18 - rotX: 0 - rotY: 270 - rotZ: 180 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538416 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5384': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Barkham. - DragSelectable: true - GMNotes: '' - GUID: 56fc9d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Muttskatonic University - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.224 - posY: 1.639 - posZ: 7.57 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.60453 - g: 0.60453 - r: 0.60453 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b38c6 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - States: - '1': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/vppt2my.png - ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 335cdd - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -19.8644981 - posY: 1.60566175 - posZ: -11.8849583 - rotX: 0.0684105456 - rotY: 134.999573 - rotZ: 0.04458524 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - '2': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44b0c5 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.7933121 - posY: 1.63758957 - posZ: 2.038383 - rotX: 359.9201 - rotY: 269.9961 - rotZ: 0.0168742146 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - Sticky: true - Tooltip: true - Transform: - posX: -20.273 - posY: 1.606 - posZ: -11.578 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 537615 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 61c4c5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hair of the Dog - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.251 - posY: 1.472 - posZ: -20.014 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.60453 - g: 0.60453 - r: 0.60453 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/vppt2my.png - ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '641694' - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - States: - '2': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44b0c5 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.7933121 - posY: 1.63758957 - posZ: 2.038383 - rotX: 359.9201 - rotY: 269.9961 - rotZ: 0.0168742146 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - '3': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b38c6 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.8217163 - posY: 1.99356019 - posZ: 0.4159239 - rotX: 359.9201 - rotY: 272.9828 - rotZ: 0.01687373 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 - Value: 0 - XmlUI: '' - Sticky: true - Tooltip: true - Transform: - posX: -20.082 - posY: 1.608 - posZ: -3.587 - rotX: 0 - rotY: 135 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538301 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5383': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: The Laboratory Labrador - DragSelectable: true - GMNotes: '' - GUID: '673295' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Kate Winthpup - SidewaysCard: true - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.277 - posY: 1.48 - posZ: 7.92 - rotX: 0 - rotY: 180 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.60453 - g: 0.60453 - r: 0.60453 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6b02f8 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - States: - '1': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/vppt2my.png - ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0e6fc2 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -33.3444481 - posY: 1.629031 - posZ: 3.672406 - rotX: 0.06841481 - rotY: 134.999954 - rotZ: 0.0445902273 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - '2': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44b0c5 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.7933121 - posY: 1.63758957 - posZ: 2.038383 - rotX: 359.9201 - rotY: 269.9961 - rotZ: 0.0168742146 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - Sticky: true - Tooltip: true - Transform: - posX: -33.478 - posY: 1.629 - posZ: 3.856 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.60453 - g: 0.60453 - r: 0.60453 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/vppt2my.png - ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6ba06e - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - States: - '2': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44b0c5 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.7933121 - posY: 1.63758957 - posZ: 2.038383 - rotX: 359.9201 - rotY: 269.9961 - rotZ: 0.0168742146 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - '3': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b38c6 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.8217163 - posY: 1.99356019 - posZ: 0.4159239 - rotX: 359.9201 - rotY: 272.9828 - rotZ: 0.01687373 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 - Value: 0 - XmlUI: '' - Sticky: true - Tooltip: true - Transform: - posX: -26.783 - posY: 1.619 - posZ: 0.118 - rotX: 0 - rotY: 90 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.60453 - g: 0.60453 - r: 0.60453 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/vppt2my.png - ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6be8b0 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - States: - '2': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44b0c5 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.7933121 - posY: 1.63758957 - posZ: 2.038383 - rotX: 359.9201 - rotY: 269.9961 - rotZ: 0.0168742146 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - '3': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b38c6 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.8217163 - posY: 1.99356019 - posZ: 0.4159239 - rotX: 359.9201 - rotY: 272.9828 - rotZ: 0.01687373 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 - Value: 0 - XmlUI: '' - Sticky: true - Tooltip: true - Transform: - posX: -23.676 - posY: 1.611 - posZ: -11.51 - rotX: 0 - rotY: 180 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 266700 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '2667': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297418037/4D5A108EA151DCE8910B962591DA6B256B2C2003/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297417896/1A29A45D1C5D089DB429F2A8FE10EFA912BB3B30/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6c5b9f - Grid: false - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Duke - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.85 - posY: 1.477 - posZ: -16.08 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 0.6 - scaleY: 1 - scaleZ: 0.6 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538415 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5384': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Barkham. - DragSelectable: true - GMNotes: '' - GUID: 6dec76 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Boneyard - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -36.773 - posY: 1.646 - posZ: -0.03 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538413 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5384': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Barkham. Central. - DragSelectable: true - GMNotes: '' - GUID: 6f663b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Slobbertown - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.224 - posY: 1.635 - posZ: -7.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.60453 - g: 0.60453 - r: 0.60453 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/vppt2my.png - ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7234af - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - States: - '2': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44b0c5 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.7933121 - posY: 1.63758957 - posZ: 2.038383 - rotX: 359.9201 - rotY: 269.9961 - rotZ: 0.0168742146 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - '3': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b38c6 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.8217163 - posY: 1.99356019 - posZ: 0.4159239 - rotX: 359.9201 - rotY: 272.9828 - rotZ: 0.01687373 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 - Value: 0 - XmlUI: '' - Sticky: true - Tooltip: true - Transform: - posX: -36.773 - posY: 1.634 - posZ: 3.86 - rotX: 0 - rotY: 180 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538304 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5383': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: The Good Boy - DragSelectable: true - GMNotes: '' - GUID: 72c444 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Duke - SidewaysCard: true - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.275 - posY: 1.473 - posZ: -16.08 - rotX: 0 - rotY: 180 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 266600 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '2666': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297417563/86B887FDCC331D93213F3465D22477E66C11C169/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297417266/EB7D69CDFB4B40C56890C7B787992CA531786A8D/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 823edd - Grid: false - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Jacqueline Canine - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.85 - posY: 1.479 - posZ: -8.08 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 0.6 - scaleY: 1 - scaleZ: 0.6 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 537614 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 87f6b9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Old Shoe - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.25 - posY: 1.474 - posZ: -12.014 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538418 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5384': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Barkham. - DragSelectable: true - GMNotes: '' - GUID: 8b87b3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: St. Mary's Animal Hospital - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -36.773 - posY: 1.649 - posZ: 7.57 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - ContainedObjects: - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 537601 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 29bafb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: More Bark Than Bite - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.114 - posY: 1.476 - posZ: 12.399 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 537600 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: deea7a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Catling Gun - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.156 - posY: 1.508 - posZ: 12.358 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - DeckIDs: - - 537601 - - 537600 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '937515' - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Deck - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.15 - posY: 1.496 - posZ: 15.92 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538303 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5383': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: The Paw Reader - DragSelectable: true - GMNotes: '' - GUID: 94dde3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Jacqueline Canine - SidewaysCard: true - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.274 - posY: 1.476 - posZ: -8.08 - rotX: 0 - rotY: 180 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 537613 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '952924' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Howl of Clyhf'ford - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.25 - posY: 1.477 - posZ: -4.014 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.60453 - g: 0.60453 - r: 0.60453 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 97c745 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - States: - '1': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/vppt2my.png - ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: efa069 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -27.129076 - posY: 1.618001 - posZ: -4.367831 - rotX: 0.06841063 - rotY: 134.99968 - rotZ: 0.04458575 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - '2': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44b0c5 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.7933121 - posY: 1.63758957 - posZ: 2.038383 - rotX: 359.9201 - rotY: 269.9961 - rotZ: 0.0168742146 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - Sticky: true - Tooltip: true - Transform: - posX: -26.949 - posY: 1.618 - posZ: -3.791 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538417 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5384': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Barkham. - DragSelectable: true - GMNotes: '' - GUID: 98de77 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Barkham City Pound - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -23.677 - posY: 1.624 - posZ: -15.28 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - ContainedObjects: - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538309 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5383': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Act 2 - DragSelectable: true - GMNotes: '' - GUID: 87f443 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Cat and the Mouse - SidewaysCard: true - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 2.074 - posY: 1.591 - posZ: -4.737 - rotX: 0 - rotY: 179 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538308 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5383': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Act 1 - DragSelectable: true - GMNotes: '' - GUID: 69fb83 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Nine Lives - SidewaysCard: true - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 2.057 - posY: 1.622 - posZ: -4.862 - rotX: 0 - rotY: 180 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - CustomDeck: - '5383': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - DeckIDs: - - 538309 - - 538308 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9991d4 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Deck - Nickname: Act Deck - SidewaysCard: true - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -2.688 - posY: 1.614 - posZ: -5.049 - rotX: 0 - rotY: 180 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.60453 - g: 0.60453 - r: 0.60453 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/vppt2my.png - ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a3b604 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - States: - '2': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44b0c5 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.7933121 - posY: 1.63758957 - posZ: 2.038383 - rotX: 359.9201 - rotY: 269.9961 - rotZ: 0.0168742146 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - '3': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b38c6 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.8217163 - posY: 1.99356019 - posZ: 0.4159239 - rotX: 359.9201 - rotY: 272.9828 - rotZ: 0.01687373 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 - Value: 0 - XmlUI: '' - Sticky: true - Tooltip: true - Transform: - posX: -20.24 - posY: 1.605 - posZ: -15.647 - rotX: 0 - rotY: 90 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.60453 - g: 0.60453 - r: 0.60453 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/vppt2my.png - ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a3b9ce - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - States: - '2': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44b0c5 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.7933121 - posY: 1.63758957 - posZ: 2.038383 - rotX: 359.9201 - rotY: 269.9961 - rotZ: 0.0168742146 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - '3': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b38c6 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.8217163 - posY: 1.99356019 - posZ: 0.4159239 - rotX: 359.9201 - rotY: 272.9828 - rotZ: 0.01687373 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 - Value: 0 - XmlUI: '' - Sticky: true - Tooltip: true - Transform: - posX: -30.224 - posY: 1.625 - posZ: 3.86 - rotX: 0 - rotY: 180 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.02149 - g: 0.00101 - r: 0.02149 - ContainedObjects: - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538516 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5385': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Meowsenger of the Outer Gods - DragSelectable: true - GMNotes: '' - GUID: 4afd7f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Meowlathotep - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 1.697 - posY: 3.663 - posZ: 14.279 - rotX: 0 - rotY: 225 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://i.imgur.com/yVhOLYs.jpg - MaterialIndex: 1 - MeshURL: https://paste.ee/r/ylQzQ - NormalURL: http://i.imgur.com/f1ogHo6.jpg - TypeIndex: 6 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a45247 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MaterialIndex: -1 - MeasureMovement: false - MeshIndex: -1 - Name: Custom_Model_Bag - Nickname: Set-aside - PhysicsMaterial: - BounceCombine: 0 - Bounciness: 0 - DynamicFriction: 0.6 - FrictionCombine: 0 - StaticFriction: 0.6 - Rigidbody: - AngularDrag: 5 - Drag: 5 - Mass: 1.375 - UseGravity: true - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 1.696 - posY: 1.558 - posZ: 14.279 - rotX: 0 - rotY: 225 - rotZ: 0 - scaleX: 2 - scaleY: 2 - scaleZ: 2 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538302 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5383': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: The Pound Escapee - DragSelectable: true - GMNotes: '' - GUID: a6049c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"Skids" O''Drool' - SidewaysCard: true - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.274 - posY: 1.478 - posZ: -0.08 - rotX: 0 - rotY: 180 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.60453 - g: 0.60453 - r: 0.60453 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/vppt2my.png - ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: aa4b2c - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - States: - '2': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44b0c5 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.7933121 - posY: 1.63758957 - posZ: 2.038383 - rotX: 359.9201 - rotY: 269.9961 - rotZ: 0.0168742146 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - '3': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b38c6 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.8217163 - posY: 1.99356019 - posZ: 0.4159239 - rotX: 359.9201 - rotY: 272.9828 - rotZ: 0.01687373 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 - Value: 0 - XmlUI: '' - Sticky: true - Tooltip: true - Transform: - posX: -20.456 - posY: 1.608 - posZ: -7.749 - rotX: 0 - rotY: 90 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.60453 - g: 0.60453 - r: 0.60453 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/vppt2my.png - ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ab992b - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - States: - '2': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44b0c5 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.7933121 - posY: 1.63758957 - posZ: 2.038383 - rotX: 359.9201 - rotY: 269.9961 - rotZ: 0.0168742146 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - '3': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b38c6 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.8217163 - posY: 1.99356019 - posZ: 0.4159239 - rotX: 359.9201 - rotY: 272.9828 - rotZ: 0.01687373 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 - Value: 0 - XmlUI: '' - Sticky: true - Tooltip: true - Transform: - posX: -27.046 - posY: 1.616 - posZ: -11.531 - rotX: 0 - rotY: 135 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.60453 - g: 0.60453 - r: 0.60453 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/vppt2my.png - ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b73127 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - States: - '2': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44b0c5 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.7933121 - posY: 1.63758957 - posZ: 2.038383 - rotX: 359.9201 - rotY: 269.9961 - rotZ: 0.0168742146 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - '3': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b38c6 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.8217163 - posY: 1.99356019 - posZ: 0.4159239 - rotX: 359.9201 - rotY: 272.9828 - rotZ: 0.01687373 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 - Value: 0 - XmlUI: '' - Sticky: true - Tooltip: true - Transform: - posX: -26.662 - posY: 1.616 - posZ: -7.416 - rotX: 0 - rotY: 90 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.60453 - g: 0.60453 - r: 0.60453 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/vppt2my.png - ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b89737 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - States: - '2': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44b0c5 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.7933121 - posY: 1.63758957 - posZ: 2.038383 - rotX: 359.9201 - rotY: 269.9961 - rotZ: 0.0168742146 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - '3': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b38c6 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.8217163 - posY: 1.99356019 - posZ: 0.4159239 - rotX: 359.9201 - rotY: 272.9828 - rotZ: 0.01687373 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 - Value: 0 - XmlUI: '' - Sticky: true - Tooltip: true - Transform: - posX: -30.224 - posY: 1.622 - posZ: -3.83 - rotX: 0 - rotY: 180 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538414 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5384': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Barkham. - DragSelectable: true - GMNotes: '' - GUID: c16b4e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Barkham Asylum - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -17.12 - posY: 1.617 - posZ: -7.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.60453 - g: 0.60453 - r: 0.60453 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/vppt2my.png - ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c94046 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - States: - '2': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44b0c5 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.7933121 - posY: 1.63758957 - posZ: 2.038383 - rotX: 359.9201 - rotY: 269.9961 - rotZ: 0.0168742146 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - '3': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b38c6 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.8217163 - posY: 1.99356019 - posZ: 0.4159239 - rotX: 359.9201 - rotY: 272.9828 - rotZ: 0.01687373 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 - Value: 0 - XmlUI: '' - Sticky: true - Tooltip: true - Transform: - posX: -33.469 - posY: 1.63 - posZ: 7.583 - rotX: 0 - rotY: 90 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.60453 - g: 0.60453 - r: 0.60453 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/vppt2my.png - ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ceb7d4 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - States: - '2': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44b0c5 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.7933121 - posY: 1.63758957 - posZ: 2.038383 - rotX: 359.9201 - rotY: 269.9961 - rotZ: 0.0168742146 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - '3': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b38c6 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.8217163 - posY: 1.99356019 - posZ: 0.4159239 - rotX: 359.9201 - rotY: 272.9828 - rotZ: 0.01687373 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 - Value: 0 - XmlUI: '' - Sticky: true - Tooltip: true - Transform: - posX: -26.811 - posY: 1.62 - posZ: 3.993 - rotX: 0 - rotY: 135 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.60453 - g: 0.60453 - r: 0.60453 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/vppt2my.png - ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d0163a - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - States: - '2': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44b0c5 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.7933121 - posY: 1.63758957 - posZ: 2.038383 - rotX: 359.9201 - rotY: 269.9961 - rotZ: 0.0168742146 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - '3': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b38c6 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.8217163 - posY: 1.99356019 - posZ: 0.4159239 - rotX: 359.9201 - rotY: 272.9828 - rotZ: 0.01687373 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 - Value: 0 - XmlUI: '' - Sticky: true - Tooltip: true - Transform: - posX: -33.415 - posY: 1.627 - posZ: -4.031 - rotX: 0 - rotY: 135 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538405 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5384': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: The Meddling of Meowlathotep - DragSelectable: true - GMNotes: '' - GUID: d41278 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scenario - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.956 - posY: 1.598 - posZ: -10.441 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538410 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5384': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Barkham. Central. - DragSelectable: true - GMNotes: '' - GUID: e61348 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Beasttown - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -23.677 - posY: 1.626 - posZ: -7.7 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 538412 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5384': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Barkham. Central. - DragSelectable: true - GMNotes: '' - GUID: e87867 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Snoutside - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.224 - posY: 1.637 - posZ: -0.03 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 266300 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1626320456297415428/68FFE0FA245C2F1A72ADEC8EBBA0128B2109E03F/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297398338/55DA378B7A85123B0DBECF6E612DE294ECFD2D94/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: eab8ff - Grid: false - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Bark Harrigan - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.85 - posY: 1.486 - posZ: 15.92 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 0.6 - scaleY: 1 - scaleZ: 0.6 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.60453 - g: 0.60453 - r: 0.60453 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/vppt2my.png - ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: eef566 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - States: - '2': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44b0c5 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.7933121 - posY: 1.63758957 - posZ: 2.038383 - rotX: 359.9201 - rotY: 269.9961 - rotZ: 0.0168742146 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - '3': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b38c6 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.8217163 - posY: 1.99356019 - posZ: 0.4159239 - rotX: 359.9201 - rotY: 272.9828 - rotZ: 0.01687373 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 - Value: 0 - XmlUI: '' - Sticky: true - Tooltip: true - Transform: - posX: -33.445 - posY: 1.628 - posZ: 0.081 - rotX: 0 - rotY: 90 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - ContainedObjects: - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 537607 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 1e6cae - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: No Sense of Space or Time - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.858 - posY: 1.471 - posZ: -7.926 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - CardID: 537606 - ColorDiffuse: - b: 0.71324 - g: 0.71324 - r: 0.71324 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Nightmares, I Tell You - DragSelectable: true - GMNotes: '' - GUID: bbf1af - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Chew Toy of Nightmares - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.771 - posY: 1.502 - posZ: -7.662 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - DeckIDs: - - 537607 - - 537606 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: efb4dd - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Deck - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.15 - posY: 1.489 - posZ: -8.08 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.60453 - g: 0.60453 - r: 0.60453 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/vppt2my.png - ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: efb516 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - States: - '2': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44b0c5 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.7933121 - posY: 1.63758957 - posZ: 2.038383 - rotX: 359.9201 - rotY: 269.9961 - rotZ: 0.0168742146 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - '3': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b38c6 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.8217163 - posY: 1.99356019 - posZ: 0.4159239 - rotX: 359.9201 - rotY: 272.9828 - rotZ: 0.01687373 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 - Value: 0 - XmlUI: '' - Sticky: true - Tooltip: true - Transform: - posX: -17.12 - posY: 1.602 - posZ: -11.51 - rotX: 0 - rotY: 180 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - - 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: 3 - ImageScalar: 1 - ImageSecondaryURL: https://i.imgur.com/EcbhVuh.jpg/ - ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ - WidthScale: 0 - Description: click to set chaos token difficulty - DragSelectable: true - GMNotes: '' - GUID: f5db25 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: "name = 'Meowlathotep'\n\nfunction onLoad()\n Global.call('createSetupButtons', - {object=self, key=name})\nend\n\nfunction easyClick()\n Global.call('fillContainer', - {object=self, key=name, mode='easy'})\nend\n\nfunction normalClick()\n Global.call('fillContainer', - {object=self, key=name, mode='normal'})\nend\n\nfunction hardClick()\n Global.call('fillContainer', - {object=self, key=name, mode='hard'})\nend\n\nfunction expertClick()\n Global.call('fillContainer', - {object=self, key=name, mode='expert'})\nend" - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: The Meddling of Meowlathotep - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.676 - posY: 1.582 - posZ: -14.535 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 2.2 - scaleY: 1 - scaleZ: 2.2 - Value: 0 - XmlUI: '' + a: 0.27451 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1626320456297589870/7984397038C3BE7C7D329F9EE9335BE4DC8B4E91/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj NormalURL: '' - TypeIndex: 6 + TypeIndex: 0 Description: Barkham Horror DragSelectable: true - GMNotes: '' + GMNotes: scenarios/meddling_of_meowlathotep.json GUID: d02940 Grid: true GridProjection: false @@ -7577,214 +63,51 @@ ContainedObjects: IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false - LuaScript: "-- Utility memory bag by Directsun\n-- Version 2.5.2\n-- Fork of Memory - Bag 2.0 by MrStump\n\nfunction updateSave()\n local data_to_save = {[\"ml\"]=memoryList}\n - \ saved_data = JSON.encode(data_to_save)\n self.script_state = saved_data\nend\n\nfunction - combineMemoryFromBagsWithin()\n local bagObjList = self.getObjects()\n for _, - bagObj in ipairs(bagObjList) do\n local data = bagObj.lua_script_state\n if - data ~= nil then\n local j = JSON.decode(data)\n if j ~= nil and - j.ml ~= nil then\n for guid, entry in pairs(j.ml) do\n memoryList[guid] - = entry\n end\n end\n end\n end\nend\n\nfunction updateMemoryWithMoves()\n - \ memoryList = memoryListBackup\n --get the first transposed object's coordinates\n - \ local obj = getObjectFromGUID(moveGuid)\n\n -- p1 is where needs to go, - p2 is where it was\n local refObjPos = memoryList[moveGuid].pos\n local - deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\n local movedRotation - = obj.getRotation()\n for guid, entry in pairs(memoryList) do\n memoryList[guid].pos.x - = entry.pos.x - deltaPos.x\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\n - \ memoryList[guid].pos.z = entry.pos.z - deltaPos.z\n -- memoryList[guid].rot.x - = movedRotation.x\n -- memoryList[guid].rot.y = movedRotation.y\n -- - memoryList[guid].rot.z = movedRotation.z\n end\n\n --theList[obj.getGUID()] - = {\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\n -- - \ rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\n -- lock=obj.getLock()\n - \ --}\n moveList = {}\nend\n\nfunction onload(saved_data)\n fresh = true\n - \ if saved_data ~= \"\" then\n local loaded_data = JSON.decode(saved_data)\n - \ --Set up information off of loaded_data\n memoryList = loaded_data.ml\n - \ else\n --Set up information for if there is no saved saved data\n memoryList - = {}\n end\n\n moveList = {}\n moveGuid = nil\n\n if next(memoryList) - == nil then\n createSetupButton()\n else\n fresh = false\n createMemoryActionButtons()\n - \ end\nend\n\n\n--Beginning Setup\n\n\n--Make setup button\nfunction createSetupButton()\n - \ self.createButton({\n label=\"Setup\", click_function=\"buttonClick_setup\", - function_owner=self,\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, - width=500,\n font_size=130, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered - by Transpose button\nfunction buttonClick_transpose()\n moveGuid = nil\n broadcastToAll(\"Select - one object and move it- all objects will move relative to the new location\", - {0.75, 0.75, 1})\n memoryListBackup = duplicateTable(memoryList)\n memoryList - = {}\n moveList = {}\n self.clearButtons()\n createButtonsOnAllObjects(true)\n - \ createSetupActionButtons(true)\nend\n\n--Triggered by setup button,\nfunction - buttonClick_setup()\n memoryListBackup = duplicateTable(memoryList)\n memoryList - = {}\n self.clearButtons()\n createButtonsOnAllObjects(false)\n createSetupActionButtons(false)\nend\n\nfunction - getAllObjectsInMemory()\n local objTable = {}\n local curObj = {}\n\n for guid - in pairs(memoryListBackup) do\n curObj = getObjectFromGUID(guid)\n table.insert(objTable, - curObj)\n end\n\n return objTable\n -- return getAllObjects()\nend\n\n--Creates - selection buttons on objects\nfunction createButtonsOnAllObjects(move)\n local - howManyButtons = 0\n\n local objsToHaveButtons = {}\n if move == true then\n - \ objsToHaveButtons = getAllObjectsInMemory()\n else\n objsToHaveButtons - = getAllObjects()\n end\n\n for _, obj in ipairs(objsToHaveButtons) do\n - \ if obj ~= self then\n local dummyIndex = howManyButtons\n --On - a normal bag, the button positions aren't the same size as the bag.\n globalScaleFactor - = 1 * 1/self.getScale().x\n --Super sweet math to set button positions\n - \ local selfPos = self.getPosition()\n local objPos = obj.getPosition()\n - \ local deltaPos = findOffsetDistance(selfPos, objPos, obj)\n local - objPos = rotateLocalCoordinates(deltaPos, self)\n objPos.x = -objPos.x - * globalScaleFactor\n objPos.y = objPos.y * globalScaleFactor + 2\n - \ objPos.z = objPos.z * globalScaleFactor * 0.9\n --Offset - rotation of bag\n local rot = self.getRotation()\n rot.y - = -rot.y + 180\n --Create function\n local funcName = \"selectButton_\" - .. howManyButtons\n local func = function() buttonClick_selection(dummyIndex, - obj, move) end\n local color = {0.75,0.25,0.25,0.6}\n local - colorMove = {0,0,1,0.6}\n if move == true then\n color - = colorMove\n end\n self.setVar(funcName, func)\n self.createButton({\n - \ click_function=funcName, function_owner=self,\n position=objPos, - rotation=rot, height=500, width=500,\n color=color,\n })\n - \ howManyButtons = howManyButtons + 1\n end\n end\nend\n\n--Creates - submit and cancel buttons\nfunction createSetupActionButtons(move)\n self.createButton({\n - \ label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\n - \ position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\n font_size=130, - color={0,0,0}, font_color={1,1,1}\n })\n\n self.createButton({\n label=\"Submit\", - click_function=\"buttonClick_submit\", function_owner=self,\n position={-0.6,0.3,-2.5}, - rotation={0,0,0}, height=220, width=550,\n font_size=130, color={0,0,0}, - font_color={1,1,1}\n })\n\n if move == false then\n self.createButton({\n - \ label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\n - \ position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\n - \ font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\n })\n\n - \ if fresh == false then\n self.createButton({\n label=\"Set - New\", click_function=\"buttonClick_setNew\", function_owner=self,\n position={0.6,0.3,-2.9}, - rotation={0,0,0}, height=220, width=550,\n font_size=130, color={0,0,0}, - font_color={0.75,0.75,1}\n })\n self.createButton({\n label=\"Remove\", - click_function=\"buttonClick_remove\", function_owner=self,\n position={0.6,0.3,-2.5}, - rotation={0,0,0}, height=220, width=550,\n font_size=130, color={0,0,0}, - font_color={1,0.25,0.25}\n })\n end\n end\n\n self.createButton({\n - \ label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\n - \ position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\n font_size=130, - color={0,0,0}, font_color={1,1,1}\n })\nend\n\n\n--During Setup\n\n\n--Checks - or unchecks buttons\nfunction buttonClick_selection(index, obj, move)\n local - colorMove = {0,0,1,0.6}\n local color = {0,1,0,0.6}\n\n previousGuid = selectedGuid\n - \ selectedGuid = obj.getGUID()\n\n theList = memoryList\n if move == true - then\n theList = moveList\n if previousGuid ~= nil and previousGuid - ~= selectedGuid then\n local prevObj = getObjectFromGUID(previousGuid)\n - \ prevObj.highlightOff()\n self.editButton({index=previousIndex, - color=colorMove})\n theList[previousGuid] = nil\n end\n previousIndex - = index\n end\n\n if theList[selectedGuid] == nil then\n self.editButton({index=index, - color=color})\n --Adding pos/rot to memory table\n local pos, rot - = obj.getPosition(), obj.getRotation()\n --I need to add it like this or - it won't save due to indexing issue\n theList[obj.getGUID()] = {\n pos={x=round(pos.x,4), - y=round(pos.y,4), z=round(pos.z,4)},\n rot={x=round(rot.x,4), y=round(rot.y,4), - z=round(rot.z,4)},\n lock=obj.getLock()\n }\n obj.highlightOn({0,1,0})\n - \ else\n color = {0.75,0.25,0.25,0.6}\n if move == true then\n color - = colorMove\n end\n self.editButton({index=index, color=color})\n - \ theList[obj.getGUID()] = nil\n obj.highlightOff()\n end\nend\n\n--Cancels - selection process\nfunction buttonClick_cancel()\n memoryList = memoryListBackup\n - \ moveList = {}\n self.clearButtons()\n if next(memoryList) == nil then\n - \ createSetupButton()\n else\n createMemoryActionButtons()\n end\n - \ removeAllHighlights()\n broadcastToAll(\"Selection Canceled\", {1,1,1})\n - \ moveGuid = nil\nend\n\n--Saves selections\nfunction buttonClick_submit()\n - \ fresh = false\n if next(moveList) ~= nil then\n for guid in pairs(moveList) - do\n moveGuid = guid\n end\n if memoryListBackup[moveGuid] - == nil then\n broadcastToAll(\"Item selected for moving is not already - in memory\", {1, 0.25, 0.25})\n else\n broadcastToAll(\"Moving - all items in memory relative to new objects position!\", {0.75, 0.75, 1})\n self.clearButtons()\n - \ createMemoryActionButtons()\n local count = 0\n for - guid in pairs(moveList) do\n moveGuid = guid\n count - = count + 1\n local obj = getObjectFromGUID(guid)\n if - obj ~= nil then obj.highlightOff() end\n end\n updateMemoryWithMoves()\n - \ updateSave()\n buttonClick_place()\n end\n elseif - next(memoryList) == nil and moveGuid == nil then\n memoryList = memoryListBackup\n - \ broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\n end\n combineMemoryFromBagsWithin()\n - \ self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n - \ for guid in pairs(memoryList) do\n count = count + 1\n local - obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n - \ end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n updateSave()\n - \ moveGuid = nil\nend\n\nfunction combineTables(first_table, second_table)\n - \ for k,v in pairs(second_table) do first_table[k] = v end\nend\n\nfunction buttonClick_add()\n - \ fresh = false\n combineTables(memoryList, memoryListBackup)\n broadcastToAll(\"Adding - internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\n combineMemoryFromBagsWithin()\n - \ self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n - \ for guid in pairs(memoryList) do\n count = count + 1\n local - obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n - \ end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n updateSave()\nend\n\nfunction - buttonClick_remove()\n broadcastToAll(\"Removing Selected Entries From - Memory\", {1.0, 0.25, 0.25})\n self.clearButtons()\n createMemoryActionButtons()\n - \ local count = 0\n for guid in pairs(memoryList) do\n count - = count + 1\n memoryListBackup[guid] = nil\n local obj = - getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n - \ end\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\n memoryList - = memoryListBackup\n updateSave()\nend\n\nfunction buttonClick_setNew()\n - \ broadcastToAll(\"Setting new position relative to items in memory\", {0.75, - 0.75, 1})\n self.clearButtons()\n createMemoryActionButtons()\n local - count = 0\n for _, obj in ipairs(getAllObjects()) do\n guid = obj.guid\n - \ if memoryListBackup[guid] ~= nil then\n count = count + 1\n - \ memoryListBackup[guid].pos = obj.getPosition()\n memoryListBackup[guid].rot - = obj.getRotation()\n memoryListBackup[guid].lock = obj.getLock()\n - \ end\n end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n - \ memoryList = memoryListBackup\n updateSave()\nend\n\n--Resets bag to starting - status\nfunction buttonClick_reset()\n fresh = true\n memoryList = {}\n - \ self.clearButtons()\n createSetupButton()\n removeAllHighlights()\n - \ broadcastToAll(\"Tool Reset\", {1,1,1})\n updateSave()\nend\n\n\n--After - Setup\n\n\n--Creates recall and place buttons\nfunction createMemoryActionButtons()\n - \ self.createButton({\n label=\"Place\", click_function=\"buttonClick_place\", - function_owner=self,\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, - width=500,\n font_size=130, color={0,0,0}, font_color={1,1,1}\n })\n - \ self.createButton({\n label=\"Recall\", click_function=\"buttonClick_recall\", - function_owner=self,\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, - width=500,\n font_size=130, color={0,0,0}, font_color={1,1,1}\n })\n - \ self.createButton({\n label=\"Setup\", click_function=\"buttonClick_setup\", - function_owner=self,\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, - width=500,\n font_size=130, color={0,0,0}, font_color={1,1,1}\n })\n--- - \ self.createButton({\n--- label=\"Move\", click_function=\"buttonClick_transpose\", - function_owner=self,\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, - width=800,\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\n--- - \ })\nend\n\n--Sends objects from bag/table to their saved position/rotation\nfunction - buttonClick_place()\n local bagObjList = self.getObjects()\n for guid, entry - in pairs(memoryList) do\n local obj = getObjectFromGUID(guid)\n --If - obj is out on the table, move it to the saved pos/rot\n if obj ~= nil then\n - \ obj.setPositionSmooth(entry.pos)\n obj.setRotationSmooth(entry.rot)\n - \ obj.setLock(entry.lock)\n else\n --If obj is inside - of the bag\n for _, bagObj in ipairs(bagObjList) do\n if - bagObj.guid == guid then\n local item = self.takeObject({\n - \ guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\n - \ })\n item.setLock(entry.lock)\n break\n - \ end\n end\n end\n end\n broadcastToAll(\"Objects - Placed\", {1,1,1})\nend\n\n--Recalls objects to bag from table\nfunction buttonClick_recall()\n - \ for guid, entry in pairs(memoryList) do\n local obj = getObjectFromGUID(guid)\n - \ if obj ~= nil then self.putObject(obj) end\n end\n broadcastToAll(\"Objects - Recalled\", {1,1,1})\nend\n\n\n--Utility functions\n\n\n--Find delta (difference) - between 2 x/y/z coordinates\nfunction findOffsetDistance(p1, p2, obj)\n local - yOffset = 0\n if obj ~= nil then\n local bounds = obj.getBounds()\n - \ yOffset = (bounds.size.y - bounds.offset.y)\n end\n local deltaPos - = {}\n deltaPos.x = (p2.x-p1.x)\n deltaPos.y = (p2.y-p1.y) + yOffset\n deltaPos.z - = (p2.z-p1.z)\n return deltaPos\nend\n\n--Used to rotate a set of coordinates - by an angle\nfunction rotateLocalCoordinates(desiredPos, obj)\n\tlocal objPos, - objRot = obj.getPosition(), obj.getRotation()\n local angle = math.rad(objRot.y)\n\tlocal - x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\n\tlocal z - = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\n\t--return - {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\n return {x=x, y=desiredPos.y, - z=z}\nend\n\nfunction rotateMyCoordinates(desiredPos, obj)\n\tlocal angle = math.rad(obj.getRotation().y)\n - \ local x = desiredPos.x * math.sin(angle)\n\tlocal z = desiredPos.z * math.cos(angle)\n - \ return {x=x, y=desiredPos.y, z=z}\nend\n\n--Coroutine delay, in seconds\nfunction - wait(time)\n local start = os.time()\n repeat coroutine.yield(0) until os.time() - > start + time\nend\n\n--Duplicates a table (needed to prevent it making reference - to the same objects)\nfunction duplicateTable(oldTable)\n local newTable = - {}\n for k, v in pairs(oldTable) do\n newTable[k] = v\n end\n return - newTable\nend\n\n--Moves scripted highlight from all objects\nfunction removeAllHighlights()\n - \ for _, obj in ipairs(getAllObjects()) do\n obj.highlightOff()\n end\nend\n\n--Round - number (num) to the Nth decimal (dec)\nfunction round(num, dec)\n local mult - = 10^(dec or 0)\n return math.floor(num * mult + 0.5) / mult\nend" - LuaScriptState: '{"ml":{"041012":{"lock":false,"pos":{"x":12.2521696090698,"y":1.4815628528595,"z":11.9863443374634},"rot":{"x":359.920135498047,"y":269.999877929688,"z":0.016872700303793}},"0646bf":{"lock":false,"pos":{"x":-3.92764782905579,"y":1.74437856674194,"z":5.75713777542114},"rot":{"x":359.919738769531,"y":270.000030517578,"z":180.016815185547}},"070a78":{"lock":false,"pos":{"x":15.1499996185303,"y":1.49000000953674,"z":-0.0799999982118607},"rot":{"x":359.920013427734,"y":270.000183105469,"z":0.0168723799288273}},"0bd409":{"lock":false,"pos":{"x":15.1499996185303,"y":1.48540902137756,"z":-16.0799999237061},"rot":{"x":359.920135498047,"y":270.000305175781,"z":0.0168718285858631}},"0c97f0":{"lock":false,"pos":{"x":12.2700033187866,"y":1.48269641399384,"z":15.9200010299683},"rot":{"x":0.0168714057654142,"y":179.999954223633,"z":0.0798774659633636}},"1943ff":{"lock":false,"pos":{"x":9.85000038146973,"y":1.4813586473465,"z":-0.0800003558397293},"rot":{"x":359.920135498047,"y":269.999877929688,"z":0.0168734267354012}},"208ebc":{"lock":false,"pos":{"x":-2.72466015815735,"y":1.6159462928772,"z":0.373313426971436},"rot":{"x":0.0168960373848677,"y":179.956954956055,"z":0.0802430883049965}},"31ee5d":{"lock":false,"pos":{"x":15.1499996185303,"y":1.49000000953674,"z":7.92000007629395},"rot":{"x":359.920013427734,"y":270.000061035156,"z":0.0168756786733866}},"3549e7":{"lock":false,"pos":{"x":9.85000038146973,"y":1.48371434211731,"z":7.91999912261963},"rot":{"x":359.920135498047,"y":269.999633789063,"z":0.0168764851987362}},"357610":{"lock":false,"pos":{"x":12.2501697540283,"y":1.48392140865326,"z":19.986349105835},"rot":{"x":359.920135498047,"y":269.999816894531,"z":0.0168732907623053}},"36b4eb":{"lock":false,"pos":{"x":0.270093679428101,"y":1.48960697650909,"z":28.7769813537598},"rot":{"x":359.920135498047,"y":269.999938964844,"z":0.0168721694499254}},"41fdc3":{"lock":false,"pos":{"x":-23.6764469146729,"y":1.62806642055511,"z":-0.0300174467265606},"rot":{"x":359.920104980469,"y":269.999694824219,"z":0.0168400760740042}},"44bc00":{"lock":false,"pos":{"x":12.2500715255737,"y":1.47921013832092,"z":3.98633503913879},"rot":{"x":359.920135498047,"y":269.999969482422,"z":0.016873637214303}},"458f2b":{"lock":false,"pos":{"x":-17.1200523376465,"y":1.61444211006165,"z":-15.2800216674805},"rot":{"x":359.920104980469,"y":269.999877929688,"z":0.0168397892266512}},"499088":{"lock":false,"pos":{"x":-23.6764068603516,"y":1.61334455013275,"z":-3.83002400398254},"rot":{"x":0.0168244950473309,"y":180.010559082031,"z":0.0799428075551987}},"54092b":{"lock":false,"pos":{"x":-13.9964084625244,"y":1.65554821491241,"z":-0.180126652121544},"rot":{"x":359.920104980469,"y":270.000061035156,"z":180.016830444336}},"56fc9d":{"lock":false,"pos":{"x":-30.2241821289063,"y":1.63943040370941,"z":7.56998538970947},"rot":{"x":359.920104980469,"y":269.999725341797,"z":0.0168400164693594}},"5b38c6":{"lock":false,"pos":{"x":-20.2732715606689,"y":1.60632228851318,"z":-11.5783996582031},"rot":{"x":359.983154296875,"y":0.000181010706000961,"z":359.920104980469}},"61c4c5":{"lock":false,"pos":{"x":12.2505617141724,"y":1.47214221954346,"z":-20.013671875},"rot":{"x":359.920135498047,"y":269.999633789063,"z":0.0168726444244385}},"641694":{"lock":false,"pos":{"x":-20.0815486907959,"y":1.60840344429016,"z":-3.58654117584229},"rot":{"x":0.0684084892272949,"y":134.999557495117,"z":0.0445842370390892}},"673295":{"lock":false,"pos":{"x":12.2765111923218,"y":1.48033154010773,"z":7.92000293731689},"rot":{"x":0.016871377825737,"y":179.999938964844,"z":0.0798773169517517}},"6b02f8":{"lock":false,"pos":{"x":-33.4782867431641,"y":1.62927162647247,"z":3.85553073883057},"rot":{"x":359.983154296875,"y":5.7329405535711E-05,"z":359.920104980469}},"6ba06e":{"lock":false,"pos":{"x":-26.7825469970703,"y":1.61883640289307,"z":0.117903299629688},"rot":{"x":0.0798944383859634,"y":90.0002212524414,"z":359.983123779297}},"6be8b0":{"lock":false,"pos":{"x":-23.6764068603516,"y":1.61108767986298,"z":-11.5100345611572},"rot":{"x":0.0168246645480394,"y":180.010467529297,"z":0.0799442157149315}},"6c5b9f":{"lock":false,"pos":{"x":9.85000324249268,"y":1.47664725780487,"z":-16.0800075531006},"rot":{"x":359.920135498047,"y":270.010437011719,"z":0.016860157251358}},"6dec76":{"lock":false,"pos":{"x":-36.7731170654297,"y":1.64632892608643,"z":-0.0300179943442345},"rot":{"x":359.920104980469,"y":269.999755859375,"z":0.0168399456888437}},"6f663b":{"lock":false,"pos":{"x":-30.2242317199707,"y":1.63494277000427,"z":-7.70002508163452},"rot":{"x":359.920104980469,"y":269.999725341797,"z":0.0168399829417467}},"7234af":{"lock":false,"pos":{"x":-36.7731666564941,"y":1.63386726379395,"z":3.86005425453186},"rot":{"x":0.0168241951614618,"y":180.010726928711,"z":0.0799423828721046}},"72c444":{"lock":false,"pos":{"x":12.2745180130005,"y":1.47326719760895,"z":-16.0800037384033},"rot":{"x":0.016871377825737,"y":179.999755859375,"z":0.0798778459429741}},"823edd":{"lock":false,"pos":{"x":9.85000324249268,"y":1.47900295257568,"z":-8.08000183105469},"rot":{"x":359.920135498047,"y":269.999755859375,"z":0.0168739389628172}},"87f6b9":{"lock":false,"pos":{"x":12.2501745223999,"y":1.47449851036072,"z":-12.0136671066284},"rot":{"x":359.920135498047,"y":269.999816894531,"z":0.0168728269636631}},"8b87b3":{"lock":false,"pos":{"x":-36.7731437683105,"y":1.64856255054474,"z":7.56998252868652},"rot":{"x":359.920104980469,"y":269.999725341797,"z":0.0168400462716818}},"937515":{"lock":false,"pos":{"x":15.1499996185303,"y":1.49558484554291,"z":15.9200000762939},"rot":{"x":359.920013427734,"y":269.999816894531,"z":0.0168741084635258}},"94dde3":{"lock":false,"pos":{"x":12.2740049362183,"y":1.4756236076355,"z":-8.07999992370605},"rot":{"x":0.016871327534318,"y":180.000061035156,"z":0.0798767656087875}},"952924":{"lock":false,"pos":{"x":12.2496747970581,"y":1.47685492038727,"z":-4.01367044448853},"rot":{"x":359.920135498047,"y":269.999938964844,"z":0.0168727152049541}},"97c745":{"lock":false,"pos":{"x":-26.9488582611084,"y":1.61791956424713,"z":-3.79106402397156},"rot":{"x":359.983154296875,"y":359.992767333984,"z":359.920104980469}},"98de77":{"lock":false,"pos":{"x":-23.6765613555908,"y":1.62358474731445,"z":-15.2800130844116},"rot":{"x":359.920104980469,"y":269.999633789063,"z":0.0168402101844549}},"9991d4":{"lock":false,"pos":{"x":-2.68847703933716,"y":1.61430239677429,"z":-5.04854536056519},"rot":{"x":0.0168096069246531,"y":180.018661499023,"z":0.0802613347768784}},"a3b604":{"lock":false,"pos":{"x":-20.2402076721191,"y":1.60508036613464,"z":-15.6466379165649},"rot":{"x":0.0798944383859634,"y":90.0002670288086,"z":359.983123779297}},"a3b9ce":{"lock":false,"pos":{"x":-30.2241268157959,"y":1.62473499774933,"z":3.85997748374939},"rot":{"x":0.0168243143707514,"y":180.010665893555,"z":0.0799384042620659}},"a45247":{"lock":false,"pos":{"x":1.69637870788574,"y":1.55831694602966,"z":14.2788572311401},"rot":{"x":359.955139160156,"y":224.997924804688,"z":0.0686724856495857}},"a6049c":{"lock":false,"pos":{"x":12.2744064331055,"y":1.47797882556915,"z":-0.0799992084503174},"rot":{"x":0.0168714188039303,"y":180.000045776367,"z":0.0798778161406517}},"aa4b2c":{"lock":false,"pos":{"x":-20.4563217163086,"y":1.60770308971405,"z":-7.748703956604},"rot":{"x":0.0798945873975754,"y":89.9999389648438,"z":359.983123779297}},"ab992b":{"lock":false,"pos":{"x":-27.0462245941162,"y":1.61578059196472,"z":-11.5305461883545},"rot":{"x":0.0684082359075546,"y":134.999618530273,"z":0.0445832647383213}},"b73127":{"lock":false,"pos":{"x":-26.6622619628906,"y":1.61645436286926,"z":-7.41628074645996},"rot":{"x":0.0798943638801575,"y":90.0001525878906,"z":359.983123779297}},"b89737":{"lock":false,"pos":{"x":-30.2241230010986,"y":1.62247490882874,"z":-3.83002114295959},"rot":{"x":0.0168243553489447,"y":180.010681152344,"z":0.0799569264054298}},"c16b4e":{"lock":false,"pos":{"x":-17.1199989318848,"y":1.61666977405548,"z":-7.70001983642578},"rot":{"x":359.920104980469,"y":269.999877929688,"z":0.0168399959802628}},"c94046":{"lock":false,"pos":{"x":-33.4688339233398,"y":1.6303539276123,"z":7.58308696746826},"rot":{"x":0.0798943936824799,"y":89.9999771118164,"z":359.983123779297}},"ceb7d4":{"lock":false,"pos":{"x":-26.8105792999268,"y":1.62001419067383,"z":3.99276566505432},"rot":{"x":0.0684082061052322,"y":134.999557495117,"z":0.0445845611393452}},"d0163a":{"lock":false,"pos":{"x":-33.4151954650879,"y":1.62686562538147,"z":-4.03124570846558},"rot":{"x":0.0684084370732307,"y":134.999435424805,"z":0.0445839650928974}},"d41278":{"lock":false,"pos":{"x":-3.95589399337769,"y":1.59753930568695,"z":-10.4411849975586},"rot":{"x":359.919738769531,"y":269.999816894531,"z":0.0168373994529247}},"e61348":{"lock":false,"pos":{"x":-23.6765117645264,"y":1.62581241130829,"z":-7.70001935958862},"rot":{"x":359.920104980469,"y":269.999725341797,"z":0.0168399699032307}},"e87867":{"lock":false,"pos":{"x":-30.2241630554199,"y":1.6371967792511,"z":-0.0300170239061117},"rot":{"x":359.920104980469,"y":269.999877929688,"z":0.0168398097157478}},"eab8ff":{"lock":false,"pos":{"x":9.84999656677246,"y":1.48607003688812,"z":15.9200029373169},"rot":{"x":359.920135498047,"y":269.999481201172,"z":0.0168752484023571}},"eef566":{"lock":false,"pos":{"x":-33.4450149536133,"y":1.62811577320099,"z":0.0806871131062508},"rot":{"x":0.0798944979906082,"y":90.0002212524414,"z":359.983123779297}},"efb4dd":{"lock":false,"pos":{"x":15.1499996185303,"y":1.49000000953674,"z":-8.07999992370605},"rot":{"x":359.920013427734,"y":270.000183105469,"z":0.0168743338435888}},"efb516":{"lock":false,"pos":{"x":-17.1198806762695,"y":1.60194492340088,"z":-11.5100326538086},"rot":{"x":0.0168239641934633,"y":180.011001586914,"z":0.0799526497721672}},"f5db25":{"lock":false,"pos":{"x":-3.6761999130249,"y":1.58233964443207,"z":-14.5353908538818},"rot":{"x":359.919738769531,"y":269.999816894531,"z":0.016838077455759}}}}' - MaterialIndex: -1 + LuaScript: "-- Bundled by luabundle {\"version\":\"1.6.0\"}\nlocal __bundle_require, + __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire)\n\tlocal + loadingPlaceholder = {[{}] = true}\n\n\tlocal register\n\tlocal modules = {}\n\n\tlocal + require\n\tlocal loaded = {}\n\n\tregister = function(name, body)\n\t\tif not + modules[name] then\n\t\t\tmodules[name] = body\n\t\tend\n\tend\n\n\trequire = + function(name)\n\t\tlocal loadedModule = loaded[name]\n\n\t\tif loadedModule then\n\t\t\tif + loadedModule == loadingPlaceholder then\n\t\t\t\treturn nil\n\t\t\tend\n\t\telse\n\t\t\tif + not modules[name] then\n\t\t\t\tif not superRequire then\n\t\t\t\t\tlocal identifier + = type(name) == 'string' and '\\\"' .. name .. '\\\"' or tostring(name)\n\t\t\t\t\terror('Tried + to require ' .. identifier .. ', but no such module has been registered')\n\t\t\t\telse\n\t\t\t\t\treturn + superRequire(name)\n\t\t\t\tend\n\t\t\tend\n\n\t\t\tloaded[name] = loadingPlaceholder\n\t\t\tloadedModule + = modules[name](require, loaded, register, modules)\n\t\t\tloaded[name] = loadedModule\n\t\tend\n\n\t\treturn + loadedModule\n\tend\n\n\treturn require, loaded, register, modules\nend)(nil)\n__bundle_register(\"__root\", + function(require, _LOADED, __bundle_register, __bundle_modules)\nrequire(\"core/DownloadBox\")\nend)\n__bundle_register(\"core/DownloadBox\", + function(require, _LOADED, __bundle_register, __bundle_modules)\nfunction onLoad()\n + \ local notes = self.getGMNotes()\n\n -- default parameters (e.g. scenarios)\n + \ local buttonParameters = {\n label = \"Download\",\n click_function = + \"buttonClick_download\",\n function_owner = self,\n position = { x = 0, + y = 0.1, z = 2.1 },\n height = 250,\n width = 800,\n font_size = 150,\n + \ color = { 0, 0, 0 },\n font_color = { 1, 1, 1 }\n }\n\n -- return to + boxes\n if string.match(notes, \"................\") == \"campaigns/return\" + then\n buttonParameters.position.z = 2\n\n -- official campaign boxes\n + \ elseif string.match(notes, \".........\") == \"campaigns\" or self.hasTag(\"LargeBox\") + then\n buttonParameters.position.z = 6\n buttonParameters.height = 500\n + \ buttonParameters.width = 1700\n buttonParameters.font_size = 350\n\n -- + investigator boxes\n elseif string.match(notes, \".............\") == \"investigators\" + then\n buttonParameters.position.z = 7\n buttonParameters.height = 850\n + \ buttonParameters.width = 3400\n buttonParameters.font_size = 700\n end\n\n + \ self.createButton(buttonParameters)\nend\n\nfunction buttonClick_download()\n + \ Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid + })\nend\nend)\nreturn __bundle_require(\"__root\")" + LuaScriptState: '' MeasureMovement: false - MeshIndex: -1 - Name: Custom_Model_Bag + Name: Custom_Model Nickname: The Meddling of Meowlathotep Snap: true Sticky: true Tooltip: true Transform: - posX: 30.293 - posY: 9.347 - posZ: -28.055 - rotX: 0 - rotY: 270 - rotZ: 0 + posX: -41.275 + posY: 3.446 + posZ: -98.784 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 @@ -7821,9 +144,9 @@ Transform: posX: -60.65 posY: -0.63 posZ: -80.61 - rotX: 0 - rotY: 315 - rotZ: 0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.45 scaleY: 0.45 scaleZ: 0.45 diff --git a/unpacked/Custom_Model Clue Counter 032300.yaml b/unpacked/Custom_Model Clue Counter 032300.yaml index 8a5cdf134..4db7a4172 100644 --- a/unpacked/Custom_Model Clue Counter 032300.yaml +++ b/unpacked/Custom_Model Clue Counter 032300.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - a: 0 - b: 0 - g: 0 - r: 0 + a: 0.0 + b: 0.0 + g: 0.0 + r: 0.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1035211763828036632/8CBB93F4FCFB3A6DB42AB6BC1188EA4559FF0A87/ MaterialIndex: 3 MeshURL: https://pastebin.com/raw/ALrYhQGb diff --git a/unpacked/Custom_Model Clue Counter 1769ed.yaml b/unpacked/Custom_Model Clue Counter 1769ed.yaml index e07b0dc4c..b01da4f9f 100644 --- a/unpacked/Custom_Model Clue Counter 1769ed.yaml +++ b/unpacked/Custom_Model Clue Counter 1769ed.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - a: 0 - b: 0 - g: 0 - r: 0 + a: 0.0 + b: 0.0 + g: 0.0 + r: 0.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1035211763828036632/8CBB93F4FCFB3A6DB42AB6BC1188EA4559FF0A87/ MaterialIndex: 3 MeshURL: https://pastebin.com/raw/ALrYhQGb @@ -48,9 +48,9 @@ Transform: posX: -59.4 posY: 1.52 posZ: -22.59 - rotX: 0 - rotY: 280 - rotZ: 0 + rotX: 0.0 + rotY: 280.0 + rotZ: 0.0 scaleX: 0.33 scaleY: 0.33 scaleZ: 0.33 diff --git a/unpacked/Custom_Model Clue Counter 37be78.yaml b/unpacked/Custom_Model Clue Counter 37be78.yaml index 8648b17bd..b697d67f9 100644 --- a/unpacked/Custom_Model Clue Counter 37be78.yaml +++ b/unpacked/Custom_Model Clue Counter 37be78.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - a: 0 - b: 0 - g: 0 - r: 0 + a: 0.0 + b: 0.0 + g: 0.0 + r: 0.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1035211763828036632/8CBB93F4FCFB3A6DB42AB6BC1188EA4559FF0A87/ MaterialIndex: 3 MeshURL: https://pastebin.com/raw/ALrYhQGb diff --git a/unpacked/Custom_Model Clue Counter d86b7c.ttslua b/unpacked/Custom_Model Clue Counter d86b7c.ttslua index 3bf8fb7f0..d1a8426f7 100644 --- a/unpacked/Custom_Model Clue Counter d86b7c.ttslua +++ b/unpacked/Custom_Model Clue Counter d86b7c.ttslua @@ -41,6 +41,9 @@ local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = ( return require, loaded, register, modules end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playermat/ClueCounter") +end) __bundle_register("playermat/ClueCounter", function(require, _LOADED, __bundle_register, __bundle_modules) -- Table of items which can be counted in this Bowl -- Each entry has 2 things to enter @@ -129,7 +132,4 @@ function clueRemovalCoroutine() return 1 end end) -__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) -require("playermat/ClueCounter") -end) return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model Clue Counter d86b7c.yaml b/unpacked/Custom_Model Clue Counter d86b7c.yaml index c184ce520..163e2ee68 100644 --- a/unpacked/Custom_Model Clue Counter d86b7c.yaml +++ b/unpacked/Custom_Model Clue Counter d86b7c.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - a: 0 - b: 0 - g: 0 - r: 0 + a: 0.0 + b: 0.0 + g: 0.0 + r: 0.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1035211763828036632/8CBB93F4FCFB3A6DB42AB6BC1188EA4559FF0A87/ MaterialIndex: 3 MeshURL: https://pastebin.com/raw/ALrYhQGb @@ -48,9 +48,9 @@ Transform: posX: -59.45 posY: 1.52 posZ: 9.59 - rotX: 0 - rotY: 280 - rotZ: 0 + rotX: 0.0 + rotY: 280.0 + rotZ: 0.0 scaleX: 0.33 scaleY: 0.33 scaleZ: 0.33 diff --git a/unpacked/Custom_Model CoreNight of the Zealot 64a613.ttslua b/unpacked/Custom_Model CoreNight of the Zealot 64a613.ttslua index d3587cd5d..3c2a044ca 100644 --- a/unpacked/Custom_Model CoreNight of the Zealot 64a613.ttslua +++ b/unpacked/Custom_Model CoreNight of the Zealot 64a613.ttslua @@ -66,7 +66,7 @@ function onLoad() buttonParameters.position.z = 2 -- official campaign boxes - elseif string.match(notes, ".........") == "campaigns" then + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then buttonParameters.position.z = 6 buttonParameters.height = 500 buttonParameters.width = 1700 diff --git a/unpacked/Custom_Model CoreNight of the Zealot 64a613.yaml b/unpacked/Custom_Model CoreNight of the Zealot 64a613.yaml index f1bbda8f6..a78231df2 100644 --- a/unpacked/Custom_Model CoreNight of the Zealot 64a613.yaml +++ b/unpacked/Custom_Model CoreNight of the Zealot 64a613.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/762723517667628371/18438B0A0045038A7099648AA3346DFCAA267C66/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj @@ -45,14 +45,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 65 + posX: 65.0 posY: 1.48 - posZ: -55 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 + posZ: -55.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 scaleY: 0.14 - scaleZ: 1 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model Decoration - Ammo 0a3b03.yaml b/unpacked/Custom_Model Decoration - Ammo 0a3b03.yaml index e060b37be..b26f90388 100644 --- a/unpacked/Custom_Model Decoration - Ammo 0a3b03.yaml +++ b/unpacked/Custom_Model Decoration - Ammo 0a3b03.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0.14106 - g: 0.14106 - r: 0.14106 + b: 0.141059935 + g: 0.141059935 + r: 0.141059935 CustomMesh: CastShadows: true ColliderURL: '' @@ -34,14 +34,14 @@ Name: Custom_Model Nickname: Decoration - Ammo PhysicsMaterial: BounceCombine: 0 - Bounciness: 0 - DynamicFriction: 0 + Bounciness: 0.0 + DynamicFriction: 0.0 FrictionCombine: 0 - StaticFriction: 0 + StaticFriction: 0.0 Rigidbody: - AngularDrag: 0 - Drag: 0 - Mass: 500 + AngularDrag: 0.0 + Drag: 0.0 + Mass: 500.0 UseGravity: true Snap: false Sticky: true @@ -50,9 +50,9 @@ Transform: posX: -66.52 posY: 1.64 posZ: -83.3 - rotX: 8 - rotY: 176 - rotZ: 267 + rotX: 8.0 + rotY: 176.0 + rotZ: 267.0 scaleX: 0.2 scaleY: 0.3 scaleZ: 0.2 diff --git a/unpacked/Custom_Model Decoration - Ammo b43845.yaml b/unpacked/Custom_Model Decoration - Ammo b43845.yaml index 1fc350fad..e8f243d8a 100644 --- a/unpacked/Custom_Model Decoration - Ammo b43845.yaml +++ b/unpacked/Custom_Model Decoration - Ammo b43845.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0.14106 - g: 0.14106 - r: 0.14106 + b: 0.141059935 + g: 0.141059935 + r: 0.141059935 CustomMesh: CastShadows: true ColliderURL: '' @@ -34,14 +34,14 @@ Name: Custom_Model Nickname: Decoration - Ammo PhysicsMaterial: BounceCombine: 0 - Bounciness: 0 - DynamicFriction: 0 + Bounciness: 0.0 + DynamicFriction: 0.0 FrictionCombine: 0 - StaticFriction: 0 + StaticFriction: 0.0 Rigidbody: - AngularDrag: 0 - Drag: 0 - Mass: 500 + AngularDrag: 0.0 + Drag: 0.0 + Mass: 500.0 UseGravity: true Snap: false Sticky: true @@ -50,9 +50,9 @@ Transform: posX: -65.83 posY: 1.57 posZ: -81.11 - rotX: 290 - rotY: 59 - rotZ: 268 + rotX: 290.0 + rotY: 59.0 + rotZ: 268.0 scaleX: 0.2 scaleY: 0.3 scaleZ: 0.2 diff --git a/unpacked/Custom_Model Decoration - Ammo d35ee9.yaml b/unpacked/Custom_Model Decoration - Ammo d35ee9.yaml index 315d58908..10ba1624d 100644 --- a/unpacked/Custom_Model Decoration - Ammo d35ee9.yaml +++ b/unpacked/Custom_Model Decoration - Ammo d35ee9.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0.14106 - g: 0.14106 - r: 0.14106 + b: 0.141059935 + g: 0.141059935 + r: 0.141059935 CustomMesh: CastShadows: true ColliderURL: '' @@ -34,14 +34,14 @@ Name: Custom_Model Nickname: Decoration - Ammo PhysicsMaterial: BounceCombine: 0 - Bounciness: 0 - DynamicFriction: 0 + Bounciness: 0.0 + DynamicFriction: 0.0 FrictionCombine: 0 - StaticFriction: 0 + StaticFriction: 0.0 Rigidbody: - AngularDrag: 0 - Drag: 0 - Mass: 500 + AngularDrag: 0.0 + Drag: 0.0 + Mass: 500.0 UseGravity: true Snap: false Sticky: true @@ -50,9 +50,9 @@ Transform: posX: -66.51 posY: 1.6 posZ: -88.12 - rotX: 0 - rotY: 161 - rotZ: 90 + rotX: 0.0 + rotY: 161.0 + rotZ: 90.0 scaleX: 0.2 scaleY: 0.3 scaleZ: 0.2 diff --git a/unpacked/Custom_Model Decoration - Coin 180a23.yaml b/unpacked/Custom_Model Decoration - Coin 180a23.yaml index 9d0bc632e..da662120d 100644 --- a/unpacked/Custom_Model Decoration - Coin 180a23.yaml +++ b/unpacked/Custom_Model Decoration - Coin 180a23.yaml @@ -1,24 +1,24 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: b: 0.339915335 g: 0.507659256 r: 0.7222887 SpecularIntensity: 0.4 - SpecularSharpness: 7 + SpecularSharpness: 7.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/254843371583186619/365F95EC37B9B27DA32781DB460F0B70DB22F43F/ MaterialIndex: 2 MeshURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ @@ -47,9 +47,9 @@ Transform: posX: -53.18 posY: 1.52 posZ: -87.32 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.33 scaleY: 0.33 scaleZ: 0.33 diff --git a/unpacked/Custom_Model Decoration - Coin 4be4a3.yaml b/unpacked/Custom_Model Decoration - Coin 4be4a3.yaml index b9b972831..18b5d4fc0 100644 --- a/unpacked/Custom_Model Decoration - Coin 4be4a3.yaml +++ b/unpacked/Custom_Model Decoration - Coin 4be4a3.yaml @@ -1,24 +1,24 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: b: 0.339915335 g: 0.507659256 r: 0.7222887 SpecularIntensity: 0.4 - SpecularSharpness: 7 + SpecularSharpness: 7.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/254843371583188147/920981125E37B5CEB6C400E3FD353A2C428DA969/ MaterialIndex: 2 MeshURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ @@ -47,9 +47,9 @@ Transform: posX: -52.24 posY: 1.52 posZ: -88.2 - rotX: 0 - rotY: 315 - rotZ: 0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.33 scaleY: 0.33 scaleZ: 0.33 diff --git a/unpacked/Custom_Model Decoration - Coin 87ccfc.yaml b/unpacked/Custom_Model Decoration - Coin 87ccfc.yaml index c3e7e6e8c..3df40e193 100644 --- a/unpacked/Custom_Model Decoration - Coin 87ccfc.yaml +++ b/unpacked/Custom_Model Decoration - Coin 87ccfc.yaml @@ -1,24 +1,24 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: b: 0.339915335 g: 0.507659256 r: 0.7222887 SpecularIntensity: 0.4 - SpecularSharpness: 7 + SpecularSharpness: 7.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/254843371583188147/920981125E37B5CEB6C400E3FD353A2C428DA969/ MaterialIndex: 2 MeshURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ @@ -47,9 +47,9 @@ Transform: posX: -56.08 posY: 1.52 posZ: -90.48 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.33 scaleY: 0.33 scaleZ: 0.33 diff --git a/unpacked/Custom_Model Decoration - Coin a90f21.yaml b/unpacked/Custom_Model Decoration - Coin a90f21.yaml index 3da714412..bdc396245 100644 --- a/unpacked/Custom_Model Decoration - Coin a90f21.yaml +++ b/unpacked/Custom_Model Decoration - Coin a90f21.yaml @@ -1,24 +1,24 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: b: 0.339915335 g: 0.507659256 r: 0.7222887 SpecularIntensity: 0.4 - SpecularSharpness: 7 + SpecularSharpness: 7.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/254843371583188147/920981125E37B5CEB6C400E3FD353A2C428DA969/ MaterialIndex: 2 MeshURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ @@ -47,9 +47,9 @@ Transform: posX: -55.54 posY: 1.54 posZ: -88.08 - rotX: 0 - rotY: 225 - rotZ: 180 + rotX: 0.0 + rotY: 225.0 + rotZ: 180.0 scaleX: 0.33 scaleY: 0.33 scaleZ: 0.33 diff --git a/unpacked/Custom_Model Decoration - Coin d7c767.yaml b/unpacked/Custom_Model Decoration - Coin d7c767.yaml index 22f0cc716..09197efbe 100644 --- a/unpacked/Custom_Model Decoration - Coin d7c767.yaml +++ b/unpacked/Custom_Model Decoration - Coin d7c767.yaml @@ -1,24 +1,24 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: b: 0.339915335 g: 0.507659256 r: 0.7222887 SpecularIntensity: 0.4 - SpecularSharpness: 7 + SpecularSharpness: 7.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/254843371583188147/920981125E37B5CEB6C400E3FD353A2C428DA969/ MaterialIndex: 2 MeshURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ @@ -47,9 +47,9 @@ Transform: posX: -54.09 posY: 1.54 posZ: -92.21 - rotX: 0 - rotY: 135 - rotZ: 180 + rotX: 0.0 + rotY: 135.0 + rotZ: 180.0 scaleX: 0.33 scaleY: 0.33 scaleZ: 0.33 diff --git a/unpacked/Custom_Model Decoration - Coin f18c2d.yaml b/unpacked/Custom_Model Decoration - Coin f18c2d.yaml index 91510f796..e57ee960b 100644 --- a/unpacked/Custom_Model Decoration - Coin f18c2d.yaml +++ b/unpacked/Custom_Model Decoration - Coin f18c2d.yaml @@ -1,24 +1,24 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: b: 0.339915335 g: 0.507659256 r: 0.7222887 SpecularIntensity: 0.4 - SpecularSharpness: 7 + SpecularSharpness: 7.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/254843371583186619/365F95EC37B9B27DA32781DB460F0B70DB22F43F/ MaterialIndex: 2 MeshURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ @@ -47,9 +47,9 @@ Transform: posX: -53.87 posY: 1.54 posZ: -93.24 - rotX: 0 - rotY: 180 - rotZ: 180 + rotX: 0.0 + rotY: 180.0 + rotZ: 180.0 scaleX: 0.33 scaleY: 0.33 scaleZ: 0.33 diff --git a/unpacked/Custom_Model Decoration - Coin f42af3.yaml b/unpacked/Custom_Model Decoration - Coin f42af3.yaml index 26281aef8..b991e370e 100644 --- a/unpacked/Custom_Model Decoration - Coin f42af3.yaml +++ b/unpacked/Custom_Model Decoration - Coin f42af3.yaml @@ -1,24 +1,24 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: b: 0.339915335 g: 0.507659256 r: 0.7222887 SpecularIntensity: 0.4 - SpecularSharpness: 7 + SpecularSharpness: 7.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/254843371583186619/365F95EC37B9B27DA32781DB460F0B70DB22F43F/ MaterialIndex: 2 MeshURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ @@ -47,9 +47,9 @@ Transform: posX: -54.28 posY: 1.52 posZ: -90.41 - rotX: 0 - rotY: 315 - rotZ: 0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.33 scaleY: 0.33 scaleZ: 0.33 diff --git a/unpacked/Custom_Model Edge of the Earth 895eaa.ttslua b/unpacked/Custom_Model Edge of the Earth 895eaa.ttslua index d3587cd5d..3c2a044ca 100644 --- a/unpacked/Custom_Model Edge of the Earth 895eaa.ttslua +++ b/unpacked/Custom_Model Edge of the Earth 895eaa.ttslua @@ -66,7 +66,7 @@ function onLoad() buttonParameters.position.z = 2 -- official campaign boxes - elseif string.match(notes, ".........") == "campaigns" then + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then buttonParameters.position.z = 6 buttonParameters.height = 500 buttonParameters.width = 1700 diff --git a/unpacked/Custom_Model Edge of the Earth 895eaa.yaml b/unpacked/Custom_Model Edge of the Earth 895eaa.yaml index d2d39eff8..fc912a711 100644 --- a/unpacked/Custom_Model Edge of the Earth 895eaa.yaml +++ b/unpacked/Custom_Model Edge of the Earth 895eaa.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_COL.obj Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1856042908471857208/3B48FFA47FB366932049AD9CD8A3222A8F89FAEB/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj @@ -45,14 +45,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 39 + posX: 39.0 posY: 1.49 - posZ: -87 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 + posZ: -87.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 scaleY: 0.14 - scaleZ: 1 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model Encounter Sets 304ffc.yaml b/unpacked/Custom_Model Encounter Sets 304ffc.yaml index 3fc018864..725fbb074 100644 --- a/unpacked/Custom_Model Encounter Sets 304ffc.yaml +++ b/unpacked/Custom_Model Encounter Sets 304ffc.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' @@ -47,11 +47,11 @@ Transform: posX: -66.41 posY: 1.86 posZ: -84.55 - rotX: 90 - rotY: 151 - rotZ: 0 - scaleX: 3 - scaleY: 3 - scaleZ: 3 + rotX: 90.0 + rotY: 151.0 + rotZ: 0.0 + scaleX: 3.0 + scaleY: 3.0 + scaleZ: 3.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model Return to The Circle Undone 757324.ttslua b/unpacked/Custom_Model Return to The Circle Undone 757324.ttslua index d3587cd5d..3c2a044ca 100644 --- a/unpacked/Custom_Model Return to The Circle Undone 757324.ttslua +++ b/unpacked/Custom_Model Return to The Circle Undone 757324.ttslua @@ -66,7 +66,7 @@ function onLoad() buttonParameters.position.z = 2 -- official campaign boxes - elseif string.match(notes, ".........") == "campaigns" then + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then buttonParameters.position.z = 6 buttonParameters.height = 500 buttonParameters.width = 1700 diff --git a/unpacked/Custom_Model Return to The Circle Undone 757324.yaml b/unpacked/Custom_Model Return to The Circle Undone 757324.yaml index 8fbbc06dd..44f4e6dd2 100644 --- a/unpacked/Custom_Model Return to The Circle Undone 757324.yaml +++ b/unpacked/Custom_Model Return to The Circle Undone 757324.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 + b: 1.0 g: 0.99608 - r: 1 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1697277388086852852/6FD56D74FDDDA5626A3B72E788993EC651AD25E1/ MaterialIndex: 3 MeshURL: http://pastebin.com/raw.php?i=uWAmuNZ2 @@ -45,13 +45,13 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 13 + posX: 13.0 posY: 1.87 - posZ: -71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 2 + posZ: -71.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.0 scaleY: 0.11 scaleZ: 1.69 Value: 0 diff --git a/unpacked/Custom_Model Return to The Dunwich Legacy ce9130.ttslua b/unpacked/Custom_Model Return to The Dunwich Legacy ce9130.ttslua index d3587cd5d..e6f67c6af 100644 --- a/unpacked/Custom_Model Return to The Dunwich Legacy ce9130.ttslua +++ b/unpacked/Custom_Model Return to The Dunwich Legacy ce9130.ttslua @@ -41,9 +41,6 @@ local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = ( return require, loaded, register, modules end)(nil) -__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) -require("core/DownloadBox") -end) __bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) function onLoad() local notes = self.getGMNotes() @@ -66,7 +63,7 @@ function onLoad() buttonParameters.position.z = 2 -- official campaign boxes - elseif string.match(notes, ".........") == "campaigns" then + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then buttonParameters.position.z = 6 buttonParameters.height = 500 buttonParameters.width = 1700 @@ -87,4 +84,7 @@ function buttonClick_download() Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) end end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model Return to The Dunwich Legacy ce9130.yaml b/unpacked/Custom_Model Return to The Dunwich Legacy ce9130.yaml index d3719669f..854345feb 100644 --- a/unpacked/Custom_Model Return to The Dunwich Legacy ce9130.yaml +++ b/unpacked/Custom_Model Return to The Dunwich Legacy ce9130.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 + b: 1.0 g: 0.99608 - r: 1 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/762723517667592476/36D86649503A49A36AA97B7B72C6150E4C2BE333/ MaterialIndex: 3 MeshURL: http://pastebin.com/raw.php?i=uWAmuNZ2 @@ -45,13 +45,13 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 52 + posX: 52.0 posY: 1.87 - posZ: -71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 2 + posZ: -71.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.0 scaleY: 0.11 scaleZ: 1.69 Value: 0 diff --git a/unpacked/Custom_Model Return to The Forgotten Age 479ff3.ttslua b/unpacked/Custom_Model Return to The Forgotten Age 479ff3.ttslua index d3587cd5d..3c2a044ca 100644 --- a/unpacked/Custom_Model Return to The Forgotten Age 479ff3.ttslua +++ b/unpacked/Custom_Model Return to The Forgotten Age 479ff3.ttslua @@ -66,7 +66,7 @@ function onLoad() buttonParameters.position.z = 2 -- official campaign boxes - elseif string.match(notes, ".........") == "campaigns" then + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then buttonParameters.position.z = 6 buttonParameters.height = 500 buttonParameters.width = 1700 diff --git a/unpacked/Custom_Model Return to The Forgotten Age 479ff3.yaml b/unpacked/Custom_Model Return to The Forgotten Age 479ff3.yaml index 7d4b4711c..fe2bda916 100644 --- a/unpacked/Custom_Model Return to The Forgotten Age 479ff3.yaml +++ b/unpacked/Custom_Model Return to The Forgotten Age 479ff3.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 + b: 1.0 g: 0.99608 - r: 1 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1474319121423613924/490D56D20C6AE0547D67D942513396E8D0584A4A/ MaterialIndex: 3 MeshURL: http://pastebin.com/raw.php?i=uWAmuNZ2 @@ -45,13 +45,13 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 26 + posX: 26.0 posY: 1.87 - posZ: -71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 2 + posZ: -71.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.0 scaleY: 0.11 scaleZ: 1.69 Value: 0 diff --git a/unpacked/Custom_Model Return to The Path to Carcosa e9889a.ttslua b/unpacked/Custom_Model Return to The Path to Carcosa e9889a.ttslua index 6351ec905..e6f67c6af 100644 --- a/unpacked/Custom_Model Return to The Path to Carcosa e9889a.ttslua +++ b/unpacked/Custom_Model Return to The Path to Carcosa e9889a.ttslua @@ -63,7 +63,7 @@ function onLoad() buttonParameters.position.z = 2 -- official campaign boxes - elseif string.match(notes, ".........") == "campaigns" then + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then buttonParameters.position.z = 6 buttonParameters.height = 500 buttonParameters.width = 1700 diff --git a/unpacked/Custom_Model Return to The Path to Carcosa e9889a.yaml b/unpacked/Custom_Model Return to The Path to Carcosa e9889a.yaml index 62f0af908..c04032d80 100644 --- a/unpacked/Custom_Model Return to The Path to Carcosa e9889a.yaml +++ b/unpacked/Custom_Model Return to The Path to Carcosa e9889a.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27059 - b: 1 + b: 1.0 g: 0.99608 - r: 1 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/762723517667556656/9638E8CE7F209B50634B202C9EF4B0BDB4993BBB/ MaterialIndex: 3 MeshURL: http://pastebin.com/raw.php?i=uWAmuNZ2 @@ -45,13 +45,13 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 39 + posX: 39.0 posY: 1.87 - posZ: -71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 2 + posZ: -71.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.0 scaleY: 0.11 scaleZ: 1.69 Value: 0 diff --git a/unpacked/Custom_Model Return to the Night of the Zealot 56270d.ttslua b/unpacked/Custom_Model Return to the Night of the Zealot 56270d.ttslua index d3587cd5d..3c2a044ca 100644 --- a/unpacked/Custom_Model Return to the Night of the Zealot 56270d.ttslua +++ b/unpacked/Custom_Model Return to the Night of the Zealot 56270d.ttslua @@ -66,7 +66,7 @@ function onLoad() buttonParameters.position.z = 2 -- official campaign boxes - elseif string.match(notes, ".........") == "campaigns" then + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then buttonParameters.position.z = 6 buttonParameters.height = 500 buttonParameters.width = 1700 diff --git a/unpacked/Custom_Model Return to the Night of the Zealot 56270d.yaml b/unpacked/Custom_Model Return to the Night of the Zealot 56270d.yaml index de1726169..34e5c62b1 100644 --- a/unpacked/Custom_Model Return to the Night of the Zealot 56270d.yaml +++ b/unpacked/Custom_Model Return to the Night of the Zealot 56270d.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 + b: 1.0 g: 0.99608 - r: 1 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/762723517667598054/18C06F0F20D9D4651E6736FB609E2D41F4D1964E/ MaterialIndex: 3 MeshURL: http://pastebin.com/raw.php?i=uWAmuNZ2 @@ -45,13 +45,13 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 65 + posX: 65.0 posY: 1.87 - posZ: -71 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 2 + posZ: -71.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.0 scaleY: 0.11 scaleZ: 1.69 Value: 0 diff --git a/unpacked/Custom_Model TableSurface 4ee1f2.yaml b/unpacked/Custom_Model TableSurface 4ee1f2.yaml index 12b827252..773134b77 100644 --- a/unpacked/Custom_Model TableSurface 4ee1f2.yaml +++ b/unpacked/Custom_Model TableSurface 4ee1f2.yaml @@ -1,24 +1,24 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://i.imgur.com/EFTMP2d.jpg MaterialIndex: 1 MeshURL: http://cloud-3.steamusercontent.com/ugc/879750610978796176/4A5A65543B98BCFBF57E910D06EC984208223D38/ @@ -44,14 +44,14 @@ Snap: true Sticky: true Tooltip: false Transform: - posX: 0 - posY: -9 - posZ: 0 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 4 - scaleY: 1 + posX: 0.0 + posY: -9.0 + posZ: 0.0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 4.0 + scaleY: 1.0 scaleZ: 5.45 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model The Circle Undone 63e097.ttslua b/unpacked/Custom_Model The Circle Undone 63e097.ttslua index d3587cd5d..3c2a044ca 100644 --- a/unpacked/Custom_Model The Circle Undone 63e097.ttslua +++ b/unpacked/Custom_Model The Circle Undone 63e097.ttslua @@ -66,7 +66,7 @@ function onLoad() buttonParameters.position.z = 2 -- official campaign boxes - elseif string.match(notes, ".........") == "campaigns" then + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then buttonParameters.position.z = 6 buttonParameters.height = 500 buttonParameters.width = 1700 diff --git a/unpacked/Custom_Model The Circle Undone 63e097.yaml b/unpacked/Custom_Model The Circle Undone 63e097.yaml index 81f888545..e9ae97a57 100644 --- a/unpacked/Custom_Model The Circle Undone 63e097.yaml +++ b/unpacked/Custom_Model The Circle Undone 63e097.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_COL.obj Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/762723517669843863/DC0750A38111062909FEDA1BC20685895A574A54/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj @@ -45,14 +45,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 13 + posX: 13.0 posY: 1.49 - posZ: -55 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 + posZ: -55.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 scaleY: 0.14 - scaleZ: 1 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model The Dream-Eaters a16a1a.ttslua b/unpacked/Custom_Model The Dream-Eaters a16a1a.ttslua index d3587cd5d..3c2a044ca 100644 --- a/unpacked/Custom_Model The Dream-Eaters a16a1a.ttslua +++ b/unpacked/Custom_Model The Dream-Eaters a16a1a.ttslua @@ -66,7 +66,7 @@ function onLoad() buttonParameters.position.z = 2 -- official campaign boxes - elseif string.match(notes, ".........") == "campaigns" then + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then buttonParameters.position.z = 6 buttonParameters.height = 500 buttonParameters.width = 1700 diff --git a/unpacked/Custom_Model The Dream-Eaters a16a1a.yaml b/unpacked/Custom_Model The Dream-Eaters a16a1a.yaml index 122a7e8e1..d96cc7557 100644 --- a/unpacked/Custom_Model The Dream-Eaters a16a1a.yaml +++ b/unpacked/Custom_Model The Dream-Eaters a16a1a.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_COL.obj Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/762723517669849292/9CD4BE220E1DE5294B1BC6301792920D213C98B3/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj @@ -45,14 +45,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 65 + posX: 65.0 posY: 1.49 - posZ: -87 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 + posZ: -87.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 scaleY: 0.14 - scaleZ: 1 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model The Dunwich Legacy 2898f6.ttslua b/unpacked/Custom_Model The Dunwich Legacy 2898f6.ttslua index d3587cd5d..3c2a044ca 100644 --- a/unpacked/Custom_Model The Dunwich Legacy 2898f6.ttslua +++ b/unpacked/Custom_Model The Dunwich Legacy 2898f6.ttslua @@ -66,7 +66,7 @@ function onLoad() buttonParameters.position.z = 2 -- official campaign boxes - elseif string.match(notes, ".........") == "campaigns" then + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then buttonParameters.position.z = 6 buttonParameters.height = 500 buttonParameters.width = 1700 diff --git a/unpacked/Custom_Model The Dunwich Legacy 2898f6.yaml b/unpacked/Custom_Model The Dunwich Legacy 2898f6.yaml index d1da72962..076d27e11 100644 --- a/unpacked/Custom_Model The Dunwich Legacy 2898f6.yaml +++ b/unpacked/Custom_Model The Dunwich Legacy 2898f6.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/762723517667666249/B7EB11E1C48A63D3B8AC233FF2DF0BBAD74ECC6E/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj @@ -45,14 +45,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 52 + posX: 52.0 posY: 1.48 - posZ: -55 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 + posZ: -55.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 scaleY: 0.14 - scaleZ: 1 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model The Forgotten Age 0bcf19.ttslua b/unpacked/Custom_Model The Forgotten Age 0bcf19.ttslua index d3587cd5d..3c2a044ca 100644 --- a/unpacked/Custom_Model The Forgotten Age 0bcf19.ttslua +++ b/unpacked/Custom_Model The Forgotten Age 0bcf19.ttslua @@ -66,7 +66,7 @@ function onLoad() buttonParameters.position.z = 2 -- official campaign boxes - elseif string.match(notes, ".........") == "campaigns" then + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then buttonParameters.position.z = 6 buttonParameters.height = 500 buttonParameters.width = 1700 diff --git a/unpacked/Custom_Model The Forgotten Age 0bcf19.yaml b/unpacked/Custom_Model The Forgotten Age 0bcf19.yaml index 0e302d951..5b169e1b3 100644 --- a/unpacked/Custom_Model The Forgotten Age 0bcf19.yaml +++ b/unpacked/Custom_Model The Forgotten Age 0bcf19.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_COL.obj Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/762723517669830426/AAB750A408E887633F25AFDFB194C50A9A1518DF/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj @@ -45,14 +45,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 26 + posX: 26.0 posY: 1.49 - posZ: -55 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 + posZ: -55.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 scaleY: 0.14 - scaleZ: 1 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model The Innsmouth Conspiracy 465aab.ttslua b/unpacked/Custom_Model The Innsmouth Conspiracy 465aab.ttslua index d3587cd5d..3c2a044ca 100644 --- a/unpacked/Custom_Model The Innsmouth Conspiracy 465aab.ttslua +++ b/unpacked/Custom_Model The Innsmouth Conspiracy 465aab.ttslua @@ -66,7 +66,7 @@ function onLoad() buttonParameters.position.z = 2 -- official campaign boxes - elseif string.match(notes, ".........") == "campaigns" then + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then buttonParameters.position.z = 6 buttonParameters.height = 500 buttonParameters.width = 1700 diff --git a/unpacked/Custom_Model The Innsmouth Conspiracy 465aab.yaml b/unpacked/Custom_Model The Innsmouth Conspiracy 465aab.yaml index e3fdee72d..b64b725e3 100644 --- a/unpacked/Custom_Model The Innsmouth Conspiracy 465aab.yaml +++ b/unpacked/Custom_Model The Innsmouth Conspiracy 465aab.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_COL.obj Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1626320664132195050/3888AC3E4F59D039C5F01B7EC72AB63174184381/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj @@ -45,14 +45,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 52 + posX: 52.0 posY: 1.49 - posZ: -87 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 + posZ: -87.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 scaleY: 0.14 - scaleZ: 1 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model The Path to Carcosa aca04c.ttslua b/unpacked/Custom_Model The Path to Carcosa aca04c.ttslua index d3587cd5d..e6f67c6af 100644 --- a/unpacked/Custom_Model The Path to Carcosa aca04c.ttslua +++ b/unpacked/Custom_Model The Path to Carcosa aca04c.ttslua @@ -41,9 +41,6 @@ local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = ( return require, loaded, register, modules end)(nil) -__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) -require("core/DownloadBox") -end) __bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) function onLoad() local notes = self.getGMNotes() @@ -66,7 +63,7 @@ function onLoad() buttonParameters.position.z = 2 -- official campaign boxes - elseif string.match(notes, ".........") == "campaigns" then + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then buttonParameters.position.z = 6 buttonParameters.height = 500 buttonParameters.width = 1700 @@ -87,4 +84,7 @@ function buttonClick_download() Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) end end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model The Path to Carcosa aca04c.yaml b/unpacked/Custom_Model The Path to Carcosa aca04c.yaml index e2058bf18..f89d9b682 100644 --- a/unpacked/Custom_Model The Path to Carcosa aca04c.yaml +++ b/unpacked/Custom_Model The Path to Carcosa aca04c.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/762723517667645467/CDF71CF96691CEF2E690F71332479ACBA0697864/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj @@ -45,14 +45,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 39 + posX: 39.0 posY: 1.48 - posZ: -55 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 + posZ: -55.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 scaleY: 0.14 - scaleZ: 1 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model The Scarlet Keys 300fcc.ttslua b/unpacked/Custom_Model The Scarlet Keys 300fcc.ttslua index d3587cd5d..3c2a044ca 100644 --- a/unpacked/Custom_Model The Scarlet Keys 300fcc.ttslua +++ b/unpacked/Custom_Model The Scarlet Keys 300fcc.ttslua @@ -66,7 +66,7 @@ function onLoad() buttonParameters.position.z = 2 -- official campaign boxes - elseif string.match(notes, ".........") == "campaigns" then + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then buttonParameters.position.z = 6 buttonParameters.height = 500 buttonParameters.width = 1700 diff --git a/unpacked/Custom_Model The Scarlet Keys 300fcc.yaml b/unpacked/Custom_Model The Scarlet Keys 300fcc.yaml index 700825962..deaddbeb3 100644 --- a/unpacked/Custom_Model The Scarlet Keys 300fcc.yaml +++ b/unpacked/Custom_Model The Scarlet Keys 300fcc.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_COL.obj Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1938266093887658515/82415531F346C35CD4DB13C4CF6913E11B2C1651/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj @@ -45,14 +45,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 26 + posX: 26.0 posY: 1.49 - posZ: -87 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 + posZ: -87.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 scaleY: 0.14 - scaleZ: 1 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bless tokens afa06b.yaml b/unpacked/Custom_Model_Bag Bless tokens afa06b.yaml index b9effd2dc..5f838a799 100644 --- a/unpacked/Custom_Model_Bag Bless tokens afa06b.yaml +++ b/unpacked/Custom_Model_Bag Bless tokens afa06b.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - !include 'Custom_Model_Bag Bless tokens afa06b/Custom_Tile Bless b2b7be.yaml' - !include 'Custom_Model_Bag Bless tokens afa06b/Custom_Tile Bless b2b7be.yaml' @@ -25,13 +25,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1655601092778623873/C9EF4B44CE708DFC5A804FF2912C9F9B47323287/ MaterialIndex: 3 MeshURL: https://pastebin.com/raw/ALrYhQGb diff --git a/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile Bless b2b7be.yaml b/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile Bless b2b7be.yaml index 5fd12f58a..ef65f61ed 100644 --- a/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile Bless b2b7be.yaml +++ b/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile Bless b2b7be.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.04894 @@ -13,10 +13,10 @@ CustomImage: Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: -1.47 posY: 1.7 posZ: -26.93 - rotX: 0 - rotY: 90 - rotZ: 0 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b.ttslua new file mode 100644 index 000000000..c99612b1a --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b.ttslua @@ -0,0 +1,503 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + +function onload(saved_data) + fresh = true + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + moveList = {} + moveGuid = nil + + if next(memoryList) == nil then + createSetupButton() + else + fresh = false + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects(move) + local howManyButtons = 0 + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + 4 + objPos.z = objPos.z * globalScaleFactor + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color=color, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons(move) + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={-1.25,0.1,-6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, color={0,0,0}, font_color={1,1,1} + }) + + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={-1.25,0.3,-7}, rotation={0,0,0}, height=500, width=1200, + font_size=350, color={0,0,0}, font_color={1,1,1} + }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={1.25,0.3,-6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={1.25,0.3,-8}, rotation={0,0,0}, height=500, width=1200, + font_size=350, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={1.25,0.3,-7}, rotation={0,0,0}, height=500, width=1200, + font_size=350, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-1.25,0.3,-8}, rotation={0,0,0}, height=500, width=1200, + font_size=350, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} + local color = {0,1,0,0.6} + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + theList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end + self.editButton({index=index, color=color}) + theList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + moveList = {} + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil +end + +--Saves selections +function buttonClick_submit() + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + memoryListBackup[guid] = nil + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +--Resets bag to starting status +function buttonClick_reset() + fresh = true + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={1.35,1,6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-1.25,1,6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end + local deltaPos = {} + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + yOffset + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b.yaml new file mode 100644 index 000000000..a5026545a --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b.yaml @@ -0,0 +1,83 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag + 2 Fear the Old Blood 022ddf.yaml' +- !include 'Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model + Bloodborne Custom Data Helper 3e1dd7.yaml' +- !include 'Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag + 4 The Frailty of Men 4117f5.yaml' +- !include 'Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag + 3 Night Unending 5c4cb0.yaml' +- !include 'Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag + 5 The Altar of Despair 9b4b47.yaml' +- !include 'Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag + 6 A Call Beyond c09838.yaml' +- !include 'Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag + 1 The Hunt Begins dc507f.yaml' +- !include 'Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag + 7 Communion ddd5dd.yaml' +- !include 'Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag + 8 Arkham Sunrise e5283d.yaml' +- !include 'Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Token + Generic Campaign Log eda22b.yaml' +- !include 'Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_PDF ee98ef.yaml' +CustomMesh: + CastShadows: true + ColliderURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_COL.obj + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: https://i.imgur.com/WtioCq1.jpg + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 81651b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b.ttslua' +LuaScriptState: '{"ml":{"022ddf":{"lock":false,"pos":{"x":15.7169742584229,"y":1.48149907588959,"z":21.2904376983643},"rot":{"x":-5.2979416409471E-08,"y":270,"z":-3.22966599242136E-07}},"3e1dd7":{"lock":false,"pos":{"x":-2.91630053520203,"y":1.63292264938354,"z":-15.1114053726196},"rot":{"x":-2.96886923933926E-07,"y":269.995788574219,"z":1.26109523534979E-06}},"4117f5":{"lock":false,"pos":{"x":15.7379760742188,"y":1.48149907588959,"z":4.49971151351929},"rot":{"x":1.48999617977097E-07,"y":269.998046875,"z":-2.72232512088522E-07}},"5c4cb0":{"lock":false,"pos":{"x":15.6802940368652,"y":1.48149919509888,"z":12.7662420272827},"rot":{"x":-8.87630093870939E-08,"y":269.998413085938,"z":-1.19237753892776E-07}},"8f6217":{"lock":false,"pos":{"x":-3.33288478851318,"y":1.63292276859283,"z":-14.3457317352295},"rot":{"x":-6.63845048620715E-06,"y":269.995880126953,"z":-4.41622978542E-06}},"9b4b47":{"lock":false,"pos":{"x":15.6301212310791,"y":1.48149907588959,"z":-3.92243099212646},"rot":{"x":-8.54166088970487E-08,"y":270.00390625,"z":-1.37598135552253E-07}},"b25aaf":{"lock":false,"pos":{"x":5.4363,"y":1.2647,"z":53.8483},"rot":{"x":0.0315,"y":270.0007,"z":0.0168}},"c09838":{"lock":false,"pos":{"x":15.5783252716064,"y":1.4814989566803,"z":-11.751425743103},"rot":{"x":3.31483448690051E-07,"y":270.015075683594,"z":2.14096615991366E-08}},"dc507f":{"lock":false,"pos":{"x":15.6832981109619,"y":1.48149919509888,"z":29.4188995361328},"rot":{"x":-4.61894416048381E-08,"y":270.000030517578,"z":-5.33786419509852E-07}},"ddd5dd":{"lock":false,"pos":{"x":15.6398334503174,"y":1.48149907588959,"z":-19.8568859100342},"rot":{"x":1.44437620974713E-07,"y":270.00830078125,"z":9.74452404989279E-07}},"e5283d":{"lock":false,"pos":{"x":15.70823097229,"y":1.48149919509888,"z":-28.1495018005371},"rot":{"x":1.33962146264821E-07,"y":270.018798828125,"z":-8.9481960685589E-07}},"eda22b":{"lock":false,"pos":{"x":35.2372741699219,"y":1.58149898052216,"z":-14.4016141891479},"rot":{"x":3.23336344365543E-08,"y":269.984985351563,"z":2.46333769382545E-07}},"ee98ef":{"lock":false,"pos":{"x":36.8274078369141,"y":1.48149931430817,"z":13.9191246032715},"rot":{"x":-9.27476762058177E-09,"y":269.972564697266,"z":2.38507293914836E-08}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Bloodborne - City of the Unseen 0.175 +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -27.0 + posY: 1.48 + posZ: -87.88 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.89 + scaleY: 0.12 + scaleZ: 0.89 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model Bloodborne Custom Data Helper 3e1dd7.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model Bloodborne Custom Data Helper 3e1dd7.ttslua new file mode 100644 index 000000000..709ca2a82 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model Bloodborne Custom Data Helper 3e1dd7.ttslua @@ -0,0 +1,402 @@ +-- set true to enable debug logging +DEBUG = false + +function log(message) + if DEBUG then + print(message) + end +end + +--[[ +Known locations and clues. We check this to determine if we should +atttempt to spawn clues, first we look for _ and if +we find nothing we look for +format is [location_guid -> clueCount] +]] +LOCATIONS_DATA_JSON = [[ +{ + "San Francisco": {"type": "fixed", "value": 1, "clueSide": "back"}, + " Arkham": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Buenos Aires": {"type": "fixed", "value": 2, "clueSide": "back"}, + " London": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Rome": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Istanbul": {"type": "perPlayer", "value": 4, "clueSide": "front"}, + "Tokyo_123abc": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Tokyo_456efg": {"type": "perPlayer", "value": 4, "clueSide": "back"}, + "Tokyo": {"type": "fixed", "value": 2, "clueSide": "back"}, + "Shanghai_123": {"type": "fixed", "value": 12, "clueSide": "front"}, + "Sydney": {"type": "fixed", "value": 0, "clueSide": "front"}, + "Under the Great Bridge": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Somber Memorial": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Ominous Pyre": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Ominous Pyre ": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Narrow Alleyway": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Moonlit Backstreet": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Moonlit Backstreet ": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Central Yharnam Promenade": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Hospital Courtyard": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Deserted Manor_adcfac": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "City Center Plaza": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Atop the Great Bridge": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Deserted Manor_e00007": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "1st Floor Sickroom": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "1st Floor Examination Room": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Chapel Transept": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chapel Sanctuary": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chapel Rectory": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chapel Nave": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Chapel Attic_0e64f5": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Untended Graves": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Tomb of the Queen": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Shadowed Woods": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Rotting Thicket": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Oedon Chapel Subterrane": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Moonlit Clearing": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Misty Weald": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Hemwick Charnel Lane": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Gibbeting Path": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Gates of Byrgenwerth": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Deserted Trapping Village": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Derelict Coachhouse": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Burial Grove": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Abandoned Mill": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Private Library": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Research Hall": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Faculty Offices": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Rooftops_e00008": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Annex": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Astronomy Hall": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Lecture Hall": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "University Foyer": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "*The Portrait of the First Vicar": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "*The Portrait of the Holy Blade": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "*The Portrait of the Holy Blade": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "*The Portrait of the Headmaster": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "*The Portrait of the Governess": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Audience Chamber": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Cathedral Steps": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Cathedral Ward Cemetery": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Grand Cathedral of Yharnam": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Surgery Altar": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "The Bridge of Saints": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Grand Cathedral Sanctuary": {"type": "perPlayer", "value": 0, "clueSide": "front"}, + "The Lumenflower Garden": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Steps of Penance": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Mirror Chamber": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber ": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber ": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber ": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Branching Corridors": {"type": "fixed", "value": 1, "clueSide": "front"}, + "Yale University": {"type": "fixed", "value": 1, "clueSide": "front"}, + "The Cimmerian Descent": {"type": "fixed", "value": 1, "clueSide": "front"}, + "The College of Mensis": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Ritual Cloister": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Mensis Refectory": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Lair of the Brain": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "The Hypogean Gaol": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Spires of the Loft": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Featured Exhibit": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Depths of the Loft": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Dangling Cells": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Byrgenwerth": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Apostle's Gallery": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Wet Nurse's Lunarium": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Spire of Mensis": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Aeonian Sickbeds": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Decaying Fishing Hamlet": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Lumenwood Garden": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Forgotten Coast": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Advent Plaza": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Sacrificial Pits": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Yahar'gul Chapel": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Yahar'gul Commons": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Defiled Pthumerian Shrine": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Pthumeru Ihyll Labyrinth": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Tomb of Oedon": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Moonside Lake": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Ailing Loran Frontier": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Bloodstained Gate": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "The Eastern Cathedral": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mergo's Loft": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Sanguine River": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Underground Corpse Pile": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Western Cathedral": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chalice Headstones": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Gates of the Dream": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chalice Headstones": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Grave-Marked Trail": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Misty Garden Path": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Moon-Kissed Meadow": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Burning Workshop": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "The Dream Aflame": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Messengers' Bath": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Deserted Manor_1566a5": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Moonlit Clearing_e00008": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Research Hall_e00007": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Rooftops_e0008": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Lecture Hall_e00004": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Surgery Altar_e00007": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "The Lumenflower Gardens_1a433f": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Blood Healing Laboratory_998d8c": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Contact Chamber_10edc3": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Contact Chamber_31e857": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Audience Chamber_e00001": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Mirror Chamber _e00003": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber _e00001": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber_e00004": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber _e00002": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Dangling Cells_49d503": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Depths of the Loft_e00007": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Lair of the Brain_e0000b": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Ritual Cloister_e00013": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Mensis Refectory_e0000e": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Spires of the Loft_e00009": {"type": "perPlayer", "value": 2, "clueSide": "front"} + +} +]] + + +PLAYER_CARD_DATA_JSON = [[ +{ + "Tool Belt (0)": { + "tokenType": "resource", + "tokenCount": 2 + }, + "Tool Belt (3)": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Yithian Rifle": { + "tokenType": "resource", + "tokenCount": 3 + }, + "xxx": { + "tokenType": "resource", + "tokenCount": 3 + } +} +]] + +HIDDEN_CARD_DATA = { + "Unpleasant Card (Doom)", + "Unpleasant Card (Gloom)", + "The Case of the Scarlet DOOOOOM!" +} + +LOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON) +PLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON) + +function onload(save_state) + local playArea = getObjectFromGUID('721ba2') + playArea.call("updateLocations", {self.getGUID()}) + local playerMatWhite = getObjectFromGUID('8b081b') + playerMatWhite.call("updatePlayerCards", {self.getGUID()}) + local playerMatOrange = getObjectFromGUID('bd0ff4') + playerMatOrange.call("updatePlayerCards", {self.getGUID()}) + local playerMatGreen = getObjectFromGUID('383d8b') + playerMatGreen.call("updatePlayerCards", {self.getGUID()}) + local playerMatRed = getObjectFromGUID('0840d5') + playerMatRed.call("updatePlayerCards", {self.getGUID()}) + local dataHelper = getObjectFromGUID('708279') + dataHelper.call("updateHiddenCards", {self.getGUID()}) +end-- set true to enable debug logging +DEBUG = false + +function log(message) + if DEBUG then + print(message) + end +end + +--[[ +Known locations and clues. We check this to determine if we should +atttempt to spawn clues, first we look for _ and if +we find nothing we look for +format is [location_guid -> clueCount] +]] +LOCATIONS_DATA_JSON = [[ +{ + "San Francisco": {"type": "fixed", "value": 1, "clueSide": "back"}, + " Arkham": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Buenos Aires": {"type": "fixed", "value": 2, "clueSide": "back"}, + " London": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Rome": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Istanbul": {"type": "perPlayer", "value": 4, "clueSide": "front"}, + "Tokyo_123abc": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Tokyo_456efg": {"type": "perPlayer", "value": 4, "clueSide": "back"}, + "Tokyo": {"type": "fixed", "value": 2, "clueSide": "back"}, + "Shanghai_123": {"type": "fixed", "value": 12, "clueSide": "front"}, + "Sydney": {"type": "fixed", "value": 0, "clueSide": "front"}, + "Under the Great Bridge": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Somber Memorial": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Ominous Pyre": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Ominous Pyre ": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Narrow Alleyway": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Moonlit Backstreet": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Moonlit Backstreet ": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Central Yharnam Promenade": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Hospital Courtyard": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Deserted Manor_adcfac": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "City Center Plaza": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Atop the Great Bridge": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Deserted Manor_e00007": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "1st Floor Sickroom": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "1st Floor Examination Room": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Chapel Transept": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chapel Sanctuary": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chapel Rectory": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chapel Nave": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Chapel Attic_0e64f5": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Untended Graves": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Tomb of the Queen": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Shadowed Woods": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Rotting Thicket": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Oedon Chapel Subterrane": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Moonlit Clearing": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Misty Weald": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Hemwick Charnel Lane": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Gibbeting Path": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Gates of Byrgenwerth": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Deserted Trapping Village": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Derelict Coachhouse": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Burial Grove": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Abandoned Mill": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Private Library": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Research Hall": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Faculty Offices": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Rooftops_e00008": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Annex": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Astronomy Hall": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Lecture Hall": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "University Foyer": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "*The Portrait of the First Vicar": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "*The Portrait of the Holy Blade": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "*The Portrait of the Holy Blade": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "*The Portrait of the Headmaster": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "*The Portrait of the Governess": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Audience Chamber": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Cathedral Steps": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Cathedral Ward Cemetery": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Grand Cathedral of Yharnam": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Surgery Altar": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "The Bridge of Saints": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Grand Cathedral Sanctuary": {"type": "perPlayer", "value": 0, "clueSide": "front"}, + "The Lumenflower Garden": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Steps of Penance": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Mirror Chamber": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber ": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber ": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber ": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Branching Corridors": {"type": "fixed", "value": 1, "clueSide": "front"}, + "Yale University": {"type": "fixed", "value": 1, "clueSide": "front"}, + "The Cimmerian Descent": {"type": "fixed", "value": 1, "clueSide": "front"}, + "The College of Mensis": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Ritual Cloister": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Mensis Refectory": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Lair of the Brain": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "The Hypogean Gaol": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Spires of the Loft": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Featured Exhibit": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Depths of the Loft": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Dangling Cells": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Byrgenwerth": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Apostle's Gallery": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Wet Nurse's Lunarium": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Spire of Mensis": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Aeonian Sickbeds": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Decaying Fishing Hamlet": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Lumenwood Garden": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Forgotten Coast": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Advent Plaza": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Sacrificial Pits": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Yahar'gul Chapel": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Yahar'gul Commons": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Defiled Pthumerian Shrine": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Pthumeru Ihyll Labyrinth": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Tomb of Oedon": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Moonside Lake": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Ailing Loran Frontier": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Bloodstained Gate": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "The Eastern Cathedral": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mergo's Loft": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Sanguine River": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Underground Corpse Pile": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Western Cathedral": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chalice Headstones": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Gates of the Dream": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chalice Headstones": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Grave-Marked Trail": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Misty Garden Path": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Moon-Kissed Meadow": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Burning Workshop": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "The Dream Aflame": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Messengers' Bath": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Deserted Manor_1566a5": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Moonlit Clearing_e00008": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Research Hall_e00007": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Rooftops_e0008": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Lecture Hall_e00004": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Surgery Altar_e00007": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "The Lumenflower Gardens_1a433f": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Blood Healing Laboratory_998d8c": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Contact Chamber_10edc3": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Contact Chamber_31e857": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Audience Chamber_e00001": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Mirror Chamber _e00003": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber _e00001": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber_e00004": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber _e00002": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Dangling Cells_49d503": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Depths of the Loft_e00007": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Lair of the Brain_e0000b": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Ritual Cloister_e00013": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Mensis Refectory_e0000e": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Spires of the Loft_e00009": {"type": "perPlayer", "value": 2, "clueSide": "front"} +} +]] + + +PLAYER_CARD_DATA_JSON = [[ +{ + "Tool Belt (0)": { + "tokenType": "resource", + "tokenCount": 2 + }, + "Tool Belt (3)": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Yithian Rifle": { + "tokenType": "resource", + "tokenCount": 3 + }, + "xxx": { + "tokenType": "resource", + "tokenCount": 3 + } +} +]] + +HIDDEN_CARD_DATA = { + "Unpleasant Card (Doom)", + "Unpleasant Card (Gloom)", + "The Case of the Scarlet DOOOOOM!" +} + +LOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON) +PLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON) + +function onload(save_state) + local playArea = getObjectFromGUID('721ba2') + playArea.call("updateLocations", {self.getGUID()}) + local playerMatWhite = getObjectFromGUID('8b081b') + playerMatWhite.call("updatePlayerCards", {self.getGUID()}) + local playerMatOrange = getObjectFromGUID('bd0ff4') + playerMatOrange.call("updatePlayerCards", {self.getGUID()}) + local playerMatGreen = getObjectFromGUID('383d8b') + playerMatGreen.call("updatePlayerCards", {self.getGUID()}) + local playerMatRed = getObjectFromGUID('0840d5') + playerMatRed.call("updatePlayerCards", {self.getGUID()}) + local dataHelper = getObjectFromGUID('708279') + dataHelper.call("updateHiddenCards", {self.getGUID()}) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model Bloodborne Custom Data Helper 3e1dd7.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model Bloodborne Custom Data Helper 3e1dd7.yaml new file mode 100644 index 000000000..2cc4ade0b --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model Bloodborne Custom Data Helper 3e1dd7.yaml @@ -0,0 +1,57 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 0.339915335 + g: 0.507659256 + r: 0.7222887 + SpecularIntensity: 0.4 + SpecularSharpness: 7.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/254843371583187306/6844B833AD55B9A34095067B201B311E1348325F/ + MaterialIndex: 2 + MeshURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + NormalURL: '' + TypeIndex: 0 +Description: Include this in custom content for clue spawning! +DragSelectable: true +GMNotes: '' +GUID: 3e1dd7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model Bloodborne Custom Data Helper 3e1dd7.ttslua' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: Bloodborne Custom Data Helper +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.92 + posY: 1.63 + posZ: -15.11 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.5 + scaleY: 0.5 + scaleZ: 0.5 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f.ttslua new file mode 100644 index 000000000..d3a91c848 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f.ttslua @@ -0,0 +1,503 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + +function onload(saved_data) + fresh = true + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + moveList = {} + moveGuid = nil + + if next(memoryList) == nil then + createSetupButton() + else + fresh = false + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects(move) + local howManyButtons = 0 + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + 2 + objPos.z = objPos.z * globalScaleFactor * 0.9 + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=500, width=500, + color=color, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons(move) + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} + local color = {0,1,0,0.6} + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + theList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end + self.editButton({index=index, color=color}) + theList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + moveList = {} + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil +end + +--Saves selections +function buttonClick_submit() + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + memoryListBackup[guid] = nil + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +--Resets bag to starting status +function buttonClick_reset() + fresh = true + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end + local deltaPos = {} + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + yOffset + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f.yaml new file mode 100644 index 000000000..d8c3d2978 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f.yaml @@ -0,0 +1,107 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +AttachedDecals: +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ + Name: dunwich_back + Size: 7.4 + Transform: + posX: -0.0021877822 + posY: -0.08963572 + posZ: -0.00288731651 + rotX: 270.0 + rotY: 359.869568 + rotZ: 0.0 + scaleX: 2.00000215 + scaleY: 2.00000238 + scaleZ: 2.00000262 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Token 00d19a.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Deck Encounter Deck 34612f.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Card 1st Floor Examination Room + 46e21c.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos + Bag 692b4c.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos + Bag 753dc1.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Notecard Act Instructions 756370.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Card The Hunt Begins 75776f.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Deck 87cb2b.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model Bloodborne Custom + Data Helper 8f6217.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 3 Locations 948eb7.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Token 9743de.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Set-aside d53ea1.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Bag 2 Randomized Act Decks dde0e5.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Card Scourge Beast e00002.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Card 1st Floor Sickroom e00003.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Deck Guidance (The Hunter''s + Workshop) e00007.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Card Hospital Courtyard e00008.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Card 1st Floor Examination Room + e1ae2e.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos + Bag f4ca98.yaml' +- !include 'Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos + Bag fb475c.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: https://i.imgur.com/k8xq6L9.jpghttps://i.imgur.com/k8xq6L9.jpg + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: 'Bloodborne: City of the Unseen' +DragSelectable: true +GMNotes: '' +GUID: dc507f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model_Bag 1 The Hunt Begins dc507f.ttslua' +LuaScriptState: '{"ml":{"00d19a":{"lock":false,"pos":{"x":-39.7672,"y":1.67,"z":7.9618},"rot":{"x":0.0002,"y":269.9788,"z":0}},"0f2322":{"lock":false,"pos":{"x":8.7321,"y":1.2965,"z":0.1816},"rot":{"x":0,"y":89.9991,"z":0}},"1536ba":{"lock":false,"pos":{"x":8.6312,"y":1.2965,"z":8.8675},"rot":{"x":0,"y":89.9994,"z":0}},"34612f":{"lock":false,"pos":{"x":-3.9279,"y":1.6858,"z":5.7575},"rot":{"x":0,"y":270.0131,"z":180}},"46e21c":{"lock":false,"pos":{"x":-43.4051,"y":1.5542,"z":9.0918},"rot":{"x":0,"y":270.001,"z":178.9224}},"692b4c":{"lock":false,"pos":{"x":1.9417,"y":1.4851,"z":-30.657},"rot":{"x":0,"y":270.0031,"z":0}},"753dc1":{"lock":false,"pos":{"x":-6.6711,"y":1.4851,"z":-23.4221},"rot":{"x":0,"y":269.9731,"z":0}},"756370":{"lock":false,"pos":{"x":-11.5784,"y":1.59,"z":-10.099},"rot":{"x":0,"y":90,"z":0}},"75776f":{"lock":false,"pos":{"x":-3.9561,"y":1.5966,"z":-10.4416},"rot":{"x":0,"y":270.0182,"z":0}},"87cb2b":{"lock":false,"pos":{"x":-2.725,"y":1.6184,"z":0.373},"rot":{"x":0,"y":270,"z":0}},"8f6217":{"lock":false,"pos":{"x":-3.3329,"y":1.6329,"z":-14.3457},"rot":{"x":0,"y":269.9959,"z":0}},"948eb7":{"lock":false,"pos":{"x":8.6252,"y":1.2965,"z":4.2394},"rot":{"x":0,"y":89.999,"z":0}},"9743de":{"lock":false,"pos":{"x":-40.0127,"y":1.67,"z":4.1909},"rot":{"x":0,"y":315.0388,"z":0}},"d53ea1":{"lock":false,"pos":{"x":1.6962,"y":1.558,"z":14.279},"rot":{"x":0,"y":225.0085,"z":0}},"dde0e5":{"lock":false,"pos":{"x":0.9642,"y":1.398,"z":-5.0598},"rot":{"x":0,"y":89.9987,"z":0}},"e00002":{"lock":false,"pos":{"x":-43.3706,"y":1.5336,"z":3.8602},"rot":{"x":0,"y":269.9991,"z":0}},"e00003":{"lock":false,"pos":{"x":-36.84,"y":1.5336,"z":7.6495},"rot":{"x":0,"y":269.9999,"z":180}},"e00007":{"lock":false,"pos":{"x":-11.6925,"y":1.5698,"z":8.9233},"rot":{"x":0,"y":269.9993,"z":0}},"e00008":{"lock":false,"pos":{"x":-36.84,"y":1.5336,"z":0},"rot":{"x":0,"y":270.0002,"z":180}},"e1ae2e":{"lock":false,"pos":{"x":-43.4401,"y":1.5336,"z":7.6501},"rot":{"x":0.0002,"y":270.0018,"z":180.0013}},"f4ca98":{"lock":false,"pos":{"x":2.0196,"y":1.4851,"z":-23.9265},"rot":{"x":0,"y":270,"z":0}},"fb475c":{"lock":false,"pos":{"x":-6.5732,"y":1.4851,"z":-30.3557},"rot":{"x":0,"y":270,"z":0}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '1: The Hunt Begins' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.68 + posY: 1.48 + posZ: 29.42 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag 2 Randomized Act Decks dde0e5.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag 2 Randomized Act Decks dde0e5.ttslua new file mode 100644 index 000000000..baa7b8b87 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag 2 Randomized Act Decks dde0e5.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1.25 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + objPos.z = objPos.z * globalScaleFactor + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + memoryList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + end +end + +--Resets bag to starting status +function buttonClick_reset() + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag 2 Randomized Act Decks dde0e5.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag 2 Randomized Act Decks dde0e5.yaml new file mode 100644 index 000000000..726ee62f4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag 2 Randomized Act Decks dde0e5.yaml @@ -0,0 +1,47 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- !include 'Bag 2 Randomized Act Decks dde0e5/Deck 6d2f9f.yaml' +- !include 'Bag 2 Randomized Act Decks dde0e5/Deck ff5b4f.yaml' +Description: Shuffle and choose 1 +DragSelectable: true +GMNotes: '' +GUID: dde0e5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Bag 2 Randomized Act Decks dde0e5.ttslua' +LuaScriptState: '{"ml":[]}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 2 Randomized Act Decks +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.96 + posY: 1.4 + posZ: -5.06 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag 2 Randomized Act Decks dde0e5/Deck 6d2f9f.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag 2 Randomized Act Decks dde0e5/Deck 6d2f9f.yaml new file mode 100644 index 000000000..85dc808ba --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag 2 Randomized Act Decks dde0e5/Deck 6d2f9f.yaml @@ -0,0 +1,294 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/3vXhKtC.jpg + FaceURL: https://i.imgur.com/6RYzw7k.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"2eba5389-3bec-4731-ae86-a3cccf5befc4","type":"Act","class":"Mythos"}' + GUID: 9565f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Beast and the Crow + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.264 + posY: 1.515 + posZ: 20.588 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 294800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2948': + BackIsHidden: true + BackURL: https://i.imgur.com/RG4A0Vx.jpg + FaceURL: https://i.imgur.com/fd8eJPo.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"44ab088b-b5cf-4bf2-8978-f77d46621fe2","type":"Act","class":"Mythos"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Viola's Wish + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.728 + posY: 1.537 + posZ: 25.832 + rotX: 2.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/LYEA9t5.jpg + FaceURL: https://i.imgur.com/8rVX43C.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"92df66ca-42f8-4a56-a76e-fa1f533b6412","type":"Act","class":"Mythos","clueThresholdPerInvestigator":3}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The City of the Unseen + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.792 + posY: 1.495 + posZ: 21.428 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 294700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2947': + BackIsHidden: true + BackURL: https://i.imgur.com/G82PtRN.jpg + FaceURL: https://i.imgur.com/HjjMria.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"37ef9de9-cfd7-4497-a497-95bba42b229c","type":"Act","class":"Mythos","clueThresholdPerInvestigator":2}' + GUID: f8d218 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Moonlit Revival + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.608 + posY: 1.565 + posZ: 21.68 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/3vXhKtC.jpg + FaceURL: https://i.imgur.com/6RYzw7k.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/LYEA9t5.jpg + FaceURL: https://i.imgur.com/8rVX43C.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '2947': + BackIsHidden: true + BackURL: https://i.imgur.com/G82PtRN.jpg + FaceURL: https://i.imgur.com/HjjMria.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '2948': + BackIsHidden: true + BackURL: https://i.imgur.com/RG4A0Vx.jpg + FaceURL: https://i.imgur.com/fd8eJPo.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +DeckIDs: +- 100200 +- 294800 +- 100500 +- 294700 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 6d2f9f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: -7.87 + posY: 2.63 + posZ: -2.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag 2 Randomized Act Decks dde0e5/Deck ff5b4f.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag 2 Randomized Act Decks dde0e5/Deck ff5b4f.yaml new file mode 100644 index 000000000..d8ef553ca --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag 2 Randomized Act Decks dde0e5/Deck ff5b4f.yaml @@ -0,0 +1,294 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/3vXhKtC.jpg + FaceURL: https://i.imgur.com/6RYzw7k.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"2eba5389-3bec-4731-ae86-a3cccf5befc4","type":"Act","class":"Mythos"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Beast and the Crow + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.552 + posY: 1.581 + posZ: 30.585 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/hP9ZFAL.jpg + FaceURL: https://i.imgur.com/0ExgYIE.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8cd501dd-28d3-4777-b074-c4b7ea67c2ac","type":"Act","class":"Mythos"}' + GUID: d6d915 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Fellow Outsider + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -7.26 + posY: 1.522 + posZ: 26.276 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 294600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2946': + BackIsHidden: true + BackURL: https://i.imgur.com/tgSoJU9.jpg + FaceURL: https://i.imgur.com/m0uoYSB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6e87aec9-d1dc-4f7e-a02d-d57763187fb2","type":"Act","class":"Mythos","clueThresholdPerInvestigator":3}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The City of the Unseen + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -10.007 + posY: 1.509 + posZ: 25.39 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 294700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2947': + BackIsHidden: true + BackURL: https://i.imgur.com/G82PtRN.jpg + FaceURL: https://i.imgur.com/HjjMria.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"37ef9de9-cfd7-4497-a497-95bba42b229c","type":"Act","class":"Mythos","clueThresholdPerInvestigator":2}' + GUID: db5045 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Moonlit Revival + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -7.894 + posY: 1.586 + posZ: 26.424 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/hP9ZFAL.jpg + FaceURL: https://i.imgur.com/0ExgYIE.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/3vXhKtC.jpg + FaceURL: https://i.imgur.com/6RYzw7k.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '2946': + BackIsHidden: true + BackURL: https://i.imgur.com/tgSoJU9.jpg + FaceURL: https://i.imgur.com/m0uoYSB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '2947': + BackIsHidden: true + BackURL: https://i.imgur.com/G82PtRN.jpg + FaceURL: https://i.imgur.com/HjjMria.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +DeckIDs: +- 100200 +- 100100 +- 294600 +- 294700 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ff5b4f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: -6.8 + posY: 2.74 + posZ: -0.18 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba.ttslua new file mode 100644 index 000000000..baa7b8b87 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1.25 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + objPos.z = objPos.z * globalScaleFactor + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + memoryList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + end +end + +--Resets bag to starting status +function buttonClick_reset() + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba.yaml new file mode 100644 index 000000000..f3d4c31a0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba.yaml @@ -0,0 +1,56 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- !include 'Bag Act 2 Locations 1536ba/Card City Center Plaza e00005.yaml' +- !include 'Bag Act 2 Locations 1536ba/Card Moonlit Backstreet e0000a.yaml' +- !include 'Bag Act 2 Locations 1536ba/Card Moonlit Backstreet e0000b.yaml' +- !include 'Bag Act 2 Locations 1536ba/Card Central Yharnam Promenade e00009.yaml' +- !include 'Bag Act 2 Locations 1536ba/Custom_Token 623f5d.yaml' +- !include 'Bag Act 2 Locations 1536ba/Custom_Token 7607f6.yaml' +- !include 'Bag Act 2 Locations 1536ba/Custom_Token c586ae.yaml' +- !include 'Bag Act 2 Locations 1536ba/Card Ominous Pyre e0000d.yaml' +- !include 'Bag Act 2 Locations 1536ba/Card Ominous Pyre e0000e.yaml' +- !include 'Bag Act 2 Locations 1536ba/Custom_Token edc175.yaml' +- !include 'Bag Act 2 Locations 1536ba/Card Under the Great Bridge e00010.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 1536ba +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Bag Act 2 Locations 1536ba.ttslua' +LuaScriptState: '{"ml":{"623f5d":{"lock":false,"pos":{"x":-29.0608,"y":1.67,"z":-3.6068},"rot":{"x":0,"y":270.0327,"z":0}},"7607f6":{"lock":false,"pos":{"x":-31.4295,"y":1.67,"z":-3.5486},"rot":{"x":0.0001,"y":265.377,"z":0}},"c586ae":{"lock":false,"pos":{"x":-26.8369,"y":1.67,"z":-7.4542},"rot":{"x":0,"y":269.9879,"z":0}},"e00005":{"lock":false,"pos":{"x":-30.24,"y":1.5336,"z":0},"rot":{"x":0,"y":270.0001,"z":180}},"e00009":{"lock":false,"pos":{"x":-30.2243,"y":1.5336,"z":-7.7},"rot":{"x":0,"y":270.0002,"z":180}},"e0000a":{"lock":false,"pos":{"x":-36.7733,"y":1.5336,"z":-7.7},"rot":{"x":0,"y":269.9998,"z":180}},"e0000b":{"lock":false,"pos":{"x":-36.8727,"y":1.5336,"z":-9.9431},"rot":{"x":0,"y":270.0001,"z":180}},"e0000d":{"lock":false,"pos":{"x":-23.9161,"y":1.5512,"z":-6.2658},"rot":{"x":359.9058,"y":269.9944,"z":179.2075}},"e0000e":{"lock":false,"pos":{"x":-23.677,"y":1.5324,"z":-7.7002},"rot":{"x":0.0121,"y":269.9983,"z":180.0795}},"e00010":{"lock":false,"pos":{"x":-23.677,"y":1.5336,"z":-0.0301},"rot":{"x":0,"y":270.0001,"z":180}},"edc175":{"lock":false,"pos":{"x":-22.6636,"y":1.67,"z":-3.4805},"rot":{"x":0,"y":265.3784,"z":-0.0001}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Act 2 Locations +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.63 + posY: 1.3 + posZ: 8.87 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card Central Yharnam Promenade e00009.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card Central Yharnam Promenade e00009.yaml new file mode 100644 index 000000000..fe1a22e00 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card Central Yharnam Promenade e00009.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100800 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/QHSZ7Xy.jpg + FaceURL: https://i.imgur.com/Ojfrv7q.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"98568c7c-8247-4fdb-b5c4-fec9befd55bb","type":"Location","class":"Mythos","traits":"Yharnam","locationFront":{"icons":"Slash","connections":"Cross|Diamond|Hourglass","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":"Slash","connections":"Cross|Diamond|Hourglass"}}' +GUID: e00009 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Central Yharnam Promenade +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -30.22 + posY: 1.53 + posZ: -7.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card City Center Plaza e00005.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card City Center Plaza e00005.yaml new file mode 100644 index 000000000..e73d93741 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card City Center Plaza e00005.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/tXlV227.jpg + FaceURL: https://i.imgur.com/RFaL2Pr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"0bd6be78-4c1c-40ff-bf3d-71474253cfdf","type":"Location","class":"Mythos","traits":"Yharnam. + Central","locationFront":{"icons":"Cross","connections":"Square|Slash|T","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Cross","connections":"Slash|T|Empty"}}' +GUID: e00005 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: City Center Plaza +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -30.24 + posY: 1.53 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card Moonlit Backstreet e0000a.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card Moonlit Backstreet e0000a.yaml new file mode 100644 index 000000000..4df6ae195 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card Moonlit Backstreet e0000a.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100900 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.ibb.co/0MR8BWW/31cb680c157a.jpg + FaceURL: https://i.ibb.co/Q8wJXKx/80b9d4583b87.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"3471a5be-0839-4c62-ac85-cc21ea66e4d5","type":"Location","class":"Mythos","traits":"Yharnam","locationFront":{"icons":"Diamond","connections":"Square|Slash","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}],"victory":1},"locationBack":{"icons":"Diamond","connections":"Square|Slash"}}' +GUID: e0000a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Moonlit Backstreet +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -36.77 + posY: 1.53 + posZ: -7.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card Moonlit Backstreet e0000b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card Moonlit Backstreet e0000b.yaml new file mode 100644 index 000000000..0d1cc4189 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card Moonlit Backstreet e0000b.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101000 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1010': + BackIsHidden: true + BackURL: https://i.ibb.co/z4fZJrb/9454b954fff7.jpg + FaceURL: https://i.ibb.co/rHP7C3k/3d14fee7c37a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"7e35b0cd-55a1-4bb2-b777-a2400b23f1f0","type":"Location","class":"Mythos","traits":"Yharnam","locationFront":{"icons":"Diamond","connections":"Square|Slash","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":"Diamond","connections":"Square|Slash"}}' +GUID: e0000b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Moonlit Backstreet +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -36.87 + posY: 1.53 + posZ: -9.94 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card Ominous Pyre e0000d.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card Ominous Pyre e0000d.yaml new file mode 100644 index 000000000..97cc22365 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card Ominous Pyre e0000d.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101200 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1012': + BackIsHidden: true + BackURL: https://i.ibb.co/HdJ3gv7/ec3f2de44b1d.jpg + FaceURL: https://i.ibb.co/Y7J9Cky/8df16f462681.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: Frenzied Flames +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"fb592cbf-2ff5-4552-834b-f902d19e929f","type":"Location","class":"Mythos","traits":"Yharnam","locationFront":{"icons":"Hourglass","connections":"Slash|T","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":"Hourglass","connections":"Slash|T"}}' +GUID: e0000d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Ominous Pyre +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -23.92 + posY: 1.55 + posZ: -6.27 + rotX: 0.0 + rotY: 270.0 + rotZ: 179.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card Ominous Pyre e0000e.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card Ominous Pyre e0000e.yaml new file mode 100644 index 000000000..f59935d15 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card Ominous Pyre e0000e.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101300 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/utwdmG9.jpg + FaceURL: https://i.imgur.com/ly4fYM3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: Burning Embers +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"ff6a92f6-5dc0-4683-b0d9-82e76b2c0315","type":"Location","class":"Mythos","traits":"Yharnam","locationFront":{"icons":"Hourglass","connections":"Slash|T","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}],"victory":1},"locationBack":{"icons":"Hourglass","connections":"Slash|T"}}' +GUID: e0000e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Ominous Pyre +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -23.68 + posY: 1.53 + posZ: -7.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card Under the Great Bridge e00010.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card Under the Great Bridge e00010.yaml new file mode 100644 index 000000000..dd7e86fc6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Card Under the Great Bridge e00010.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101500 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1015': + BackIsHidden: true + BackURL: https://i.imgur.com/Zsd3X2A.jpg + FaceURL: https://i.imgur.com/VBjPMXl.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"d703ce98-666b-4618-adb8-09a3e20de708","type":"Location","class":"Mythos","traits":"Yharnam","locationFront":{"icons":"T","connections":"Cross|Moon|DoubleSlash|Hourglass|Heart","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"T","connections":"Cross|Moon|DoubleSlash|Hourglass|Heart"}}' +GUID: e00010 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Under the Great Bridge +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -23.68 + posY: 1.53 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Custom_Token 623f5d.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Custom_Token 623f5d.yaml new file mode 100644 index 000000000..9615ce6f9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Custom_Token 623f5d.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 623f5d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -29.06 + posY: 1.67 + posZ: -3.61 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.33 + scaleY: 1.0 + scaleZ: 0.33 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Custom_Token 7607f6.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Custom_Token 7607f6.yaml new file mode 100644 index 000000000..53e6640fe --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Custom_Token 7607f6.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 7607f6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -31.43 + posY: 1.67 + posZ: -3.55 + rotX: 0.0 + rotY: 265.0 + rotZ: 0.0 + scaleX: 0.33 + scaleY: 1.0 + scaleZ: 0.33 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Custom_Token c586ae.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Custom_Token c586ae.yaml new file mode 100644 index 000000000..07205b1d5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Custom_Token c586ae.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c586ae +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -26.84 + posY: 1.67 + posZ: -7.45 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.33 + scaleY: 1.0 + scaleZ: 0.33 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Custom_Token edc175.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Custom_Token edc175.yaml new file mode 100644 index 000000000..c8b014390 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 2 Locations 1536ba/Custom_Token edc175.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: edc175 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -22.66 + posY: 1.67 + posZ: -3.48 + rotX: 0.0 + rotY: 265.0 + rotZ: 0.0 + scaleX: 0.33 + scaleY: 1.0 + scaleZ: 0.33 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 3 Locations 948eb7.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 3 Locations 948eb7.ttslua new file mode 100644 index 000000000..baa7b8b87 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 3 Locations 948eb7.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1.25 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + objPos.z = objPos.z * globalScaleFactor + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + memoryList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + end +end + +--Resets bag to starting status +function buttonClick_reset() + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 3 Locations 948eb7.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 3 Locations 948eb7.yaml new file mode 100644 index 000000000..995f8ed16 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 3 Locations 948eb7.yaml @@ -0,0 +1,47 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- !include 'Bag Act 3 Locations 948eb7/Card Deserted Manor e27a6f.yaml' +- !include 'Bag Act 3 Locations 948eb7/Card Deserted Manor e00006.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 948eb7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Bag Act 3 Locations 948eb7.ttslua' +LuaScriptState: '{"ml":{"e00006":{"lock":false,"pos":{"x":-17.04,"y":1.5336,"z":-7.65},"rot":{"x":0.0007,"y":269.9999,"z":180.0035}},"e27a6f":{"lock":false,"pos":{"x":-17.04,"y":1.5332,"z":0},"rot":{"x":0.0046,"y":269.9999,"z":180.0283}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Act 3 Locations +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.62 + posY: 1.3 + posZ: 4.24 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 3 Locations 948eb7/Card Deserted Manor e00006.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 3 Locations 948eb7/Card Deserted Manor e00006.yaml new file mode 100644 index 000000000..eda366caa --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 3 Locations 948eb7/Card Deserted Manor e00006.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100500 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/3xqFKJm.jpg + FaceURL: https://i.imgur.com/88kyQhV.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: Bloodsoaked Boudoir +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"2cd52429-1553-4ae9-b66a-d157e381b619","type":"Location","class":"Mythos","traits":"Yharnam. + Estate. ","locationFront":{"icons":"Heart","connections":"T","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}],"victory":1},"locationBack":{"icons":"Heart","connections":"T"}}' +GUID: e00006 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Deserted Manor +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -17.04 + posY: 1.53 + posZ: -7.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 3 Locations 948eb7/Card Deserted Manor e27a6f.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 3 Locations 948eb7/Card Deserted Manor e27a6f.yaml new file mode 100644 index 000000000..04198c4cb --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 3 Locations 948eb7/Card Deserted Manor e27a6f.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100600 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/YF3S6nJ.jpg + FaceURL: https://i.imgur.com/YkWBSRW.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: Barren Bedchambers +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"e85af8a8-2561-4105-8138-5c1e639f5d3f","type":"Location","class":"Mythos","traits":"Yharnam. + Estate. ","locationFront":{"icons":"Heart","connections":"T","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":"Heart","connections":"T"}}' +GUID: e27a6f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Deserted Manor +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -17.04 + posY: 1.53 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322.ttslua new file mode 100644 index 000000000..baa7b8b87 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1.25 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + objPos.z = objPos.z * globalScaleFactor + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + memoryList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + end +end + +--Resets bag to starting status +function buttonClick_reset() + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322.yaml new file mode 100644 index 000000000..18b3ffdb1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- !include 'Bag Act 4 Locations 0f2322/Custom_Token 54b03c.yaml' +- !include 'Bag Act 4 Locations 0f2322/Custom_Token 73d971.yaml' +- !include 'Bag Act 4 Locations 0f2322/Custom_Token de99ab.yaml' +- !include 'Bag Act 4 Locations 0f2322/Card Narrow Alleyway e0000c.yaml' +- !include 'Bag Act 4 Locations 0f2322/Card Somber Memorial e0000f.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 0f2322 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Bag Act 4 Locations 0f2322.ttslua' +LuaScriptState: '{"ml":{"54b03c":{"lock":false,"pos":{"x":-15.7501,"y":1.67,"z":11.8159},"rot":{"x":0,"y":265.3762,"z":0}},"73d971":{"lock":false,"pos":{"x":-19.6243,"y":1.67,"z":5.0555},"rot":{"x":0,"y":265.3765,"z":0}},"de99ab":{"lock":false,"pos":{"x":-18.9515,"y":1.67,"z":11.7701},"rot":{"x":-0.0001,"y":270.0188,"z":0}},"e0000c":{"lock":false,"pos":{"x":-17.1199,"y":1.5336,"z":7.57},"rot":{"x":0,"y":270.0004,"z":180}},"e0000f":{"lock":false,"pos":{"x":-17.1201,"y":1.5336,"z":15.19},"rot":{"x":0,"y":269.9722,"z":180}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Act 4 Locations +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.73 + posY: 1.3 + posZ: 0.18 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322/Card Narrow Alleyway e0000c.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322/Card Narrow Alleyway e0000c.yaml new file mode 100644 index 000000000..a1b4e66cd --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322/Card Narrow Alleyway e0000c.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101100 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1011': + BackIsHidden: true + BackURL: https://i.ibb.co/V24XMqz/9dcf3f346cec.jpg + FaceURL: https://i.ibb.co/3SV6tRw/663e0cef0466.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"0a8b9e24-1f35-4141-a852-c8a7dc445d6e","type":"Location","class":"Mythos","traits":"Yharnam","locationFront":{"icons":"DoubleSlash","connections":"T|Star","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":"DoubleSlash","connections":"T|Star"}}' +GUID: e0000c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Narrow Alleyway +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -17.12 + posY: 1.53 + posZ: 7.57 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322/Card Somber Memorial e0000f.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322/Card Somber Memorial e0000f.yaml new file mode 100644 index 000000000..0fce31112 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322/Card Somber Memorial e0000f.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1014': + BackIsHidden: true + BackURL: https://i.imgur.com/v9gzPxK.jpg + FaceURL: https://i.imgur.com/tshU524.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: Tomb of Oedon +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"ae881d0d-bf2e-4379-98db-ff040aa2018e","type":"Location","class":"Mythos","traits":"Yharnam. + Graveyard","locationFront":{"icons":"Star","connections":"DoubleSlash","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":2},"locationBack":{"icons":"Star","connections":"DoubleSlash"}}' +GUID: e0000f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Somber Memorial +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -17.12 + posY: 1.53 + posZ: 15.19 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322/Custom_Token 54b03c.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322/Custom_Token 54b03c.yaml new file mode 100644 index 000000000..3dd81099a --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322/Custom_Token 54b03c.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 54b03c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -15.75 + posY: 1.67 + posZ: 11.82 + rotX: 0.0 + rotY: 265.0 + rotZ: 0.0 + scaleX: 0.33 + scaleY: 1.0 + scaleZ: 0.33 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322/Custom_Token 73d971.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322/Custom_Token 73d971.yaml new file mode 100644 index 000000000..c1e022cd1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322/Custom_Token 73d971.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 73d971 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.62 + posY: 1.67 + posZ: 5.06 + rotX: 0.0 + rotY: 265.0 + rotZ: 0.0 + scaleX: 0.33 + scaleY: 1.0 + scaleZ: 0.33 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322/Custom_Token de99ab.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322/Custom_Token de99ab.yaml new file mode 100644 index 000000000..74711954d --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Bag Act 4 Locations 0f2322/Custom_Token de99ab.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: de99ab +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -18.95 + posY: 1.67 + posZ: 11.77 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.33 + scaleY: 1.0 + scaleZ: 0.33 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Card 1st Floor Examination Room 46e21c.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Card 1st Floor Examination Room 46e21c.yaml new file mode 100644 index 000000000..c532850a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Card 1st Floor Examination Room 46e21c.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100100 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/6exonLu.jpg + FaceURL: https://i.imgur.com/luQ5i4S.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: 'Diagnosis: Terminal' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"ad7f6e89-57fb-4b87-a642-1e8d97190292","type":"Location","class":"Mythos","traits":"Clinic","locationFront":{"icons":"Triangle","connections":"Circle|Square","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":"Triangle","connections":"Circle|Square"}}' +GUID: 46e21c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: 1st Floor Examination Room +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -43.41 + posY: 1.55 + posZ: 9.09 + rotX: 0.0 + rotY: 270.0 + rotZ: 179.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Card 1st Floor Examination Room e1ae2e.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Card 1st Floor Examination Room e1ae2e.yaml new file mode 100644 index 000000000..562fd1ff7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Card 1st Floor Examination Room e1ae2e.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100000 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/aJqcDAR.jpg + FaceURL: https://i.imgur.com/i8JMwkS.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: 'Diagnosis: Disastrous' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"3a052131-e718-47fd-a43c-6fb7d982f200","type":"Location","class":"Mythos","traits":"Clinic","locationFront":{"icons":"Triangle","connections":"Circle|Square","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":"Triangle","connections":"Circle|Square"}}' +GUID: e1ae2e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: 1st Floor Examination Room +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -43.44 + posY: 1.53 + posZ: 7.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Card 1st Floor Sickroom e00003.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Card 1st Floor Sickroom e00003.yaml new file mode 100644 index 000000000..be190666b --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Card 1st Floor Sickroom e00003.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100200 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.ibb.co/KDQTGtw/5f537d852c6a.jpg + FaceURL: https://i.ibb.co/dsYv1G8/91c68c31f40c.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"e008f9a1-c63e-4b8a-8ba1-5e8b2bf90eb9","type":"Location","class":"Mythos","traits":"Clinic","locationFront":{"icons":"Circle","connections":"Triangle|Square","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"Circle","connections":"Triangle|Square"}}' +GUID: e00003 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: 1st Floor Sickroom +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -36.84 + posY: 1.53 + posZ: 7.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Card Hospital Courtyard e00008.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Card Hospital Courtyard e00008.yaml new file mode 100644 index 000000000..fc04fbfe8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Card Hospital Courtyard e00008.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100700 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/DJj4igL.jpg + FaceURL: https://i.imgur.com/xsV57X1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"a8d64394-5018-498e-a070-782fca288043","type":"Location","class":"Mythos","traits":"Yharnam","locationFront":{"icons":"Square","connections":"Circle|Triangle|Diamond","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Square","connections":"Circle|Triangle|Diamond"}}' +GUID: e00008 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Hospital Courtyard +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -36.84 + posY: 1.53 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Card Scourge Beast e00002.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Card Scourge Beast e00002.yaml new file mode 100644 index 000000000..2ee99c400 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Card Scourge Beast e00002.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 281800 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '2818': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/5WQFY6j/549c448538e9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"77e60827-d242-4313-9d8c-60e3a55035c5"}' +GUID: e00002 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Scourge Beast +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -43.37 + posY: 1.53 + posZ: 3.86 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Card The Hunt Begins 75776f.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Card The Hunt Begins 75776f.yaml new file mode 100644 index 000000000..32618124d --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Card The Hunt Begins 75776f.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 277900 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '2779': + BackIsHidden: true + BackURL: https://i.ibb.co/mGjcrXh/4449ad54e9b1.jpg + FaceURL: https://i.ibb.co/1MDP4s5/a09f4d84cb0d.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"74a9825c-fdc9-43d8-b68b-842d4146611f"}' +GUID: 75776f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Hunt Begins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.96 + posY: 1.6 + posZ: -10.44 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model Bloodborne Custom Data Helper 8f6217.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model Bloodborne Custom Data Helper 8f6217.ttslua new file mode 100644 index 000000000..709ca2a82 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model Bloodborne Custom Data Helper 8f6217.ttslua @@ -0,0 +1,402 @@ +-- set true to enable debug logging +DEBUG = false + +function log(message) + if DEBUG then + print(message) + end +end + +--[[ +Known locations and clues. We check this to determine if we should +atttempt to spawn clues, first we look for _ and if +we find nothing we look for +format is [location_guid -> clueCount] +]] +LOCATIONS_DATA_JSON = [[ +{ + "San Francisco": {"type": "fixed", "value": 1, "clueSide": "back"}, + " Arkham": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Buenos Aires": {"type": "fixed", "value": 2, "clueSide": "back"}, + " London": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Rome": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Istanbul": {"type": "perPlayer", "value": 4, "clueSide": "front"}, + "Tokyo_123abc": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Tokyo_456efg": {"type": "perPlayer", "value": 4, "clueSide": "back"}, + "Tokyo": {"type": "fixed", "value": 2, "clueSide": "back"}, + "Shanghai_123": {"type": "fixed", "value": 12, "clueSide": "front"}, + "Sydney": {"type": "fixed", "value": 0, "clueSide": "front"}, + "Under the Great Bridge": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Somber Memorial": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Ominous Pyre": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Ominous Pyre ": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Narrow Alleyway": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Moonlit Backstreet": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Moonlit Backstreet ": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Central Yharnam Promenade": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Hospital Courtyard": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Deserted Manor_adcfac": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "City Center Plaza": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Atop the Great Bridge": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Deserted Manor_e00007": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "1st Floor Sickroom": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "1st Floor Examination Room": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Chapel Transept": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chapel Sanctuary": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chapel Rectory": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chapel Nave": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Chapel Attic_0e64f5": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Untended Graves": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Tomb of the Queen": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Shadowed Woods": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Rotting Thicket": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Oedon Chapel Subterrane": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Moonlit Clearing": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Misty Weald": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Hemwick Charnel Lane": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Gibbeting Path": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Gates of Byrgenwerth": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Deserted Trapping Village": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Derelict Coachhouse": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Burial Grove": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Abandoned Mill": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Private Library": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Research Hall": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Faculty Offices": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Rooftops_e00008": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Annex": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Astronomy Hall": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Lecture Hall": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "University Foyer": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "*The Portrait of the First Vicar": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "*The Portrait of the Holy Blade": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "*The Portrait of the Holy Blade": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "*The Portrait of the Headmaster": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "*The Portrait of the Governess": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Audience Chamber": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Cathedral Steps": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Cathedral Ward Cemetery": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Grand Cathedral of Yharnam": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Surgery Altar": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "The Bridge of Saints": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Grand Cathedral Sanctuary": {"type": "perPlayer", "value": 0, "clueSide": "front"}, + "The Lumenflower Garden": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Steps of Penance": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Mirror Chamber": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber ": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber ": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber ": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Branching Corridors": {"type": "fixed", "value": 1, "clueSide": "front"}, + "Yale University": {"type": "fixed", "value": 1, "clueSide": "front"}, + "The Cimmerian Descent": {"type": "fixed", "value": 1, "clueSide": "front"}, + "The College of Mensis": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Ritual Cloister": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Mensis Refectory": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Lair of the Brain": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "The Hypogean Gaol": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Spires of the Loft": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Featured Exhibit": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Depths of the Loft": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Dangling Cells": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Byrgenwerth": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Apostle's Gallery": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Wet Nurse's Lunarium": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Spire of Mensis": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Aeonian Sickbeds": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Decaying Fishing Hamlet": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Lumenwood Garden": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Forgotten Coast": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Advent Plaza": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Sacrificial Pits": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Yahar'gul Chapel": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Yahar'gul Commons": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Defiled Pthumerian Shrine": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Pthumeru Ihyll Labyrinth": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Tomb of Oedon": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Moonside Lake": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Ailing Loran Frontier": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Bloodstained Gate": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "The Eastern Cathedral": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mergo's Loft": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Sanguine River": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Underground Corpse Pile": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Western Cathedral": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chalice Headstones": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Gates of the Dream": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chalice Headstones": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Grave-Marked Trail": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Misty Garden Path": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Moon-Kissed Meadow": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Burning Workshop": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "The Dream Aflame": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Messengers' Bath": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Deserted Manor_1566a5": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Moonlit Clearing_e00008": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Research Hall_e00007": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Rooftops_e0008": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Lecture Hall_e00004": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Surgery Altar_e00007": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "The Lumenflower Gardens_1a433f": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Blood Healing Laboratory_998d8c": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Contact Chamber_10edc3": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Contact Chamber_31e857": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Audience Chamber_e00001": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Mirror Chamber _e00003": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber _e00001": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber_e00004": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber _e00002": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Dangling Cells_49d503": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Depths of the Loft_e00007": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Lair of the Brain_e0000b": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Ritual Cloister_e00013": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Mensis Refectory_e0000e": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Spires of the Loft_e00009": {"type": "perPlayer", "value": 2, "clueSide": "front"} + +} +]] + + +PLAYER_CARD_DATA_JSON = [[ +{ + "Tool Belt (0)": { + "tokenType": "resource", + "tokenCount": 2 + }, + "Tool Belt (3)": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Yithian Rifle": { + "tokenType": "resource", + "tokenCount": 3 + }, + "xxx": { + "tokenType": "resource", + "tokenCount": 3 + } +} +]] + +HIDDEN_CARD_DATA = { + "Unpleasant Card (Doom)", + "Unpleasant Card (Gloom)", + "The Case of the Scarlet DOOOOOM!" +} + +LOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON) +PLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON) + +function onload(save_state) + local playArea = getObjectFromGUID('721ba2') + playArea.call("updateLocations", {self.getGUID()}) + local playerMatWhite = getObjectFromGUID('8b081b') + playerMatWhite.call("updatePlayerCards", {self.getGUID()}) + local playerMatOrange = getObjectFromGUID('bd0ff4') + playerMatOrange.call("updatePlayerCards", {self.getGUID()}) + local playerMatGreen = getObjectFromGUID('383d8b') + playerMatGreen.call("updatePlayerCards", {self.getGUID()}) + local playerMatRed = getObjectFromGUID('0840d5') + playerMatRed.call("updatePlayerCards", {self.getGUID()}) + local dataHelper = getObjectFromGUID('708279') + dataHelper.call("updateHiddenCards", {self.getGUID()}) +end-- set true to enable debug logging +DEBUG = false + +function log(message) + if DEBUG then + print(message) + end +end + +--[[ +Known locations and clues. We check this to determine if we should +atttempt to spawn clues, first we look for _ and if +we find nothing we look for +format is [location_guid -> clueCount] +]] +LOCATIONS_DATA_JSON = [[ +{ + "San Francisco": {"type": "fixed", "value": 1, "clueSide": "back"}, + " Arkham": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Buenos Aires": {"type": "fixed", "value": 2, "clueSide": "back"}, + " London": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Rome": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Istanbul": {"type": "perPlayer", "value": 4, "clueSide": "front"}, + "Tokyo_123abc": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Tokyo_456efg": {"type": "perPlayer", "value": 4, "clueSide": "back"}, + "Tokyo": {"type": "fixed", "value": 2, "clueSide": "back"}, + "Shanghai_123": {"type": "fixed", "value": 12, "clueSide": "front"}, + "Sydney": {"type": "fixed", "value": 0, "clueSide": "front"}, + "Under the Great Bridge": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Somber Memorial": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Ominous Pyre": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Ominous Pyre ": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Narrow Alleyway": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Moonlit Backstreet": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Moonlit Backstreet ": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Central Yharnam Promenade": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Hospital Courtyard": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Deserted Manor_adcfac": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "City Center Plaza": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Atop the Great Bridge": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Deserted Manor_e00007": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "1st Floor Sickroom": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "1st Floor Examination Room": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Chapel Transept": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chapel Sanctuary": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chapel Rectory": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chapel Nave": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Chapel Attic_0e64f5": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Untended Graves": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Tomb of the Queen": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Shadowed Woods": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Rotting Thicket": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Oedon Chapel Subterrane": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Moonlit Clearing": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Misty Weald": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Hemwick Charnel Lane": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Gibbeting Path": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Gates of Byrgenwerth": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Deserted Trapping Village": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Derelict Coachhouse": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Burial Grove": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Abandoned Mill": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Private Library": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Research Hall": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Faculty Offices": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Rooftops_e00008": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Annex": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Astronomy Hall": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Lecture Hall": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "University Foyer": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "*The Portrait of the First Vicar": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "*The Portrait of the Holy Blade": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "*The Portrait of the Holy Blade": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "*The Portrait of the Headmaster": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "*The Portrait of the Governess": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Audience Chamber": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Cathedral Steps": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Cathedral Ward Cemetery": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Grand Cathedral of Yharnam": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Surgery Altar": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "The Bridge of Saints": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Grand Cathedral Sanctuary": {"type": "perPlayer", "value": 0, "clueSide": "front"}, + "The Lumenflower Garden": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Steps of Penance": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Mirror Chamber": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber ": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber ": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber ": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Branching Corridors": {"type": "fixed", "value": 1, "clueSide": "front"}, + "Yale University": {"type": "fixed", "value": 1, "clueSide": "front"}, + "The Cimmerian Descent": {"type": "fixed", "value": 1, "clueSide": "front"}, + "The College of Mensis": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Ritual Cloister": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Mensis Refectory": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Lair of the Brain": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "The Hypogean Gaol": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Spires of the Loft": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Featured Exhibit": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Depths of the Loft": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Dangling Cells": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Byrgenwerth": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Apostle's Gallery": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Wet Nurse's Lunarium": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Spire of Mensis": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Aeonian Sickbeds": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Decaying Fishing Hamlet": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Lumenwood Garden": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Forgotten Coast": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Advent Plaza": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Sacrificial Pits": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Yahar'gul Chapel": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Yahar'gul Commons": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Defiled Pthumerian Shrine": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Pthumeru Ihyll Labyrinth": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Tomb of Oedon": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Moonside Lake": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Ailing Loran Frontier": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Bloodstained Gate": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "The Eastern Cathedral": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mergo's Loft": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Sanguine River": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Underground Corpse Pile": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Western Cathedral": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chalice Headstones": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Gates of the Dream": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chalice Headstones": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Grave-Marked Trail": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Misty Garden Path": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Moon-Kissed Meadow": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Burning Workshop": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "The Dream Aflame": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Messengers' Bath": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Deserted Manor_1566a5": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Moonlit Clearing_e00008": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Research Hall_e00007": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Rooftops_e0008": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Lecture Hall_e00004": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Surgery Altar_e00007": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "The Lumenflower Gardens_1a433f": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Blood Healing Laboratory_998d8c": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Contact Chamber_10edc3": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Contact Chamber_31e857": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Audience Chamber_e00001": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Mirror Chamber _e00003": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber _e00001": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber_e00004": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mirror Chamber _e00002": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Dangling Cells_49d503": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Depths of the Loft_e00007": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Lair of the Brain_e0000b": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Ritual Cloister_e00013": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Mensis Refectory_e0000e": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Spires of the Loft_e00009": {"type": "perPlayer", "value": 2, "clueSide": "front"} +} +]] + + +PLAYER_CARD_DATA_JSON = [[ +{ + "Tool Belt (0)": { + "tokenType": "resource", + "tokenCount": 2 + }, + "Tool Belt (3)": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Yithian Rifle": { + "tokenType": "resource", + "tokenCount": 3 + }, + "xxx": { + "tokenType": "resource", + "tokenCount": 3 + } +} +]] + +HIDDEN_CARD_DATA = { + "Unpleasant Card (Doom)", + "Unpleasant Card (Gloom)", + "The Case of the Scarlet DOOOOOM!" +} + +LOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON) +PLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON) + +function onload(save_state) + local playArea = getObjectFromGUID('721ba2') + playArea.call("updateLocations", {self.getGUID()}) + local playerMatWhite = getObjectFromGUID('8b081b') + playerMatWhite.call("updatePlayerCards", {self.getGUID()}) + local playerMatOrange = getObjectFromGUID('bd0ff4') + playerMatOrange.call("updatePlayerCards", {self.getGUID()}) + local playerMatGreen = getObjectFromGUID('383d8b') + playerMatGreen.call("updatePlayerCards", {self.getGUID()}) + local playerMatRed = getObjectFromGUID('0840d5') + playerMatRed.call("updatePlayerCards", {self.getGUID()}) + local dataHelper = getObjectFromGUID('708279') + dataHelper.call("updateHiddenCards", {self.getGUID()}) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model Bloodborne Custom Data Helper 8f6217.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model Bloodborne Custom Data Helper 8f6217.yaml new file mode 100644 index 000000000..726ab1557 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model Bloodborne Custom Data Helper 8f6217.yaml @@ -0,0 +1,57 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 0.339915335 + g: 0.507659256 + r: 0.7222887 + SpecularIntensity: 0.4 + SpecularSharpness: 7.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/254843371583187306/6844B833AD55B9A34095067B201B311E1348325F/ + MaterialIndex: 2 + MeshURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + NormalURL: '' + TypeIndex: 0 +Description: Include this in custom content for clue spawning! +DragSelectable: true +GMNotes: '' +GUID: 8f6217 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model Bloodborne Custom Data Helper 8f6217.ttslua' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: Bloodborne Custom Data Helper +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.33 + posY: 1.63 + posZ: -14.35 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.5 + scaleY: 0.5 + scaleZ: 0.5 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98.ttslua new file mode 100644 index 000000000..8983dba69 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98.ttslua @@ -0,0 +1,13 @@ +function filterObjectEnter(obj) + local props = obj.getCustomObject() + if props ~= nil and props.image ~= nil then + obj.setName(Global.call("getTokenName", { url=props.image })) + end + return true +end + +function onCollisionEnter(collision_info) + self.shuffle() + self.shuffle() + self.shuffle() +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98.yaml new file mode 100644 index 000000000..da4c559e2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98.yaml @@ -0,0 +1,82 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -1 611dee.yaml' +- !include 'Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile 0 9ce4ab.yaml' +- !include 'Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile 0 bf610b.yaml' +- !include 'Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -3 06b1ba.yaml' +- !include 'Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -1 fb1afd.yaml' +- !include 'Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Tablet 4c0d07.yaml' +- !include 'Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile 079c53.yaml' +- !include 'Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile 429a2f.yaml' +- !include 'Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Auto-fail 233aa2.yaml' +- !include 'Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Cultist 0d2196.yaml' +- !include 'Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile +1 20b7fc.yaml' +- !include 'Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Skull c2b8a0.yaml' +- !include 'Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Elder Sign e04757.yaml' +- !include 'Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -2 6cda68.yaml' +- !include 'Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Skull ddd462.yaml' +- !include 'Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile afaab0.yaml' +- !include 'Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -2 8463a5.yaml' +- !include 'Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -1 9e41ec.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/959719855127933035/B199A5F515A8F3ED7E06780D3723285C02ADE085/ + MaterialIndex: 3 + MeshURL: http://cloud-3.steamusercontent.com/ugc/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/ + NormalURL: '' + TypeIndex: 6 +Description: Chaos Bag +DragSelectable: true +GMNotes: '' +GUID: f4ca98 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model_Bag Easy Chaos Bag f4ca98.ttslua' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Easy Chaos Bag +Snap: true +Sticky: true +Tags: +- chaos_bag +Tooltip: true +Transform: + posX: 2.02 + posY: 1.49 + posZ: -23.93 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 3.0 + scaleY: 3.0 + scaleZ: 3.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile 079c53.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile 079c53.yaml new file mode 100644 index 000000000..c0dd08f44 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile 079c53.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.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.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/lKV3fGU.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 079c53 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.87 + posY: 2.36 + posZ: 34.56 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile 429a2f.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile 429a2f.yaml new file mode 100644 index 000000000..46ecca3d5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile 429a2f.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.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.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/lKV3fGU.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 429a2f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.97 + posY: 2.37 + posZ: 26.35 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile afaab0.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile afaab0.yaml new file mode 100644 index 000000000..a27db06a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile afaab0.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.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.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/lKV3fGU.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: afaab0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -52.1 + posY: 1.64 + posZ: 5.83 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile +1 20b7fc.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile +1 20b7fc.yaml new file mode 100644 index 000000000..3bba29688 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile +1 20b7fc.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/uIx8jbY.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 20b7fc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '+1' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.22 + posY: 2.26 + posZ: -12.59 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -1 611dee.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -1 611dee.yaml new file mode 100644 index 000000000..19c42195b --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -1 611dee.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/w3XbrCC.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 611dee +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-1' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.48 + posY: 2.33 + posZ: -47.02 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -1 9e41ec.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -1 9e41ec.yaml new file mode 100644 index 000000000..ad3d67a9f --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -1 9e41ec.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/w3XbrCC.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9e41ec +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-1' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.59 + posY: 2.51 + posZ: -42.22 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -1 fb1afd.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -1 fb1afd.yaml new file mode 100644 index 000000000..0f88ce706 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -1 fb1afd.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/w3XbrCC.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: fb1afd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-1' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -2 6cda68.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -2 6cda68.yaml new file mode 100644 index 000000000..840274fb6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -2 6cda68.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/bfTg2hb.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 6cda68 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-2' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.54 + posY: 2.32 + posZ: -60.51 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -2 8463a5.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -2 8463a5.yaml new file mode 100644 index 000000000..366568b0b --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -2 8463a5.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/bfTg2hb.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8463a5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-2' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.1 + posY: 2.32 + posZ: -68.84 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -3 06b1ba.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -3 06b1ba.yaml new file mode 100644 index 000000000..42d787a66 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile -3 06b1ba.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/yfs8gHq.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 06b1ba +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-3' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -51.86 + posY: 2.04 + posZ: 5.74 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile 0 9ce4ab.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile 0 9ce4ab.yaml new file mode 100644 index 000000000..0013a7b72 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile 0 9ce4ab.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/btEtVfd.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9ce4ab +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '0' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile 0 bf610b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile 0 bf610b.yaml new file mode 100644 index 000000000..31433e800 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile 0 bf610b.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/btEtVfd.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: bf610b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '0' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Auto-fail 233aa2.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Auto-fail 233aa2.yaml new file mode 100644 index 000000000..263dce593 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Auto-fail 233aa2.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/lns4fhz.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 233aa2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Auto-fail +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Cultist 0d2196.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Cultist 0d2196.yaml new file mode 100644 index 000000000..6b5cf06c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Cultist 0d2196.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/VzhJJaH.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 0d2196 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Cultist +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Elder Sign e04757.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Elder Sign e04757.yaml new file mode 100644 index 000000000..355aa5889 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Elder Sign e04757.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/nEmqjmj.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e04757 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Elder Sign +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 5.44 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Skull c2b8a0.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Skull c2b8a0.yaml new file mode 100644 index 000000000..56949dab1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Skull c2b8a0.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/stbBxtx.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c2b8a0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Skull +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 6.26 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Skull ddd462.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Skull ddd462.yaml new file mode 100644 index 000000000..38f3401ae --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Skull ddd462.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/stbBxtx.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ddd462 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Skull +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Tablet 4c0d07.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Tablet 4c0d07.yaml new file mode 100644 index 000000000..68ff8dc00 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Easy Chaos Bag f4ca98/Custom_Tile Tablet 4c0d07.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/1plY463.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4c0d07 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Tablet +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c.ttslua new file mode 100644 index 000000000..8983dba69 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c.ttslua @@ -0,0 +1,13 @@ +function filterObjectEnter(obj) + local props = obj.getCustomObject() + if props ~= nil and props.image ~= nil then + obj.setName(Global.call("getTokenName", { url=props.image })) + end + return true +end + +function onCollisionEnter(collision_info) + self.shuffle() + self.shuffle() + self.shuffle() +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c.yaml new file mode 100644 index 000000000..0366fa7c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c.yaml @@ -0,0 +1,84 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -7 80de4a.yaml' +- !include 'Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Elder Thing 350e43.yaml' +- !include 'Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -2 8463a5.yaml' +- !include 'Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -4 658388.yaml' +- !include 'Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Cultist 0d2196.yaml' +- !include 'Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Auto-fail 233aa2.yaml' +- !include 'Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Elder Sign e04757.yaml' +- !include 'Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -5 f5482a.yaml' +- !include 'Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Skull ddd462.yaml' +- !include 'Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Tablet 77d60d.yaml' +- !include 'Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile 429a2f.yaml' +- !include 'Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile 0 bf610b.yaml' +- !include 'Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -4 c1f333.yaml' +- !include 'Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Skull c2b8a0.yaml' +- !include 'Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile 079c53.yaml' +- !include 'Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Skull c1b100.yaml' +- !include 'Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -3 06b1ba.yaml' +- !include 'Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Tablet 4c0d07.yaml' +- !include 'Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -1 fb1afd.yaml' +- !include 'Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile afaab0.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/959719855127933035/B199A5F515A8F3ED7E06780D3723285C02ADE085/ + MaterialIndex: 3 + MeshURL: http://cloud-3.steamusercontent.com/ugc/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/ + NormalURL: '' + TypeIndex: 6 +Description: Chaos Bag +DragSelectable: true +GMNotes: '' +GUID: fb475c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model_Bag Expert Chaos Bag fb475c.ttslua' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Expert Chaos Bag +Snap: true +Sticky: true +Tags: +- chaos_bag +Tooltip: true +Transform: + posX: -6.57 + posY: 1.49 + posZ: -30.36 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 3.0 + scaleY: 3.0 + scaleZ: 3.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile 079c53.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile 079c53.yaml new file mode 100644 index 000000000..243f749db --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile 079c53.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.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.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/lKV3fGU.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 079c53 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -1.47 + posY: 2.38 + posZ: -26.93 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile 429a2f.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile 429a2f.yaml new file mode 100644 index 000000000..46ecca3d5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile 429a2f.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.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.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/lKV3fGU.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 429a2f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.97 + posY: 2.37 + posZ: 26.35 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile afaab0.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile afaab0.yaml new file mode 100644 index 000000000..a27db06a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile afaab0.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.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.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/lKV3fGU.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: afaab0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -52.1 + posY: 1.64 + posZ: 5.83 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -1 fb1afd.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -1 fb1afd.yaml new file mode 100644 index 000000000..23a5687cc --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -1 fb1afd.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/w3XbrCC.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: fb1afd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-1' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.55 + posY: -0.36 + posZ: -23.56 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -2 8463a5.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -2 8463a5.yaml new file mode 100644 index 000000000..366568b0b --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -2 8463a5.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/bfTg2hb.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8463a5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-2' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.1 + posY: 2.32 + posZ: -68.84 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -3 06b1ba.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -3 06b1ba.yaml new file mode 100644 index 000000000..42d787a66 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -3 06b1ba.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/yfs8gHq.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 06b1ba +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-3' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -51.86 + posY: 2.04 + posZ: 5.74 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -4 658388.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -4 658388.yaml new file mode 100644 index 000000000..5508c02af --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -4 658388.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/qrgGQRD.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '658388' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-4' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.12 + posY: 2.32 + posZ: -60.81 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -4 c1f333.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -4 c1f333.yaml new file mode 100644 index 000000000..ccc180451 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -4 c1f333.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/qrgGQRD.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c1f333 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-4' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.72 + posY: 2.34 + posZ: -69.06 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -5 f5482a.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -5 f5482a.yaml new file mode 100644 index 000000000..0e7d68847 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -5 f5482a.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/3Ym1IeG.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f5482a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-5' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.25 + posY: 2.24 + posZ: -36.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -7 80de4a.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -7 80de4a.yaml new file mode 100644 index 000000000..46d3c88fd --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile -7 80de4a.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/4WRD42n.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 80de4a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-7' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.71 + posY: 2.26 + posZ: -35.85 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile 0 bf610b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile 0 bf610b.yaml new file mode 100644 index 000000000..31433e800 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile 0 bf610b.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/btEtVfd.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: bf610b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '0' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Auto-fail 233aa2.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Auto-fail 233aa2.yaml new file mode 100644 index 000000000..263dce593 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Auto-fail 233aa2.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/lns4fhz.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 233aa2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Auto-fail +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Cultist 0d2196.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Cultist 0d2196.yaml new file mode 100644 index 000000000..6b5cf06c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Cultist 0d2196.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/VzhJJaH.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 0d2196 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Cultist +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Elder Sign e04757.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Elder Sign e04757.yaml new file mode 100644 index 000000000..355aa5889 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Elder Sign e04757.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/nEmqjmj.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e04757 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Elder Sign +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 5.44 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Elder Thing 350e43.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Elder Thing 350e43.yaml new file mode 100644 index 000000000..d10503b9a --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Elder Thing 350e43.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/ttnspKt.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 350e43 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Elder Thing +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.25 + posY: 2.26 + posZ: 27.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Skull c1b100.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Skull c1b100.yaml new file mode 100644 index 000000000..7a448c5af --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Skull c1b100.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/stbBxtx.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c1b100 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Skull +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.18 + posY: 2.32 + posZ: -59.48 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Skull c2b8a0.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Skull c2b8a0.yaml new file mode 100644 index 000000000..5dd2209ef --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Skull c2b8a0.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/stbBxtx.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c2b8a0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Skull +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.45 + posY: 2.32 + posZ: -66.48 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Skull ddd462.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Skull ddd462.yaml new file mode 100644 index 000000000..38f3401ae --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Skull ddd462.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/stbBxtx.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ddd462 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Skull +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Tablet 4c0d07.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Tablet 4c0d07.yaml new file mode 100644 index 000000000..68ff8dc00 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Tablet 4c0d07.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/1plY463.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4c0d07 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Tablet +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Tablet 77d60d.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Tablet 77d60d.yaml new file mode 100644 index 000000000..828782750 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Expert Chaos Bag fb475c/Custom_Tile Tablet 77d60d.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/1plY463.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 77d60d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Tablet +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.25 + posY: 2.26 + posZ: 27.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1.ttslua new file mode 100644 index 000000000..8983dba69 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1.ttslua @@ -0,0 +1,13 @@ +function filterObjectEnter(obj) + local props = obj.getCustomObject() + if props ~= nil and props.image ~= nil then + obj.setName(Global.call("getTokenName", { url=props.image })) + end + return true +end + +function onCollisionEnter(collision_info) + self.shuffle() + self.shuffle() + self.shuffle() +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1.yaml new file mode 100644 index 000000000..8fcd279e2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1.yaml @@ -0,0 +1,84 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile 0 bf610b.yaml' +- !include 'Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Skull ddd462.yaml' +- !include 'Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -2 6cda68.yaml' +- !include 'Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Tablet 4c0d07.yaml' +- !include 'Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Auto-fail 233aa2.yaml' +- !include 'Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Skull c2b8a0.yaml' +- !include 'Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Tablet 77d60d.yaml' +- !include 'Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -1 611dee.yaml' +- !include 'Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -3 4ae083.yaml' +- !include 'Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Elder Thing 350e43.yaml' +- !include 'Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -2 8463a5.yaml' +- !include 'Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile 0 9ce4ab.yaml' +- !include 'Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -5 c7fccd.yaml' +- !include 'Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -3 06b1ba.yaml' +- !include 'Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Cultist 0d2196.yaml' +- !include 'Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -4 c3e6c2.yaml' +- !include 'Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile 079c53.yaml' +- !include 'Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile 429a2f.yaml' +- !include 'Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Elder Sign e04757.yaml' +- !include 'Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile afaab0.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/959719855127933035/B199A5F515A8F3ED7E06780D3723285C02ADE085/ + MaterialIndex: 3 + MeshURL: http://cloud-3.steamusercontent.com/ugc/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/ + NormalURL: '' + TypeIndex: 6 +Description: Chaos Bag +DragSelectable: true +GMNotes: '' +GUID: 753dc1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model_Bag Hard Chaos Bag 753dc1.ttslua' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Hard Chaos Bag +Snap: true +Sticky: true +Tags: +- chaos_bag +Tooltip: true +Transform: + posX: -6.67 + posY: 1.49 + posZ: -23.42 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 3.0 + scaleY: 3.0 + scaleZ: 3.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile 079c53.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile 079c53.yaml new file mode 100644 index 000000000..a81d336bf --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile 079c53.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.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.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/lKV3fGU.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 079c53 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 2.42 + posZ: -7.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile 429a2f.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile 429a2f.yaml new file mode 100644 index 000000000..46ecca3d5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile 429a2f.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.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.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/lKV3fGU.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 429a2f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.97 + posY: 2.37 + posZ: 26.35 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile afaab0.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile afaab0.yaml new file mode 100644 index 000000000..a27db06a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile afaab0.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.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.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/lKV3fGU.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: afaab0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -52.1 + posY: 1.64 + posZ: 5.83 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -1 611dee.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -1 611dee.yaml new file mode 100644 index 000000000..bf5bc1313 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -1 611dee.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/w3XbrCC.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 611dee +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-1' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.18 + posY: 2.26 + posZ: -20.85 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -2 6cda68.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -2 6cda68.yaml new file mode 100644 index 000000000..840274fb6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -2 6cda68.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/bfTg2hb.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 6cda68 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-2' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.54 + posY: 2.32 + posZ: -60.51 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -2 8463a5.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -2 8463a5.yaml new file mode 100644 index 000000000..366568b0b --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -2 8463a5.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/bfTg2hb.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8463a5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-2' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.1 + posY: 2.32 + posZ: -68.84 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -3 06b1ba.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -3 06b1ba.yaml new file mode 100644 index 000000000..09bdab454 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -3 06b1ba.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/yfs8gHq.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 06b1ba +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-3' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.48 + posY: 2.33 + posZ: -52.5 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -3 4ae083.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -3 4ae083.yaml new file mode 100644 index 000000000..f50049dad --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -3 4ae083.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/yfs8gHq.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4ae083 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-3' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.56 + posY: 2.33 + posZ: -48.29 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -4 c3e6c2.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -4 c3e6c2.yaml new file mode 100644 index 000000000..7d549efc5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -4 c3e6c2.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/qrgGQRD.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c3e6c2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-4' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.33 + posY: 2.29 + posZ: -23.58 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -5 c7fccd.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -5 c7fccd.yaml new file mode 100644 index 000000000..5b833292d --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile -5 c7fccd.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/3Ym1IeG.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c7fccd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-5' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.25 + posY: 2.25 + posZ: -28.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile 0 9ce4ab.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile 0 9ce4ab.yaml new file mode 100644 index 000000000..5850971e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile 0 9ce4ab.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/btEtVfd.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9ce4ab +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '0' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.21 + posY: 2.32 + posZ: -50.06 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile 0 bf610b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile 0 bf610b.yaml new file mode 100644 index 000000000..31433e800 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile 0 bf610b.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/btEtVfd.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: bf610b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '0' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Auto-fail 233aa2.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Auto-fail 233aa2.yaml new file mode 100644 index 000000000..263dce593 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Auto-fail 233aa2.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/lns4fhz.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 233aa2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Auto-fail +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Cultist 0d2196.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Cultist 0d2196.yaml new file mode 100644 index 000000000..6b5cf06c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Cultist 0d2196.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/VzhJJaH.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 0d2196 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Cultist +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Elder Sign e04757.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Elder Sign e04757.yaml new file mode 100644 index 000000000..355aa5889 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Elder Sign e04757.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/nEmqjmj.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e04757 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Elder Sign +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 5.44 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Elder Thing 350e43.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Elder Thing 350e43.yaml new file mode 100644 index 000000000..d10503b9a --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Elder Thing 350e43.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/ttnspKt.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 350e43 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Elder Thing +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.25 + posY: 2.26 + posZ: 27.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Skull c2b8a0.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Skull c2b8a0.yaml new file mode 100644 index 000000000..56949dab1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Skull c2b8a0.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/stbBxtx.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c2b8a0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Skull +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 6.26 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Skull ddd462.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Skull ddd462.yaml new file mode 100644 index 000000000..c0ee09d85 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Skull ddd462.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/stbBxtx.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ddd462 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Skull +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.68 + posY: 2.28 + posZ: -23.89 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Tablet 4c0d07.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Tablet 4c0d07.yaml new file mode 100644 index 000000000..68ff8dc00 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Tablet 4c0d07.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/1plY463.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4c0d07 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Tablet +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Tablet 77d60d.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Tablet 77d60d.yaml new file mode 100644 index 000000000..828782750 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Hard Chaos Bag 753dc1/Custom_Tile Tablet 77d60d.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/1plY463.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 77d60d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Tablet +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.25 + posY: 2.26 + posZ: 27.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Set-aside d53ea1.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Set-aside d53ea1.yaml new file mode 100644 index 000000000..01478079e --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Set-aside d53ea1.yaml @@ -0,0 +1,69 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.02149 + g: 0.00101 + r: 0.02149 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside d53ea1/Card Atop the Great Bridge e00004.yaml' +- !include 'Custom_Model_Bag Set-aside d53ea1/Card Cleric Beast e00001.yaml' +- !include 'Custom_Model_Bag Set-aside d53ea1/Deck Act 2 Encounter Deck Additions + 7751a2.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://i.imgur.com/yVhOLYs.jpg + MaterialIndex: 1 + MeshURL: https://paste.ee/r/ylQzQ + NormalURL: http://i.imgur.com/f1ogHo6.jpg + TypeIndex: 6 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d53ea1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Set-aside +PhysicsMaterial: + BounceCombine: 0 + Bounciness: 0.0 + DynamicFriction: 0.6 + FrictionCombine: 0 + StaticFriction: 0.6 +Rigidbody: + AngularDrag: 5.0 + Drag: 5.0 + Mass: 1.375 + UseGravity: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 1.56 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Set-aside d53ea1/Card Atop the Great Bridge e00004.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Set-aside d53ea1/Card Atop the Great Bridge e00004.yaml new file mode 100644 index 000000000..6249c098a --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Set-aside d53ea1/Card Atop the Great Bridge e00004.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100300 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.ibb.co/JQdvJDV/e1b9a8cf8096.jpg + FaceURL: https://i.ibb.co/Ydwqdk0/341ab1fa31f7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"aa7f7686-f358-4b85-aacb-5ddd8350a76a","type":"Location","class":"Mythos","traits":"Yharnam","locationFront":{"icons":"Moon","connections":"T","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Moon","connections":"T"}}' +GUID: e00004 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Atop the Great Bridge +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: 1.69 + posY: 3.67 + posZ: 14.24 + rotX: 0.0 + rotY: 45.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Set-aside d53ea1/Card Cleric Beast e00001.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Set-aside d53ea1/Card Cleric Beast e00001.yaml new file mode 100644 index 000000000..1138ea5d8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Set-aside d53ea1/Card Cleric Beast e00001.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 280400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '2804': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/tGIjErL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"a9d914b0-7442-4a4c-97b5-9a046723c22f"}' +GUID: e00001 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Cleric Beast +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.58 + posY: 3.03 + posZ: -57.14 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Set-aside d53ea1/Deck Act 2 Encounter Deck Additions 7751a2.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Set-aside d53ea1/Deck Act 2 Encounter Deck Additions 7751a2.yaml new file mode 100644 index 000000000..2575ab0f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Set-aside d53ea1/Deck Act 2 Encounter Deck Additions 7751a2.yaml @@ -0,0 +1,1043 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 117400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1174': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/8MVLyGy/10b8614580d9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"05b01e11-c769-4ae6-a626-554670478e3e"}' + GUID: e000db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gleeful Atrocities + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.175 + posY: 1.277 + posZ: 60.362 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 117300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1173': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/8MVLyGy/10b8614580d9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"05b01e11-c769-4ae6-a626-554670478e3e"}' + GUID: e000da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gleeful Atrocities + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.52 + posY: 1.319 + posZ: 60.145 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 281400 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bQwc6tB/bfdab966d856.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9754dcfd-6b1f-400e-9239-b18042fe6ffe"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Blood Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 282800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2702': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/o3tvJVa.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c2bcc7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Blood Crazed Hunting Hounds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.71 + posY: 2.513 + posZ: -25.005 + rotX: 0.0 + rotY: 225.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 281500 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bQwc6tB/bfdab966d856.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9754dcfd-6b1f-400e-9239-b18042fe6ffe"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Blood Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 282800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2702': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/o3tvJVa.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 64cc96 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Blood Crazed Hunting Hounds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.727 + posY: 2.495 + posZ: -29.262 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 282900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2706': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/5WQFY6j/549c448538e9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"77e60827-d242-4313-9d8c-60e3a55035c5"}' + GUID: 8bdbce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.696 + posY: 2.328 + posZ: -53.843 + rotX: 0.0 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 282800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2702': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/o3tvJVa.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5355b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Blood Crazed Hunting Hounds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.078 + posY: 2.549 + posZ: -31.237 + rotX: 359.0 + rotY: 225.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 282900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2706': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/5WQFY6j/549c448538e9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"77e60827-d242-4313-9d8c-60e3a55035c5"}' + GUID: '730935' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.443 + posY: 2.327 + posZ: -59.899 + rotX: 0.0 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 281600 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bQwc6tB/bfdab966d856.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9754dcfd-6b1f-400e-9239-b18042fe6ffe"}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Blood Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 280700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2807': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xwG1Y0L.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ea654f8e-c900-4bcb-a849-9f548c0dfbc0"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Elderly Huntsman + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.145 + posY: 3.019 + posZ: -60.984 + rotX: 0.0 + rotY: 179.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 280500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2805': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xwG1Y0L.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ea654f8e-c900-4bcb-a849-9f548c0dfbc0"}' + GUID: 216c1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Elderly Huntsman + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.801 + posY: 2.439 + posZ: -51.768 + rotX: 0.0 + rotY: 179.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"abca5cb6-27e0-4f77-9227-16967d5fad5f","type":"Enemy","class":"Mythos","traits":"Humanoid. + Blood-Drunk"}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunting Party + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -2.433 + posY: 2.606 + posZ: -3.067 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"abca5cb6-27e0-4f77-9227-16967d5fad5f","type":"Enemy","class":"Mythos","traits":"Humanoid. + Blood-Drunk"}' + GUID: 02d5c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunting Party + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -2.738 + posY: 2.607 + posZ: -2.867 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"abca5cb6-27e0-4f77-9227-16967d5fad5f","type":"Enemy","class":"Mythos","traits":"Humanoid. + Blood-Drunk"}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunting Party + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -4.415 + posY: 2.713 + posZ: 0.082 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 295800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2958': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/s8rQxMN.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f2d24dbe-b2f1-4f43-99d8-edad9518ae54","type":"Treachery","class":"Mythos","traits":"Hazard. + Scheme"}' + GUID: 594b7e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: View-Halloo! + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -4.912 + posY: 2.713 + posZ: -0.531 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 295500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2955': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/s8rQxMN.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f2d24dbe-b2f1-4f43-99d8-edad9518ae54","type":"Treachery","class":"Mythos","traits":"Hazard. + Scheme"}' + GUID: 3bbdca + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: View-Halloo! + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -7.89 + posY: 2.607 + posZ: -3.061 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1173': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/8MVLyGy/10b8614580d9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1174': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/8MVLyGy/10b8614580d9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2805': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xwG1Y0L.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2807': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xwG1Y0L.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2814': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bQwc6tB/bfdab966d856.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2815': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bQwc6tB/bfdab966d856.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2816': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bQwc6tB/bfdab966d856.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2828': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/o3tvJVa.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2829': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/5WQFY6j/549c448538e9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2955': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/s8rQxMN.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2958': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/s8rQxMN.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 117400 +- 117300 +- 281400 +- 282800 +- 281500 +- 282800 +- 282900 +- 282800 +- 282900 +- 281600 +- 280700 +- 280500 +- 100500 +- 100600 +- 100700 +- 295800 +- 295500 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 7751a2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Act 2 Encounter Deck Additions +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69 + posY: 3.76 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c.ttslua new file mode 100644 index 000000000..8983dba69 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c.ttslua @@ -0,0 +1,13 @@ +function filterObjectEnter(obj) + local props = obj.getCustomObject() + if props ~= nil and props.image ~= nil then + obj.setName(Global.call("getTokenName", { url=props.image })) + end + return true +end + +function onCollisionEnter(collision_info) + self.shuffle() + self.shuffle() + self.shuffle() +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c.yaml new file mode 100644 index 000000000..00fe7636a --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c.yaml @@ -0,0 +1,83 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -1 fb1afd.yaml' +- !include 'Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Elder Sign e04757.yaml' +- !include 'Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile 429a2f.yaml' +- !include 'Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Tablet 77d60d.yaml' +- !include 'Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Auto-fail 233aa2.yaml' +- !include 'Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile 0 9ce4ab.yaml' +- !include 'Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -3 06b1ba.yaml' +- !include 'Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Skull ddd462.yaml' +- !include 'Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -1 611dee.yaml' +- !include 'Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Cultist 0d2196.yaml' +- !include 'Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -2 8463a5.yaml' +- !include 'Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile +1 9ff40c.yaml' +- !include 'Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -2 6cda68.yaml' +- !include 'Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile 079c53.yaml' +- !include 'Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -2 b297ae.yaml' +- !include 'Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Skull c2b8a0.yaml' +- !include 'Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile afaab0.yaml' +- !include 'Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -4 c3e6c2.yaml' +- !include 'Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Elder Thing 350e43.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/959719855127933035/B199A5F515A8F3ED7E06780D3723285C02ADE085/ + MaterialIndex: 3 + MeshURL: http://cloud-3.steamusercontent.com/ugc/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/ + NormalURL: '' + TypeIndex: 6 +Description: Chaos Bag +DragSelectable: true +GMNotes: '' +GUID: 692b4c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model_Bag Standard Chaos Bag 692b4c.ttslua' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Standard Chaos Bag +Snap: true +Sticky: true +Tags: +- chaos_bag +Tooltip: true +Transform: + posX: 1.94 + posY: 1.49 + posZ: -30.66 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 3.0 + scaleY: 3.0 + scaleZ: 3.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile 079c53.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile 079c53.yaml new file mode 100644 index 000000000..c0dd08f44 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile 079c53.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.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.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/lKV3fGU.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 079c53 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.87 + posY: 2.36 + posZ: 34.56 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile 429a2f.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile 429a2f.yaml new file mode 100644 index 000000000..46ecca3d5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile 429a2f.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.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.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/lKV3fGU.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 429a2f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.97 + posY: 2.37 + posZ: 26.35 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile afaab0.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile afaab0.yaml new file mode 100644 index 000000000..a27db06a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile afaab0.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.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.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/lKV3fGU.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: afaab0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -52.1 + posY: 1.64 + posZ: 5.83 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile +1 9ff40c.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile +1 9ff40c.yaml new file mode 100644 index 000000000..070ff9c32 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile +1 9ff40c.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/uIx8jbY.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9ff40c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '+1' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -1 611dee.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -1 611dee.yaml new file mode 100644 index 000000000..98959628c --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -1 611dee.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/w3XbrCC.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 611dee +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-1' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 7.89 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -1 fb1afd.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -1 fb1afd.yaml new file mode 100644 index 000000000..0f88ce706 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -1 fb1afd.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/w3XbrCC.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: fb1afd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-1' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -2 6cda68.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -2 6cda68.yaml new file mode 100644 index 000000000..840274fb6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -2 6cda68.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/bfTg2hb.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 6cda68 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-2' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.54 + posY: 2.32 + posZ: -60.51 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -2 8463a5.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -2 8463a5.yaml new file mode 100644 index 000000000..366568b0b --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -2 8463a5.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/bfTg2hb.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8463a5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-2' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.1 + posY: 2.32 + posZ: -68.84 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -2 b297ae.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -2 b297ae.yaml new file mode 100644 index 000000000..81e5e1a3b --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -2 b297ae.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/bfTg2hb.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b297ae +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-2' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 7.07 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -3 06b1ba.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -3 06b1ba.yaml new file mode 100644 index 000000000..42d787a66 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -3 06b1ba.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/yfs8gHq.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 06b1ba +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-3' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -51.86 + posY: 2.04 + posZ: 5.74 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -4 c3e6c2.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -4 c3e6c2.yaml new file mode 100644 index 000000000..d9e0b4fbf --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile -4 c3e6c2.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/qrgGQRD.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c3e6c2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '-4' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile 0 9ce4ab.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile 0 9ce4ab.yaml new file mode 100644 index 000000000..0013a7b72 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile 0 9ce4ab.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/btEtVfd.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9ce4ab +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '0' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Auto-fail 233aa2.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Auto-fail 233aa2.yaml new file mode 100644 index 000000000..263dce593 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Auto-fail 233aa2.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/lns4fhz.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 233aa2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Auto-fail +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Cultist 0d2196.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Cultist 0d2196.yaml new file mode 100644 index 000000000..6b5cf06c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Cultist 0d2196.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/VzhJJaH.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 0d2196 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Cultist +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Elder Sign e04757.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Elder Sign e04757.yaml new file mode 100644 index 000000000..355aa5889 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Elder Sign e04757.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/nEmqjmj.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e04757 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Elder Sign +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 5.44 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Elder Thing 350e43.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Elder Thing 350e43.yaml new file mode 100644 index 000000000..d10503b9a --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Elder Thing 350e43.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/ttnspKt.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 350e43 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Elder Thing +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.25 + posY: 2.26 + posZ: 27.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Skull c2b8a0.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Skull c2b8a0.yaml new file mode 100644 index 000000000..56949dab1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Skull c2b8a0.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/stbBxtx.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c2b8a0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Skull +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 6.26 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Skull ddd462.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Skull ddd462.yaml new file mode 100644 index 000000000..38f3401ae --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Skull ddd462.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/stbBxtx.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ddd462 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Skull +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: 8.71 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Tablet 77d60d.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Tablet 77d60d.yaml new file mode 100644 index 000000000..828782750 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Model_Bag Standard Chaos Bag 692b4c/Custom_Tile Tablet 77d60d.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/1plY463.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 77d60d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Tablet +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.25 + posY: 2.26 + posZ: 27.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Token 00d19a.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Token 00d19a.yaml new file mode 100644 index 000000000..4c7adb1a2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Token 00d19a.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 00d19a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -39.77 + posY: 1.67 + posZ: 7.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.33 + scaleY: 1.0 + scaleZ: 0.33 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Token 9743de.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Token 9743de.yaml new file mode 100644 index 000000000..74c875a75 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Custom_Token 9743de.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9743de +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -40.01 + posY: 1.67 + posZ: 4.19 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 0.33 + scaleY: 1.0 + scaleZ: 0.33 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Deck 87cb2b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Deck 87cb2b.yaml new file mode 100644 index 000000000..df51cb928 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Deck 87cb2b.yaml @@ -0,0 +1,232 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 294200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2942': + BackIsHidden: true + BackURL: https://i.imgur.com/OYNKAAA.jpg + FaceURL: https://i.imgur.com/QfbNrah.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d9e7c422-98c9-4120-aa45-ed70141e94ed","type":"Agenda","class":"Mythos","doomThreshold":5}' + GUID: e169b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Mere Bad Dream + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -2.725 + posY: 1.597 + posZ: 0.373 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 294300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2943': + BackIsHidden: true + BackURL: https://i.imgur.com/w6jIO0U.jpg + FaceURL: https://i.imgur.com/mZzW74R.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"052f3eac-989f-4e8d-aeb3-edd5e20aa5a5","type":"Agenda","class":"Mythos","doomThreshold":6}' + GUID: 7b63a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Night of Curses + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -2.725 + posY: 1.642 + posZ: 0.373 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 319200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/0vDZSaH.jpg + FaceURL: https://i.imgur.com/HeXPn0b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"78649ed4-67a4-4a8c-98e5-fa2932950b95","type":"Agenda","class":"Mythos","doomThreshold":8}' + GUID: c7c1af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Hunt Begins + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -2.725 + posY: 1.676 + posZ: 0.373 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '2942': + BackIsHidden: true + BackURL: https://i.imgur.com/OYNKAAA.jpg + FaceURL: https://i.imgur.com/QfbNrah.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '2943': + BackIsHidden: true + BackURL: https://i.imgur.com/w6jIO0U.jpg + FaceURL: https://i.imgur.com/mZzW74R.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3192': + BackIsHidden: true + BackURL: https://i.imgur.com/0vDZSaH.jpg + FaceURL: https://i.imgur.com/HeXPn0b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +DeckIDs: +- 294200 +- 294300 +- 319200 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 87cb2b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: -2.73 + posY: 1.62 + posZ: 0.37 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Deck Encounter Deck 34612f.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Deck Encounter Deck 34612f.yaml new file mode 100644 index 000000000..b2a92fd71 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Deck Encounter Deck 34612f.yaml @@ -0,0 +1,1032 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 293800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2938': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/VTGJS44.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cd1209d0-57f3-4405-a0bc-64d779d11d7e","type":"Treachery","class":"Mythos","traits":"Omen"}' + GUID: aff404 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rude Awakening + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 8.129 + posY: 2.505 + posZ: -22.703 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 293800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2938': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/VTGJS44.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cd1209d0-57f3-4405-a0bc-64d779d11d7e","type":"Treachery","class":"Mythos","traits":"Omen"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rude Awakening + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 8.065 + posY: 3.291 + posZ: -23.43 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 293800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2938': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/VTGJS44.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cd1209d0-57f3-4405-a0bc-64d779d11d7e","type":"Treachery","class":"Mythos","traits":"Omen"}' + GUID: 785ba7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rude Awakening + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -3.929 + posY: 1.932 + posZ: 5.754 + rotX: 0.0 + rotY: 270.0 + rotZ: 188.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 111600 + CustomDeck: + '1116': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bLF5Msv/4f36dffe3927.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cc00e3df-f03e-42d7-aea1-18dafb09ad61"}' + GUID: e00091 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Slake the Thirst + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 111500 + CustomDeck: + '1115': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bLF5Msv/4f36dffe3927.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cc00e3df-f03e-42d7-aea1-18dafb09ad61"}' + GUID: e00090 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Slake the Thirst + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 127000 + CustomDeck: + '1270': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/WczXLXN/d7eb63c8f3c7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"438dde80-35d8-4035-957c-2b7099e5464d"}' + GUID: e00159 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Affliction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 127100 + CustomDeck: + '1271': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/WczXLXN/d7eb63c8f3c7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"438dde80-35d8-4035-957c-2b7099e5464d"}' + GUID: e0015a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Affliction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 127300 + CustomDeck: + '1273': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/GdLvSf5/e7160883f03e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0d847aa7-553d-4d75-a0c6-2fc3ab1cfa50"}' + GUID: e0015c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dreadful Effigy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 117500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1175': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/jz0S4m3/40ff235a9e5b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d3c95a7d-49ce-459e-ba14-1fc950dc0fc6"}' + GUID: e000dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Uncontrolled Fire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.591 + posY: 1.317 + posZ: 53.918 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 117700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1177': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/jz0S4m3/40ff235a9e5b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d3c95a7d-49ce-459e-ba14-1fc950dc0fc6"}' + GUID: e000de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Uncontrolled Fire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.335 + posY: 1.275 + posZ: 53.821 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 127400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1274': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/16KQVVc/895e9e38867b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"be3ec7a9-e02f-485b-a105-223ef523baeb"}' + GUID: e0015d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yharnam Hospitality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.947 + posY: 2.505 + posZ: -19.576 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 127400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1274': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/16KQVVc/895e9e38867b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"be3ec7a9-e02f-485b-a105-223ef523baeb"}' + GUID: f5345d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yharnam Hospitality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.895 + posY: 2.505 + posZ: -20.947 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 127500 + CustomDeck: + '1275': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/16KQVVc/895e9e38867b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"be3ec7a9-e02f-485b-a105-223ef523baeb"}' + GUID: e0015e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yharnam Hospitality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 292600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2926': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/30Wfqi1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7c052ecf-5f5a-436b-b895-dda1c32e9a50","type":"Treachery","class":"Mythos","traits":"Hex"}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Sweet Stench + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -5.635 + posY: 2.505 + posZ: -20.021 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 293000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2930': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/30Wfqi1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7c052ecf-5f5a-436b-b895-dda1c32e9a50","type":"Treachery","class":"Mythos","traits":"Hex"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Sweet Stench + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -5.214 + posY: 3.054 + posZ: -25.62 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 293100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2931': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xG2slZv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7160d7ba-a2b5-474c-af61-ebdb4b2de179","type":"Treachery","class":"Mythos","traits":"Madness. + Curse"}' + GUID: 6498f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Drunk + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -5.502 + posY: 2.807 + posZ: -17.154 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 292700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2927': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xG2slZv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7160d7ba-a2b5-474c-af61-ebdb4b2de179","type":"Treachery","class":"Mythos","traits":"Madness. + Curse"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Drunk + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -7.012 + posY: 2.634 + posZ: -12.445 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1115': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bLF5Msv/4f36dffe3927.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1116': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bLF5Msv/4f36dffe3927.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1175': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/jz0S4m3/40ff235a9e5b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1177': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/jz0S4m3/40ff235a9e5b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1270': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/WczXLXN/d7eb63c8f3c7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1271': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/WczXLXN/d7eb63c8f3c7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1273': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/GdLvSf5/e7160883f03e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1274': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/16KQVVc/895e9e38867b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1275': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/16KQVVc/895e9e38867b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2926': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/30Wfqi1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2927': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xG2slZv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2930': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/30Wfqi1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2931': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xG2slZv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2938': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/VTGJS44.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 293800 +- 293800 +- 293800 +- 111600 +- 111500 +- 127000 +- 127100 +- 127300 +- 117500 +- 117700 +- 127400 +- 127400 +- 127500 +- 292600 +- 293000 +- 293100 +- 292700 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 34612f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.93 + posY: 1.69 + posZ: 5.76 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Deck Guidance (The Hunter's Workshop) e00007.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Deck Guidance (The Hunter's Workshop) e00007.yaml new file mode 100644 index 000000000..22926c261 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Deck Guidance (The Hunter's Workshop) e00007.yaml @@ -0,0 +1,403 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 283200 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/RotvAPM.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Token of Kinship + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"22075784-f723-4841-91fa-b44a3153b266"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lumenflower Keepsake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 282500 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/cWAqC7B.jpg + FaceURL: https://i.imgur.com/gE19zG1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a1184a98-7b0e-4f36-b852-9c1b51e69709"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gatekeeper Messengers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 283400 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/Jf1u6k6.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Sanguine Sidearm + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cec05fd9-1dc4-48f8-9a01-56a17b03f091"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunting Pistol + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 319400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/PPkERqv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Vestiges of a Grander Purpose + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f79257de-464a-41d6-a7cf-8858ea897b69","type":"Asset","class":"Neutral","traits":"Item. + Relic. Occult","intellectIcons":2,"cost":3}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Madman's Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: -7.981 + posY: 2.607 + posZ: -4.973 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/s0i98vG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Legacy of the Old Hunters + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f170e4e5-9ed4-477e-94a2-626761e56917","type":"Asset","class":"Neutral","traits":"Ritual","agilityIcons":1,"wildIcons":1,"cost":3}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Art of Quickening + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: -2.548 + posY: 2.505 + posZ: -45.731 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/iBYSGpp.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Symbol of The Hunt + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"277addcb-433c-416a-a616-06765c14ab0b","type":"Asset","class":"Neutral","traits":"Item. + Melee. Weapon","fightIcons":1,"wildIcons":1,"cost":4}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Saw Cleaver + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: -9.214 + posY: 2.505 + posZ: -37.346 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/iBYSGpp.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/s0i98vG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2825': + BackIsHidden: true + BackURL: https://i.imgur.com/cWAqC7B.jpg + FaceURL: https://i.imgur.com/gE19zG1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '2832': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/RotvAPM.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2834': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/Jf1u6k6.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3194': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/PPkERqv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 283200 +- 282500 +- 283400 +- 319400 +- 100500 +- 100400 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e00007 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Guidance (The Hunter's Workshop) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.69 + posY: 1.57 + posZ: 8.92 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Notecard Act Instructions 756370.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Notecard Act Instructions 756370.yaml new file mode 100644 index 000000000..dbda2017e --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 1 The Hunt Begins dc507f/Notecard Act Instructions 756370.yaml @@ -0,0 +1,40 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: Choose 1 random act deck +DragSelectable: true +GMNotes: '' +GUID: '756370' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Notecard +Nickname: Act Instructions +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.58 + posY: 1.59 + posZ: -10.1 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf.ttslua new file mode 100644 index 000000000..d3a91c848 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf.ttslua @@ -0,0 +1,503 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + +function onload(saved_data) + fresh = true + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + moveList = {} + moveGuid = nil + + if next(memoryList) == nil then + createSetupButton() + else + fresh = false + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects(move) + local howManyButtons = 0 + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + 2 + objPos.z = objPos.z * globalScaleFactor * 0.9 + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=500, width=500, + color=color, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons(move) + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} + local color = {0,1,0,0.6} + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + theList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end + self.editButton({index=index, color=color}) + theList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + moveList = {} + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil +end + +--Saves selections +function buttonClick_submit() + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + memoryListBackup[guid] = nil + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +--Resets bag to starting status +function buttonClick_reset() + fresh = true + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end + local deltaPos = {} + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + yOffset + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf.yaml new file mode 100644 index 000000000..38b21e951 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf.yaml @@ -0,0 +1,106 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +AttachedDecals: +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ + Name: dunwich_back + Size: 7.4 + Transform: + posX: -0.0021877822 + posY: -0.08963572 + posZ: -0.00288731651 + rotX: 270.0 + rotY: 359.869568 + rotZ: 0.0 + scaleX: 2.00000215 + scaleY: 2.00000238 + scaleZ: 2.00000262 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Safeguarding the Enclave + 1e2db6.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Fear the Old Blood 8cf744.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Chapel Transept 06973a.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 1 Recognition 05db43.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Custom_Model_Bag Set-aside + 3cdd4e.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 2+ Recognition 3e465b.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Deck Bystanders 5e9e1b.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Chapel Sanctuary 7116a6.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Chapel Rectory 7a9f33.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card West Graveyard 9a0c9d.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Deck aeb9c6.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 0 Recognition d14543.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card North Graveyard d2c057.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Chapel Attic e00001.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Alfred Wheeler e00002.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card The Battle for Oedon + Chapel e00003.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card East Graveyard e00004.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Chapel Nave e00005.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Djura Mysliwiec e00006.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Eileen MacRoe e0000b.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Dr. Cecily Jossef e00011.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Sgt. Walter Garnett + e00026.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Yamamura Isao e0002b.yaml' +- !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf/Notecard Encounter Deck Setup + Instructions fab970.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: https://i.imgur.com/cd8W2sl.jpg + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: 'Bloodborne: City of the Unseen' +DragSelectable: true +GMNotes: '' +GUID: 022ddf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model_Bag 2 Fear the Old Blood 022ddf.ttslua' +LuaScriptState: '{"ml":{"05db43":{"lock":false,"pos":{"x":-14.6862955093384,"y":1.33496677875519,"z":12.4672021865845},"rot":{"x":3.8841850624749E-08,"y":89.9979629516602,"z":-3.88519902116968E-06}},"06973a":{"lock":false,"pos":{"x":-30.2412490844727,"y":1.53350043296814,"z":7.65002393722534},"rot":{"x":0.00182421249337494,"y":269.988433837891,"z":359.991973876953}},"1e2db6":{"lock":false,"pos":{"x":-22.0855,"y":1.5336,"z":14.2927},"rot":{"x":0,"y":270.005,"z":0}},"3cdd4e":{"lock":false,"pos":{"x":1.69640100002289,"y":1.55803620815277,"z":14.2789030075073},"rot":{"x":4.72932651973679E-06,"y":224.999099731445,"z":-2.11069149713694E-07}},"3e465b":{"lock":false,"pos":{"x":-14.4301891326904,"y":1.33496618270874,"z":7.70630550384521},"rot":{"x":-3.10102933553935E-07,"y":89.9989547729492,"z":5.95458175212116E-07}},"5e9e1b":{"lock":false,"pos":{"x":-5.88192844390869,"y":1.62800097465515,"z":15.2972850799561},"rot":{"x":-3.18901044238373E-07,"y":269.993804931641,"z":-4.01670291694245E-07}},"7116a6":{"lock":false,"pos":{"x":-30.2399997711182,"y":1.53347635269165,"z":-2.00377962755738E-05},"rot":{"x":0.0018622858915478,"y":270.000122070313,"z":359.990661621094}},"7a9f33":{"lock":false,"pos":{"x":-30.2399978637695,"y":1.53347635269165,"z":-7.65006494522095},"rot":{"x":0.00186216621659696,"y":270.000122070313,"z":359.990661621094}},"8cf744":{"lock":false,"pos":{"x":-3.85000038146973,"y":1.59660506248474,"z":-10.3880014419556},"rot":{"x":2.51194745004568E-08,"y":270,"z":3.80273146305399E-09}},"9a0c9d":{"lock":false,"pos":{"x":-30.2399997711182,"y":1.53360486030579,"z":15.3000831604004},"rot":{"x":-1.12557145826031E-08,"y":269.999664306641,"z":5.56306645194127E-08}},"aeb818":{"lock":false,"pos":{"x":-3.9562,"y":1.5966,"z":-10.4419},"rot":{"x":0,"y":270.0008,"z":0}},"aeb9c6":{"lock":false,"pos":{"x":-2.72511053085327,"y":1.61837291717529,"z":0.373000770807266},"rot":{"x":2.08540509305521E-08,"y":270,"z":-2.62249209015408E-08}},"d14543":{"lock":false,"pos":{"x":-14.4568948745728,"y":1.33496558666229,"z":16.2096042633057},"rot":{"x":-1.91241861102753E-06,"y":90.0034790039063,"z":-3.7237173273752E-06}},"d2c057":{"lock":false,"pos":{"x":-17.0399417877197,"y":1.53360486030579,"z":6.47972910883254E-07},"rot":{"x":-3.84250178342427E-08,"y":270.000030517578,"z":1.28899287688E-07}},"e00001":{"lock":false,"pos":{"x":-23.6399574279785,"y":1.53321528434753,"z":-1.07233372546034E-05},"rot":{"x":0.00431961193680763,"y":270.000305175781,"z":359.973541259766}},"e00002":{"lock":false,"pos":{"x":-17.1192359924316,"y":1.53360486030579,"z":-15.2809839248657},"rot":{"x":-4.55601201210243E-09,"y":269.998870849609,"z":-2.45791542674567E-09}},"e00003":{"lock":false,"pos":{"x":-2.68900489807129,"y":1.59660506248474,"z":-5.0491304397583},"rot":{"x":5.79857761806579E-08,"y":270,"z":-1.06946462796742E-09}},"e00004":{"lock":false,"pos":{"x":-30.2400016784668,"y":1.53360486030579,"z":-15.3000831604004},"rot":{"x":-1.999813425968E-09,"y":269.999847412109,"z":3.71258614961789E-08}},"e00005":{"lock":false,"pos":{"x":-36.8400230407715,"y":1.53347623348236,"z":-2.71572771453066E-05},"rot":{"x":0.00186312419828027,"y":269.998138427734,"z":359.990661621094}},"e00006":{"lock":false,"pos":{"x":-13.2069177627563,"y":1.53360486030579,"z":-15.3118848800659},"rot":{"x":-3.73313753243565E-08,"y":270.001831054688,"z":-1.39309662472442E-07}},"e00008":{"lock":false,"pos":{"x":-30.24,"y":1.5336,"z":7.65},"rot":{"x":0,"y":269.9999,"z":0}},"e0000b":{"lock":false,"pos":{"x":-13.2069158554077,"y":1.53360486030579,"z":-11.5417737960815},"rot":{"x":-2.12148911771237E-08,"y":270.000732421875,"z":1.98339122903235E-09}},"e00011":{"lock":false,"pos":{"x":-13.2069177627563,"y":1.53360486030579,"z":-7.73154544830322},"rot":{"x":4.03878956944936E-08,"y":270.000854492188,"z":-2.00083452028821E-08}},"e00026":{"lock":false,"pos":{"x":-17.1193466186523,"y":1.53360486030579,"z":-11.5108699798584},"rot":{"x":4.71303032156811E-08,"y":269.99951171875,"z":9.49408445194422E-08}},"e0002b":{"lock":false,"pos":{"x":-17.1194458007813,"y":1.53360486030579,"z":-7.70064544677734},"rot":{"x":-6.03502625651231E-09,"y":269.996520996094,"z":-1.32124299057068E-07}},"fab970":{"lock":false,"pos":{"x":-11.2085962295532,"y":1.58999991416931,"z":11.5380020141602},"rot":{"x":9.31528365555323E-09,"y":89.9821014404297,"z":2.21470042305327E-08}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '2: Fear the Old Blood' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.72 + posY: 1.48 + posZ: 21.29 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 0 Recognition d14543.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 0 Recognition d14543.ttslua new file mode 100644 index 000000000..baa7b8b87 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 0 Recognition d14543.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1.25 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + objPos.z = objPos.z * globalScaleFactor + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + memoryList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + end +end + +--Resets bag to starting status +function buttonClick_reset() + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 0 Recognition d14543.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 0 Recognition d14543.yaml new file mode 100644 index 000000000..52041daa9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 0 Recognition d14543.yaml @@ -0,0 +1,2271 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 118700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1187': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/p2xXHWh/6e502219f933.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7c44db37-bb79-4615-89d6-ca13616a333e"}' + GUID: bc8c57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beast-Possessed Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.031 + posY: 2.032 + posZ: 14.071 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 118700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1187': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/p2xXHWh/6e502219f933.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7c44db37-bb79-4615-89d6-ca13616a333e"}' + GUID: e000ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beast-Possessed Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.11 + posY: 2.027 + posZ: 14.3 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 300700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/PxCY2gy.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"18ade646-2ea5-4a8b-ba96-bed854d3c3cf"}' + GUID: e0000a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge Beast Alpha + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.279 + posY: 1.523 + posZ: 23.889 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 282900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2829': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/PxCY2gy.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"18ade646-2ea5-4a8b-ba96-bed854d3c3cf"}' + GUID: c5b13c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge Beast Alpha + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.354 + posY: 1.566 + posZ: 24.096 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 300800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/PxCY2gy.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"18ade646-2ea5-4a8b-ba96-bed854d3c3cf"}' + GUID: e00009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge Beast Alpha + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.481 + posY: 1.6 + posZ: 23.541 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2715': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/GsJHwYx/18fc2fa67942.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8c607cbe-9857-4c1d-8d4f-95d97d896210"}' + GUID: a8c958 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Abandon Faith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.101 + posY: 1.484 + posZ: -26.243 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2717': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/GsJHwYx/18fc2fa67942.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8c607cbe-9857-4c1d-8d4f-95d97d896210"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Abandon Faith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.339 + posY: 1.526 + posZ: -26.062 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/rwkLSPJ/fe5f501deb4f.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cde29ecc-c830-4fbd-9f3f-96ee0edb4df1"}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Baptism of Fire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.094 + posY: 1.49 + posZ: -21.646 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 272300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2723': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/rwkLSPJ/fe5f501deb4f.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cde29ecc-c830-4fbd-9f3f-96ee0edb4df1"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Baptism of Fire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.598 + posY: 1.532 + posZ: -21.356 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 111500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1115': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bLF5Msv/4f36dffe3927.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cc00e3df-f03e-42d7-aea1-18dafb09ad61"}' + GUID: e00090 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Slake the Thirst + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.27 + posY: 1.567 + posZ: 23.999 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 111600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1116': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bLF5Msv/4f36dffe3927.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cc00e3df-f03e-42d7-aea1-18dafb09ad61"}' + GUID: e00091 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Slake the Thirst + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.27 + posY: 1.576 + posZ: 23.999 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 274800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/5WQFY6j/549c448538e9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"77e60827-d242-4313-9d8c-60e3a55035c5"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.27 + posY: 1.608 + posZ: 33.649 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 274800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2748': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/5WQFY6j/549c448538e9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"77e60827-d242-4313-9d8c-60e3a55035c5"}' + GUID: 939fff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.504 + posY: 2.613 + posZ: -30.066 + rotX: 0.0 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 274800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2748': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/5WQFY6j/549c448538e9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"77e60827-d242-4313-9d8c-60e3a55035c5"}' + GUID: 60d005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.201 + posY: 2.613 + posZ: -28.226 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 275000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bQwc6tB/bfdab966d856.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9754dcfd-6b1f-400e-9239-b18042fe6ffe"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Blood Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.27 + posY: 1.65 + posZ: 33.649 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 300900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bQwc6tB/bfdab966d856.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9754dcfd-6b1f-400e-9239-b18042fe6ffe"}' + GUID: 1526aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Blood Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.27 + posY: 1.66 + posZ: 33.649 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 275100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2751': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bQwc6tB/bfdab966d856.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9754dcfd-6b1f-400e-9239-b18042fe6ffe"}' + GUID: f424a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Blood Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.436 + posY: 2.651 + posZ: -6.946 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 275100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2751': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bQwc6tB/bfdab966d856.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9754dcfd-6b1f-400e-9239-b18042fe6ffe"}' + GUID: 828f86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Blood Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.305 + posY: 2.651 + posZ: -7.912 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 118600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1186': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/p2xXHWh/6e502219f933.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7c44db37-bb79-4615-89d6-ca13616a333e"}' + GUID: e000e9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beast-Possessed Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.27 + posY: 1.724 + posZ: 33.649 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 118500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1185': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/p2xXHWh/6e502219f933.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7c44db37-bb79-4615-89d6-ca13616a333e"}' + GUID: e000e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beast-Possessed Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.27 + posY: 1.733 + posZ: 33.649 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291200 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZQ61we4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7aff5f49-a7d4-4ae8-ad2d-578deedc4ee6"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Breached! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291000 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZQ61we4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7aff5f49-a7d4-4ae8-ad2d-578deedc4ee6"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Breached! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291100 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZQ61we4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7aff5f49-a7d4-4ae8-ad2d-578deedc4ee6"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Breached! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 299200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2992': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/30Wfqi1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7c052ecf-5f5a-436b-b895-dda1c32e9a50","type":"Treachery","class":"Mythos","traits":"Hex"}' + GUID: 5ad4cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Sweet Stench + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -22.056 + posY: 2.574 + posZ: 24.21 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 299100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2991': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/30Wfqi1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7c052ecf-5f5a-436b-b895-dda1c32e9a50","type":"Treachery","class":"Mythos","traits":"Hex"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Sweet Stench + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -23.05 + posY: 2.574 + posZ: 19.366 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 299400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2994': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xG2slZv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7160d7ba-a2b5-474c-af61-ebdb4b2de179","type":"Treachery","class":"Mythos","traits":"Madness. + Curse"}' + GUID: 89ab58 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Drunk + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -24.379 + posY: 2.574 + posZ: 22.215 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 299500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2995': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xG2slZv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7160d7ba-a2b5-474c-af61-ebdb4b2de179","type":"Treachery","class":"Mythos","traits":"Madness. + Curse"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Drunk + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -23.298 + posY: 2.574 + posZ: 18.889 + rotX: 0.0 + rotY: 1.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298900 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g8J5ZIu.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6a0610de-b6b3-4ebc-a889-6f0359516108","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Blood-Drenched Fate + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100200 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mxaG0a8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e90f42cd-2b61-4565-aaeb-7aa0abdb43af","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Mere Bad Dream + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2985': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/iZpmf7J.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c445523a-3c9a-4995-920a-665a0f44cfbc","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: a2231e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood Sacrifice + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -17.482 + posY: 2.574 + posZ: 20.894 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100300 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mxaG0a8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e90f42cd-2b61-4565-aaeb-7aa0abdb43af","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Mere Bad Dream + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100400 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mxaG0a8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e90f42cd-2b61-4565-aaeb-7aa0abdb43af","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Mere Bad Dream + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2986': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JWUsaTB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7d09ec62-5199-4245-a7f1-4f33ae9c662d","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: b2991d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Into Temptation + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -18.525 + posY: 2.574 + posZ: 23.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2987': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g8J5ZIu.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6a0610de-b6b3-4ebc-a889-6f0359516108","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: 609ca6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Blood-Drenched Fate + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -19.238 + posY: 2.574 + posZ: 21.671 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2988': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/iZpmf7J.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c445523a-3c9a-4995-920a-665a0f44cfbc","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: 474d05 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood Sacrifice + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -17.597 + posY: 2.592 + posZ: 20.355 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100800 + CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JWUsaTB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7d09ec62-5199-4245-a7f1-4f33ae9c662d","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: e00009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Into Temptation + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100900 + CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JWUsaTB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7d09ec62-5199-4245-a7f1-4f33ae9c662d","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: e0000a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Into Temptation + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mxaG0a8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mxaG0a8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mxaG0a8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JWUsaTB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JWUsaTB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1115': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bLF5Msv/4f36dffe3927.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1116': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bLF5Msv/4f36dffe3927.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1185': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/p2xXHWh/6e502219f933.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1186': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/p2xXHWh/6e502219f933.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1187': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/p2xXHWh/6e502219f933.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2715': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/GsJHwYx/18fc2fa67942.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2717': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/GsJHwYx/18fc2fa67942.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2723': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/rwkLSPJ/fe5f501deb4f.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2748': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/5WQFY6j/549c448538e9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2750': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bQwc6tB/bfdab966d856.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2751': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bQwc6tB/bfdab966d856.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2792': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/rwkLSPJ/fe5f501deb4f.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2829': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/PxCY2gy.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2910': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZQ61we4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2911': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZQ61we4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2912': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZQ61we4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2985': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/iZpmf7J.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2986': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JWUsaTB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2987': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g8J5ZIu.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2988': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/iZpmf7J.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2989': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g8J5ZIu.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2991': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/30Wfqi1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2992': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/30Wfqi1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2994': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xG2slZv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2995': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xG2slZv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3007': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/PxCY2gy.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3008': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/PxCY2gy.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bQwc6tB/bfdab966d856.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 118700 + - 118700 + - 300700 + - 282900 + - 300800 + - 271500 + - 271700 + - 279200 + - 272300 + - 111500 + - 111600 + - 274800 + - 274800 + - 274800 + - 275000 + - 300900 + - 275100 + - 275100 + - 118600 + - 118500 + - 291200 + - 291000 + - 291100 + - 299200 + - 299100 + - 299400 + - 299500 + - 298900 + - 100200 + - 298500 + - 100300 + - 100400 + - 298600 + - 298700 + - 298800 + - 100800 + - 100900 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a0f08a + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.512 + posY: 3.792 + posZ: 15.242 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d14543 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Bag 0 Recognition d14543.ttslua' +LuaScriptState: '{"ml":{"a0f08a":{"lock":false,"pos":{"x":-3.9277,"y":1.7636,"z":5.7572},"rot":{"x":359.9197,"y":269.9994,"z":180.0168}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 0 Recognition +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -14.46 + posY: 1.33 + posZ: 16.21 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 1 Recognition 05db43.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 1 Recognition 05db43.ttslua new file mode 100644 index 000000000..baa7b8b87 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 1 Recognition 05db43.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1.25 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + objPos.z = objPos.z * globalScaleFactor + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + memoryList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + end +end + +--Resets bag to starting status +function buttonClick_reset() + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 1 Recognition 05db43.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 1 Recognition 05db43.yaml new file mode 100644 index 000000000..be0892cd1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 1 Recognition 05db43.yaml @@ -0,0 +1,2379 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 273600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2736': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/mBcf9gy/3cf1e26f498a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9d27a6c8-2135-4feb-9356-1b0699ea56c3"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Crazed Hunting Hounds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.058 + posY: 2.316 + posZ: -23.702 + rotX: 0.0 + rotY: 270.0 + rotZ: 210.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 273800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2738': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/mBcf9gy/3cf1e26f498a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9d27a6c8-2135-4feb-9356-1b0699ea56c3"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Crazed Hunting Hounds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.668 + posY: 2.368 + posZ: -23.421 + rotX: 0.0 + rotY: 270.0 + rotZ: 154.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 273500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2735': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/mBcf9gy/3cf1e26f498a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9d27a6c8-2135-4feb-9356-1b0699ea56c3"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Crazed Hunting Hounds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.48 + posY: 1.89 + posZ: -23.229 + rotX: 0.0 + rotY: 270.0 + rotZ: 178.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 111500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1115': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bLF5Msv/4f36dffe3927.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cc00e3df-f03e-42d7-aea1-18dafb09ad61"}' + GUID: e00090 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Slake the Thirst + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.27 + posY: 1.567 + posZ: 23.999 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 111600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1116': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bLF5Msv/4f36dffe3927.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cc00e3df-f03e-42d7-aea1-18dafb09ad61"}' + GUID: e00091 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Slake the Thirst + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.27 + posY: 1.576 + posZ: 23.999 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2715': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/GsJHwYx/18fc2fa67942.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8c607cbe-9857-4c1d-8d4f-95d97d896210"}' + GUID: a8c958 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Abandon Faith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.101 + posY: 1.484 + posZ: -26.243 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2717': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/GsJHwYx/18fc2fa67942.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8c607cbe-9857-4c1d-8d4f-95d97d896210"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Abandon Faith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.143 + posY: 1.527 + posZ: -26.105 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 299400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2994': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xG2slZv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7160d7ba-a2b5-474c-af61-ebdb4b2de179","type":"Treachery","class":"Mythos","traits":"Madness. + Curse"}' + GUID: f01935 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Drunk + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -17.245 + posY: 2.544 + posZ: 16.338 + rotX: 0.0 + rotY: 1.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298100 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/s8rQxMN.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f2d24dbe-b2f1-4f43-99d8-edad9518ae54","type":"Treachery","class":"Mythos","traits":"Hazard. + Scheme"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: View-Halloo! + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298200 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/s8rQxMN.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f2d24dbe-b2f1-4f43-99d8-edad9518ae54","type":"Treachery","class":"Mythos","traits":"Hazard. + Scheme"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: View-Halloo! + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 303000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"abca5cb6-27e0-4f77-9227-16967d5fad5f","type":"Enemy","class":"Mythos","traits":"Humanoid. + Blood-Drunk"}' + GUID: 0d842a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunting Party + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -11.333 + posY: 2.574 + posZ: 19.189 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 303100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"abca5cb6-27e0-4f77-9227-16967d5fad5f","type":"Enemy","class":"Mythos","traits":"Humanoid. + Blood-Drunk"}' + GUID: a706fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunting Party + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -10.667 + posY: 2.749 + posZ: 17.538 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 302200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3022': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/YlSyYfe.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"17b2eaf8-6a04-4714-bb5f-a0cfba5dc532","type":"Enemy","class":"Mythos","traits":"Humanoid. + Blood-Drunk"}' + GUID: bfb693 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Claimed Huntsman + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -13.691 + posY: 2.573 + posZ: -25.673 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 302000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3020': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/YlSyYfe.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"17b2eaf8-6a04-4714-bb5f-a0cfba5dc532","type":"Enemy","class":"Mythos","traits":"Humanoid. + Blood-Drunk"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Claimed Huntsman + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -13.727 + posY: 2.624 + posZ: -24.97 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 302100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3021': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/YlSyYfe.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"17b2eaf8-6a04-4714-bb5f-a0cfba5dc532","type":"Enemy","class":"Mythos","traits":"Humanoid. + Blood-Drunk"}' + GUID: 75538e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Claimed Huntsman + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -11.91 + posY: 2.625 + posZ: -25.633 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2983': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"abca5cb6-27e0-4f77-9227-16967d5fad5f","type":"Enemy","class":"Mythos","traits":"Humanoid. + Blood-Drunk"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunting Party + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -10.265 + posY: 2.749 + posZ: 17.76 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 299500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2995': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xG2slZv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7160d7ba-a2b5-474c-af61-ebdb4b2de179","type":"Treachery","class":"Mythos","traits":"Madness. + Curse"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Drunk + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -21.482 + posY: 2.6 + posZ: 20.036 + rotX: 1.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2987': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g8J5ZIu.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6a0610de-b6b3-4ebc-a889-6f0359516108","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: db47d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Blood-Drenched Fate + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -22.826 + posY: 2.544 + posZ: 18.306 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291200 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZQ61we4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7aff5f49-a7d4-4ae8-ad2d-578deedc4ee6"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Breached! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291000 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZQ61we4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7aff5f49-a7d4-4ae8-ad2d-578deedc4ee6"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Breached! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291100 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZQ61we4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7aff5f49-a7d4-4ae8-ad2d-578deedc4ee6"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Breached! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2828': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/A9CqGqB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"abca7116-6adc-4ba4-b114-5fcd713b30f7"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Huntsman's Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.051 + posY: 2.63 + posZ: -3.158 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2989': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g8J5ZIu.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6a0610de-b6b3-4ebc-a889-6f0359516108","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Blood-Drenched Fate + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -23.023 + posY: 2.544 + posZ: 17.001 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 272300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2723': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/rwkLSPJ/fe5f501deb4f.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cde29ecc-c830-4fbd-9f3f-96ee0edb4df1"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Baptism of Fire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.54 + posY: 3.029 + posZ: -52.43 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/rwkLSPJ/fe5f501deb4f.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cde29ecc-c830-4fbd-9f3f-96ee0edb4df1"}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Baptism of Fire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.276 + posY: 2.443 + posZ: -54.61 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2828': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/A9CqGqB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"abca7116-6adc-4ba4-b114-5fcd713b30f7"}' + GUID: 92a50f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Huntsman's Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.749 + posY: 2.656 + posZ: -8.995 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2988': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/iZpmf7J.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c445523a-3c9a-4995-920a-665a0f44cfbc","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: 7b4502 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood Sacrifice + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -23.597 + posY: 2.544 + posZ: 18.141 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2985': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/iZpmf7J.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c445523a-3c9a-4995-920a-665a0f44cfbc","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: 6a3eff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood Sacrifice + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -22.413 + posY: 2.544 + posZ: 18.275 + rotX: 0.0 + rotY: 1.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2828': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/A9CqGqB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"abca7116-6adc-4ba4-b114-5fcd713b30f7"}' + GUID: f033b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Huntsman's Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.418 + posY: 2.669 + posZ: -10.615 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2828': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/A9CqGqB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"abca7116-6adc-4ba4-b114-5fcd713b30f7"}' + GUID: c180ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Huntsman's Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.752 + posY: 2.734 + posZ: -3.829 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 303200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mxaG0a8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e90f42cd-2b61-4565-aaeb-7aa0abdb43af","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Mere Bad Dream + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -23.4 + posY: 2.544 + posZ: 15.512 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 303300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mxaG0a8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e90f42cd-2b61-4565-aaeb-7aa0abdb43af","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Mere Bad Dream + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -22.824 + posY: 2.544 + posZ: 15.724 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 303400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mxaG0a8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e90f42cd-2b61-4565-aaeb-7aa0abdb43af","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Mere Bad Dream + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -23.378 + posY: 2.544 + posZ: 15.484 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2986': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JWUsaTB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7d09ec62-5199-4245-a7f1-4f33ae9c662d","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: b6b47f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Into Temptation + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -26.091 + posY: 2.574 + posZ: 18.765 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JWUsaTB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7d09ec62-5199-4245-a7f1-4f33ae9c662d","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: b8ec49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Into Temptation + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -24.774 + posY: 2.544 + posZ: 17.803 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JWUsaTB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7d09ec62-5199-4245-a7f1-4f33ae9c662d","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: e00009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Into Temptation + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -26.797 + posY: 2.544 + posZ: 15.923 + rotX: 0.0 + rotY: 1.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 299200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2992': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/30Wfqi1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7c052ecf-5f5a-436b-b895-dda1c32e9a50","type":"Treachery","class":"Mythos","traits":"Hex"}' + GUID: 65c7ab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Sweet Stench + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -29.759 + posY: 2.605 + posZ: 17.983 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 299100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2991': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/30Wfqi1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7c052ecf-5f5a-436b-b895-dda1c32e9a50","type":"Treachery","class":"Mythos","traits":"Hex"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Sweet Stench + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -29.161 + posY: 2.605 + posZ: 19.549 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JWUsaTB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JWUsaTB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1115': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bLF5Msv/4f36dffe3927.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1116': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bLF5Msv/4f36dffe3927.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2715': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/GsJHwYx/18fc2fa67942.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2717': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/GsJHwYx/18fc2fa67942.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2723': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/rwkLSPJ/fe5f501deb4f.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2735': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/mBcf9gy/3cf1e26f498a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2736': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/mBcf9gy/3cf1e26f498a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2738': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/mBcf9gy/3cf1e26f498a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2910': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZQ61we4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2911': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZQ61we4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2912': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZQ61we4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2913': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/A9CqGqB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2914': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/rwkLSPJ/fe5f501deb4f.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2981': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/s8rQxMN.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2982': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/s8rQxMN.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2983': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2985': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/iZpmf7J.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2986': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JWUsaTB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2987': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g8J5ZIu.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2988': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/iZpmf7J.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2989': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g8J5ZIu.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2991': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/30Wfqi1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2992': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/30Wfqi1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2994': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xG2slZv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2995': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xG2slZv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3020': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/YlSyYfe.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3021': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/YlSyYfe.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3022': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/YlSyYfe.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3030': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3031': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3032': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mxaG0a8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3033': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mxaG0a8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3034': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mxaG0a8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 273600 + - 273800 + - 273500 + - 111500 + - 111600 + - 271500 + - 271700 + - 299400 + - 298100 + - 298200 + - 303000 + - 303100 + - 302200 + - 302000 + - 302100 + - 298300 + - 299500 + - 298700 + - 291200 + - 291000 + - 291100 + - 291300 + - 298900 + - 272300 + - 291400 + - 291300 + - 298800 + - 298500 + - 291300 + - 291300 + - 303200 + - 303300 + - 303400 + - 298600 + - 100900 + - 100800 + - 299200 + - 299100 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 42d285 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.33 + posY: 3.803 + posZ: 12.063 + rotX: 0.0 + rotY: 270.0 + rotZ: 181.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 05db43 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Bag 1 Recognition 05db43.ttslua' +LuaScriptState: '{"ml":{"42d285":{"lock":false,"pos":{"x":-3.9274,"y":1.7733,"z":5.7572},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 1 Recognition +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -14.69 + posY: 1.33 + posZ: 12.47 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 2+ Recognition 3e465b.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 2+ Recognition 3e465b.ttslua new file mode 100644 index 000000000..baa7b8b87 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 2+ Recognition 3e465b.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1.25 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + objPos.z = objPos.z * globalScaleFactor + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + memoryList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + end +end + +--Resets bag to starting status +function buttonClick_reset() + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 2+ Recognition 3e465b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 2+ Recognition 3e465b.yaml new file mode 100644 index 000000000..f396a6f22 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Bag 2+ Recognition 3e465b.yaml @@ -0,0 +1,2368 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 321600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3216': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Lz2kTsq.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"22ebbe11-0a01-4d4c-8b90-bbf2382071a0","type":"Enemy","class":"Mythos","traits":"Humanoid. + Servitor. "}' + GUID: 098594 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Enraged Zealots + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.958 + posY: 2.014 + posZ: 31.577 + rotX: 0.0 + rotY: 270.0 + rotZ: 185.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 321600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3216': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Lz2kTsq.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"22ebbe11-0a01-4d4c-8b90-bbf2382071a0","type":"Enemy","class":"Mythos","traits":"Humanoid. + Servitor. "}' + GUID: 2d6d90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Enraged Zealots + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -10.345 + posY: 2.239 + posZ: 31.865 + rotX: 0.0 + rotY: 270.0 + rotZ: 151.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 321600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3216': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Lz2kTsq.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"22ebbe11-0a01-4d4c-8b90-bbf2382071a0","type":"Enemy","class":"Mythos","traits":"Humanoid. + Servitor. "}' + GUID: '569060' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Enraged Zealots + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -10.517 + posY: 1.907 + posZ: 30.842 + rotX: 0.0 + rotY: 270.0 + rotZ: 179.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 111500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1115': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bLF5Msv/4f36dffe3927.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cc00e3df-f03e-42d7-aea1-18dafb09ad61"}' + GUID: e00090 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Slake the Thirst + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.27 + posY: 1.859 + posZ: 23.999 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 111600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1116': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bLF5Msv/4f36dffe3927.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cc00e3df-f03e-42d7-aea1-18dafb09ad61"}' + GUID: e00091 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Slake the Thirst + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.27 + posY: 1.576 + posZ: 23.999 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2723': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/rwkLSPJ/fe5f501deb4f.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cde29ecc-c830-4fbd-9f3f-96ee0edb4df1"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Baptism of Fire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.181 + posY: 2.333 + posZ: -53.82 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2715': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/GsJHwYx/18fc2fa67942.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8c607cbe-9857-4c1d-8d4f-95d97d896210"}' + GUID: a8c958 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Abandon Faith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.587 + posY: 4.598 + posZ: -42.547 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2717': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/GsJHwYx/18fc2fa67942.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8c607cbe-9857-4c1d-8d4f-95d97d896210"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Abandon Faith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.51 + posY: 4.592 + posZ: -43.945 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2912': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZQ61we4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7aff5f49-a7d4-4ae8-ad2d-578deedc4ee6"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Breached! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.017 + posY: 2.634 + posZ: -8.959 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291000 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZQ61we4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7aff5f49-a7d4-4ae8-ad2d-578deedc4ee6"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Breached! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291100 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZQ61we4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7aff5f49-a7d4-4ae8-ad2d-578deedc4ee6"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Breached! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/btrMnnR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a1126fe7-9978-421b-a2e4-76a30dd7cb14"}' + GUID: b12c31 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Choir Intelligence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.595 + posY: 2.657 + posZ: -9.531 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/btrMnnR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a1126fe7-9978-421b-a2e4-76a30dd7cb14"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Choir Intelligence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.892 + posY: 2.676 + posZ: -9.315 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/btrMnnR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a1126fe7-9978-421b-a2e4-76a30dd7cb14"}' + GUID: c0633e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Choir Intelligence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.485 + posY: 2.751 + posZ: -5.251 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/rwkLSPJ/fe5f501deb4f.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cde29ecc-c830-4fbd-9f3f-96ee0edb4df1"}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Baptism of Fire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.767 + posY: 3.031 + posZ: -54.866 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 287700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2877': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/aO0xfC1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"449945d2-1153-4f36-8a8d-af899bb98487"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Penitence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.707 + posY: 2.626 + posZ: -29.438 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2912': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6ANHht.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"da3c5b39-1f2a-4163-83eb-0da05d5cb919"}' + GUID: fb0eab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pthumerian Doctor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.604 + posY: 2.622 + posZ: -31.043 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 274700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2747': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6ANHht.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"da3c5b39-1f2a-4163-83eb-0da05d5cb919"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pthumerian Doctor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.759 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 274200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6ANHht.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"da3c5b39-1f2a-4163-83eb-0da05d5cb919"}' + GUID: 3571fd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pthumerian Doctor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.746 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 357.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 287300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2873': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/aO0xfC1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"449945d2-1153-4f36-8a8d-af899bb98487"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Penitence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.595 + posY: 3.51 + posZ: -36.897 + rotX: 0.0 + rotY: 179.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 274600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2746': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/L8KsKAv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"69c017e3-ccfe-4598-a1d0-db95dcd6c60e"}' + GUID: 7a1935 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Church Behemoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.718 + posZ: -0.031 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 274400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/TSDgFMp.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ec9cf048-fb92-4708-9679-16db60831f19"}' + GUID: db44de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Canonization + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.738 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 274500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2745': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/TSDgFMp.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ec9cf048-fb92-4708-9679-16db60831f19"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Canonization + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.732 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 299500 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xG2slZv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7160d7ba-a2b5-474c-af61-ebdb4b2de179","type":"Treachery","class":"Mythos","traits":"Madness. + Curse"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Drunk + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 299400 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xG2slZv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7160d7ba-a2b5-474c-af61-ebdb4b2de179","type":"Treachery","class":"Mythos","traits":"Madness. + Curse"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Drunk + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 299000 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bLF5Msv/4f36dffe3927.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cc00e3df-f03e-42d7-aea1-18dafb09ad61","type":"Treachery","class":"Mythos","traits":"Madness"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Slake the Thirst + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 299300 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bLF5Msv/4f36dffe3927.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cc00e3df-f03e-42d7-aea1-18dafb09ad61","type":"Treachery","class":"Mythos","traits":"Madness"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Slake the Thirst + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 299100 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/30Wfqi1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7c052ecf-5f5a-436b-b895-dda1c32e9a50","type":"Treachery","class":"Mythos","traits":"Hex"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Sweet Stench + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 299200 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/30Wfqi1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7c052ecf-5f5a-436b-b895-dda1c32e9a50","type":"Treachery","class":"Mythos","traits":"Hex"}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Sweet Stench + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298900 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g8J5ZIu.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6a0610de-b6b3-4ebc-a889-6f0359516108","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Blood-Drenched Fate + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298700 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g8J5ZIu.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6a0610de-b6b3-4ebc-a889-6f0359516108","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Blood-Drenched Fate + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 320300 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mxaG0a8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e90f42cd-2b61-4565-aaeb-7aa0abdb43af","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Mere Bad Dream + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 320400 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mxaG0a8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e90f42cd-2b61-4565-aaeb-7aa0abdb43af","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Mere Bad Dream + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 320500 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mxaG0a8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e90f42cd-2b61-4565-aaeb-7aa0abdb43af","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Mere Bad Dream + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298800 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/iZpmf7J.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c445523a-3c9a-4995-920a-665a0f44cfbc","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood Sacrifice + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298500 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/iZpmf7J.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c445523a-3c9a-4995-920a-665a0f44cfbc","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood Sacrifice + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298600 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JWUsaTB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7d09ec62-5199-4245-a7f1-4f33ae9c662d","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Into Temptation + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100800 + CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JWUsaTB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7d09ec62-5199-4245-a7f1-4f33ae9c662d","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: e00009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Into Temptation + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100900 + CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JWUsaTB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7d09ec62-5199-4245-a7f1-4f33ae9c662d","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: e0000a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Into Temptation + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JWUsaTB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JWUsaTB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1115': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bLF5Msv/4f36dffe3927.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1116': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bLF5Msv/4f36dffe3927.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2717': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/GsJHwYx/18fc2fa67942.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6ANHht.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2744': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/TSDgFMp.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2745': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/TSDgFMp.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2746': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/L8KsKAv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2747': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6ANHht.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2792': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/rwkLSPJ/fe5f501deb4f.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2873': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/aO0xfC1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2877': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/aO0xfC1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2910': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZQ61we4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2911': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZQ61we4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2912': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZQ61we4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2913': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/rwkLSPJ/fe5f501deb4f.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2914': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/GsJHwYx/18fc2fa67942.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/btrMnnR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2918': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6ANHht.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2985': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/iZpmf7J.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2986': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JWUsaTB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2987': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g8J5ZIu.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2988': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/iZpmf7J.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2989': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g8J5ZIu.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2990': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bLF5Msv/4f36dffe3927.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2991': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/30Wfqi1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2992': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/30Wfqi1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2993': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bLF5Msv/4f36dffe3927.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2994': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xG2slZv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2995': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xG2slZv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3203': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mxaG0a8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3204': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mxaG0a8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3205': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mxaG0a8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3216': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Lz2kTsq.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 321600 + - 321600 + - 321600 + - 111500 + - 111600 + - 291300 + - 291400 + - 271700 + - 291200 + - 291000 + - 291100 + - 291500 + - 291500 + - 291500 + - 279200 + - 287700 + - 291800 + - 274700 + - 274200 + - 287300 + - 274600 + - 274400 + - 274500 + - 299500 + - 299400 + - 299000 + - 299300 + - 299100 + - 299200 + - 298900 + - 298700 + - 320300 + - 320400 + - 320500 + - 298800 + - 298500 + - 298600 + - 100800 + - 100900 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: aa8da6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.869 + posY: 3.806 + posZ: 8.2 + rotX: 0.0 + rotY: 270.0 + rotZ: 179.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3e465b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Bag 2+ Recognition 3e465b.ttslua' +LuaScriptState: '{"ml":{"aa8da6":{"lock":false,"pos":{"x":-3.9275,"y":1.7684,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 2+ Recognition +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -14.43 + posY: 1.33 + posZ: 7.71 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Alfred Wheeler e00002.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Alfred Wheeler e00002.yaml new file mode 100644 index 000000000..7c10eee6d --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Alfred Wheeler e00002.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100100 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/zT66HcP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: A Fellow Hunter +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"03bb9923-8ff4-4da9-9351-e0fba719bb9a","type":"Asset","class":"Neutral","traits":"Ally. + Believer. Student","fightIcons":1,"willpowerIcons":1,"wildIcons":1,"cost":3}' +GUID: e00002 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Alfred Wheeler +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Asset +- PlayerCard +Tooltip: true +Transform: + posX: -17.12 + posY: 1.53 + posZ: -15.28 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Chapel Attic e00001.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Chapel Attic e00001.yaml new file mode 100644 index 000000000..281a4e68c --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Chapel Attic e00001.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 304700 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3047': + BackIsHidden: true + BackURL: https://i.imgur.com/e5vnALp.jpg + FaceURL: https://i.imgur.com/UEmrMZk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"6a9da2ed-1b8b-42c9-8867-e57ad8f2df9d","type":"Location","class":"Mythos","traits":"Chapel","locationFront":{"icons":"Hourglass","connections":"Circle|Cross","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"Hourglass","connections":"Circle|Cross"}}' +GUID: e00001 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Chapel Attic +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -23.64 + posY: 1.53 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Chapel Nave e00005.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Chapel Nave e00005.yaml new file mode 100644 index 000000000..2a3f18044 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Chapel Nave e00005.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.ibb.co/s1ppvyL/335e07a5df9c.jpg + FaceURL: https://i.ibb.co/86pYTzc/75570ffc8f8a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"987d30f9-fd98-4f6a-b401-71e1075dcb88","type":"Location","class":"Mythos","traits":"Chapel","locationFront":{"icons":"Diamond","connections":"Square|Triangle|Cross","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"Diamond","connections":"Square|Triangle|Cross"}}' +GUID: e00005 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Chapel Nave +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -36.84 + posY: 1.53 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Chapel Rectory 7a9f33.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Chapel Rectory 7a9f33.yaml new file mode 100644 index 000000000..8914071a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Chapel Rectory 7a9f33.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100500 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/uiCRNS0.jpg + FaceURL: https://i.imgur.com/TUcdL3Z.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: Fr. Michael's Quarters +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"1e29217e-896d-48fe-9302-db9db6465893","type":"Location","class":"Mythos","traits":"Chapel","locationFront":{"icons":"Slash","connections":"Triangle|Cross","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Slash","connections":"Triangle|Cross"}}' +GUID: 7a9f33 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Chapel Rectory +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -30.24 + posY: 1.53 + posZ: -7.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Chapel Sanctuary 7116a6.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Chapel Sanctuary 7116a6.yaml new file mode 100644 index 000000000..31553a083 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Chapel Sanctuary 7116a6.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 305000 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3050': + BackIsHidden: true + BackURL: https://i.imgur.com/8vBAJyv.jpg + FaceURL: https://i.imgur.com/Ucn37bI.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: Decadent Altar +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"7fad3346-4335-4287-99a9-21bb6efed69c","type":"Location","class":"Mythos","traits":"Chapel","locationFront":{"icons":"Cross","connections":"Diamond|Slash|T|Hourglass","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Cross","connections":"Diamond|Slash|T|Hourglass","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]}}' +GUID: 7116a6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Chapel Sanctuary +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -30.24 + posY: 1.53 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Chapel Transept 06973a.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Chapel Transept 06973a.yaml new file mode 100644 index 000000000..4e9f9f57b --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Chapel Transept 06973a.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100700 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/lNMmmKU.jpg + FaceURL: https://i.imgur.com/uG8mPua.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"5fb1984d-b6c4-4f93-bb4b-2d865a6d5054","type":"Location","class":"Mythos","traits":"Chapel","locationFront":{"icons":"T","connections":"Square|Cross","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"T","connections":"Square|Cross"}}' +GUID: 06973a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Chapel Transept +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -30.24 + posY: 1.53 + posZ: 7.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Djura Mysliwiec e00006.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Djura Mysliwiec e00006.yaml new file mode 100644 index 000000000..9315e4879 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Djura Mysliwiec e00006.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 271400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '2714': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.ibb.co/Qk4XTMg/3cb8a73464c3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Uncommonly Kind +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"d7139c2c-2e65-4f74-aafc-837e5f5af15b"}' +GUID: e00006 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Djura Mysliwiec +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.21 + posY: 1.53 + posZ: -15.31 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Dr. Cecily Jossef e00011.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Dr. Cecily Jossef e00011.yaml new file mode 100644 index 000000000..d7ff7cbc7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Dr. Cecily Jossef e00011.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101000 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1010': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.ibb.co/2gXWjsd/d5094fa3d759.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Right as Rain +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"d5da78ba-42a0-44cd-aa77-4c61b3135fd8"}' +GUID: e00011 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Dr. Cecily Jossef +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.21 + posY: 1.53 + posZ: -7.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card East Graveyard e00004.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card East Graveyard e00004.yaml new file mode 100644 index 000000000..a0e466598 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card East Graveyard e00004.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100300 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.ibb.co/3z8Ljgj/1625453c55e9.jpg + FaceURL: https://i.ibb.co/h9F0g3k/1752f2467459.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"837c2434-b55a-4877-9f14-4a85d6fbe68f","type":"Location","class":"Mythos","traits":"Graveyard","locationFront":{"icons":"Triangle","connections":"Diamond|Slash|Circle","uses":[{"token":"clue","type":"Clue","count":0}]},"locationBack":{"icons":"Triangle","connections":"Diamond|Slash|Circle"}}' +GUID: e00004 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: East Graveyard +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -30.24 + posY: 1.53 + posZ: -15.3 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Eileen MacRoe e0000b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Eileen MacRoe e0000b.yaml new file mode 100644 index 000000000..e7f7838c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Eileen MacRoe e0000b.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100600 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.ibb.co/fHzfDJ1/6cfcc6b1d5a2.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Hunter of Hunters +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"f859cc01-0312-4a30-aee3-9d5f896aea9c"}' +GUID: e0000b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Eileen MacRoe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.21 + posY: 1.53 + posZ: -11.54 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Fear the Old Blood 8cf744.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Fear the Old Blood 8cf744.yaml new file mode 100644 index 000000000..9d8d67afc --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Fear the Old Blood 8cf744.yaml @@ -0,0 +1,53 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 322000 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3220': + BackIsHidden: true + BackURL: https://i.imgur.com/4LZ8fH1.jpg + FaceURL: https://i.imgur.com/hLm8SYD.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"e72cb2c6-a4d4-4802-bf41-0ff42dcee899"}' +GUID: 8cf744 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Fear the Old Blood +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: -3.85 + posY: 1.6 + posZ: -10.39 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card North Graveyard d2c057.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card North Graveyard d2c057.yaml new file mode 100644 index 000000000..b73649fe5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card North Graveyard d2c057.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 304800 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3048': + BackIsHidden: true + BackURL: https://i.imgur.com/1ZbNXiv.jpg + FaceURL: https://i.imgur.com/oKF1TIo.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"0f674c54-9541-4aed-b1f5-678ac992e1ac","type":"Location","class":"Mythos","traits":"Graveyard","locationFront":{"icons":"Circle","connections":"Hourglass|Square|Triangle","uses":[{"token":"clue","type":"Clue","count":0}]},"locationBack":{"icons":"Circle","connections":"Hourglass|Square|Triangle"}}' +GUID: d2c057 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: North Graveyard +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -17.04 + posY: 1.53 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Safeguarding the Enclave 1e2db6.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Safeguarding the Enclave 1e2db6.yaml new file mode 100644 index 000000000..534ccf18a --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Safeguarding the Enclave 1e2db6.yaml @@ -0,0 +1,53 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 322100 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3221': + BackIsHidden: true + BackURL: https://i.imgur.com/NVSNvpT.jpg + FaceURL: https://i.imgur.com/ZGf0OBB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"e17759c4-cab0-42b2-a041-6994f88065e6"}' +GUID: 1e2db6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Safeguarding the Enclave +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: -22.09 + posY: 1.53 + posZ: 14.29 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.3 + scaleY: 1.0 + scaleZ: 2.3 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Sgt. Walter Garnett e00026.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Sgt. Walter Garnett e00026.yaml new file mode 100644 index 000000000..66c61690c --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Sgt. Walter Garnett e00026.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 282500 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '2825': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.ibb.co/M14n365/9fe366347490.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Proud Confederate +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"e516204a-3606-4110-93fb-ffbff18f6c38"}' +GUID: e00026 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Sgt. Walter Garnett +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.53 + posZ: -11.51 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card The Battle for Oedon Chapel e00003.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card The Battle for Oedon Chapel e00003.yaml new file mode 100644 index 000000000..b11ed822d --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card The Battle for Oedon Chapel e00003.yaml @@ -0,0 +1,53 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100200 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/OWCegnU.jpg + FaceURL: https://i.imgur.com/d3h8fKh.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"f198a508-6767-486d-a48b-1fb32d41ef08","type":"Act","class":"Mythos"}' +GUID: e00003 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Battle for Oedon Chapel +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: -2.69 + posY: 1.6 + posZ: -5.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card West Graveyard 9a0c9d.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card West Graveyard 9a0c9d.yaml new file mode 100644 index 000000000..983e95560 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card West Graveyard 9a0c9d.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 304900 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3049': + BackIsHidden: true + BackURL: https://i.imgur.com/DBTqMB8.jpg + FaceURL: https://i.imgur.com/nKibMrL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"f35b0ddc-f605-4a0f-ae4d-6955e99408e0","type":"Location","class":"Mythos","traits":"Graveyard","locationFront":{"icons":"Square","connections":"T|Diamond|Circle","uses":[{"token":"clue","type":"Clue","count":0}]},"locationBack":{"icons":"Square","connections":"T|Diamond|Circle"}}' +GUID: 9a0c9d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: West Graveyard +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -30.24 + posY: 1.53 + posZ: 15.3 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Yamamura Isao e0002b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Yamamura Isao e0002b.yaml new file mode 100644 index 000000000..fdd352e04 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Card Yamamura Isao e0002b.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 103000 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1030': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.ibb.co/VvxKj0b/56fcc4b78060.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: With Steady Stride +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"35ed5744-9ae9-44f3-95af-e980a2b8dc9a"}' +GUID: e0002b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Yamamura Isao +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.53 + posZ: -7.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Custom_Model_Bag Set-aside 3cdd4e.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Custom_Model_Bag Set-aside 3cdd4e.yaml new file mode 100644 index 000000000..ce22f9dbe --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Custom_Model_Bag Set-aside 3cdd4e.yaml @@ -0,0 +1,69 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.02149 + g: 0.00101 + r: 0.02149 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 3cdd4e/Card Sister Amelia e00009.yaml' +- !include 'Custom_Model_Bag Set-aside 3cdd4e/Card Fr. Michael Gascoigne 2172b4.yaml' +- !include 'Custom_Model_Bag Set-aside 3cdd4e/Deck d7c23f.yaml' +- !include 'Custom_Model_Bag Set-aside 3cdd4e/Deck dcff3b.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/ + MaterialIndex: 1 + MeshURL: http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/ + NormalURL: http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/ + TypeIndex: 6 +Description: Extracurricular Activity +DragSelectable: true +GMNotes: '' +GUID: 3cdd4e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Set-aside +PhysicsMaterial: + BounceCombine: 0 + Bounciness: 0.0 + DynamicFriction: 0.6 + FrictionCombine: 0 + StaticFriction: 0.6 +Rigidbody: + AngularDrag: 5.0 + Drag: 5.0 + Mass: 1.375 + UseGravity: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 1.56 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Custom_Model_Bag Set-aside 3cdd4e/Card Fr. Michael Gascoigne 2172b4.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Custom_Model_Bag Set-aside 3cdd4e/Card Fr. Michael Gascoigne 2172b4.yaml new file mode 100644 index 000000000..cff2fd804 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Custom_Model_Bag Set-aside 3cdd4e/Card Fr. Michael Gascoigne 2172b4.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100900 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/fGpSqFc/a844c021ba4a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Intoxicated by the Hunt +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"60ef5fbc-7961-4036-9dbb-fe253040abcd","type":"Enemy","victory":1,"class":"Mythos","traits":"Humanoid. + Blood-Drunk. Elite"}' +GUID: 2172b4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Fr. Michael Gascoigne +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: 0.23 + posY: 2.52 + posZ: -42.38 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Custom_Model_Bag Set-aside 3cdd4e/Card Sister Amelia e00009.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Custom_Model_Bag Set-aside 3cdd4e/Card Sister Amelia e00009.yaml new file mode 100644 index 000000000..868ec17e9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Custom_Model_Bag Set-aside 3cdd4e/Card Sister Amelia e00009.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100800 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/Dz884L1/209987b3b6c0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Claimed by the Old Blood +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"d6eb1541-242d-457c-badd-fe26badbc497","type":"Enemy","victory":1,"class":"Mythos","traits":"Humanoid. + Beast. Mutated. Elite"}' +GUID: e00009 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Sister Amelia +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: 3.33 + posY: 2.32 + posZ: -51.89 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Custom_Model_Bag Set-aside 3cdd4e/Deck d7c23f.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Custom_Model_Bag Set-aside 3cdd4e/Deck d7c23f.yaml new file mode 100644 index 000000000..7a901c1af --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Custom_Model_Bag Set-aside 3cdd4e/Deck d7c23f.yaml @@ -0,0 +1,408 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 103000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1030': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.ibb.co/VvxKj0b/56fcc4b78060.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: With Steady Stride + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"35ed5744-9ae9-44f3-95af-e980a2b8dc9a"}' + GUID: 5a385f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yamamura Isao + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.778 + posY: 2.015 + posZ: -17.663 + rotX: 7.0 + rotY: 272.0 + rotZ: 14.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/zT66HcP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: A Fellow Hunter + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"03bb9923-8ff4-4da9-9351-e0fba719bb9a","type":"Asset","class":"Neutral","traits":"Ally. + Believer. Student","fightIcons":1,"willpowerIcons":1,"wildIcons":1,"cost":3}' + GUID: fd9ee0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alfred Wheeler + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: -8.857 + posY: 1.698 + posZ: -16.343 + rotX: 5.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 282500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2825': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.ibb.co/M14n365/9fe366347490.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Proud Confederate + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e516204a-3606-4110-93fb-ffbff18f6c38"}' + GUID: b29840 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sgt. Walter Garnett + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.847 + posY: 1.684 + posZ: -16.867 + rotX: 5.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.ibb.co/fHzfDJ1/6cfcc6b1d5a2.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Hunter of Hunters + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f859cc01-0312-4a30-aee3-9d5f896aea9c"}' + GUID: 2296b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eileen MacRoe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.894 + posY: 1.824 + posZ: -18.511 + rotX: 356.0 + rotY: 269.0 + rotZ: 12.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1010': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.ibb.co/2gXWjsd/d5094fa3d759.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Right as Rain + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d5da78ba-42a0-44cd-aa77-4c61b3135fd8"}' + GUID: 4f2bdb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dr. Cecily Jossef + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.119 + posY: 1.702 + posZ: -16.486 + rotX: 6.0 + rotY: 269.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2714': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.ibb.co/Qk4XTMg/3cb8a73464c3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Uncommonly Kind + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d7139c2c-2e65-4f74-aafc-837e5f5af15b"}' + GUID: '784617' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Djura Mysliwiec + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.789 + posY: 1.707 + posZ: -16.766 + rotX: 354.0 + rotY: 271.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/zT66HcP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.ibb.co/fHzfDJ1/6cfcc6b1d5a2.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1010': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.ibb.co/2gXWjsd/d5094fa3d759.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1030': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.ibb.co/VvxKj0b/56fcc4b78060.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2714': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.ibb.co/Qk4XTMg/3cb8a73464c3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2825': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.ibb.co/M14n365/9fe366347490.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 103000 +- 100100 +- 282500 +- 100600 +- 101000 +- 271400 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d7c23f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69 + posY: 3.78 + posZ: 14.27 + rotX: 4.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Custom_Model_Bag Set-aside 3cdd4e/Deck dcff3b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Custom_Model_Bag Set-aside 3cdd4e/Deck dcff3b.yaml new file mode 100644 index 000000000..61dab719c --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Custom_Model_Bag Set-aside 3cdd4e/Deck dcff3b.yaml @@ -0,0 +1,556 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 303100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3031': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/H9QgVH1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b156bf9e-bd04-43eb-97ac-200732e35b26","type":"Treachery","class":"Mythos","traits":"Attack"}' + GUID: e0001b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vex and Smite + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.628 + posY: 1.495 + posZ: 24.897 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 303100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3031': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/H9QgVH1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b156bf9e-bd04-43eb-97ac-200732e35b26","type":"Treachery","class":"Mythos","traits":"Attack"}' + GUID: 53ed62 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vex and Smite + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.964 + posY: 2.505 + posZ: -29.993 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 303100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3031': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/H9QgVH1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b156bf9e-bd04-43eb-97ac-200732e35b26","type":"Treachery","class":"Mythos","traits":"Attack"}' + GUID: d52c9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vex and Smite + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.623 + posY: 2.505 + posZ: -32.054 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 303000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3030': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/flvCgd8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"79ffd116-b64a-4884-92fc-4397f03c12fb","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: 45bb79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fury Upon Sin + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.602 + posY: 1.571 + posZ: 24.766 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 303000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3030': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/flvCgd8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"79ffd116-b64a-4884-92fc-4397f03c12fb","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: b5faf7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fury Upon Sin + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.501 + posY: 1.58 + posZ: 25.221 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 303200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3032': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/XXJqao0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6b786afb-da81-4143-a881-67f7f4ccf8ef","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: c4d484 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blessed are the Meek + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -10.086 + posY: 1.59 + posZ: 25.231 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 303200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3032': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/XXJqao0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6b786afb-da81-4143-a881-67f7f4ccf8ef","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: 653c53 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blessed are the Meek + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.979 + posY: 1.6 + posZ: 24.354 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 303200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3032': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/XXJqao0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6b786afb-da81-4143-a881-67f7f4ccf8ef","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: 9da34b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blessed are the Meek + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.723 + posY: 1.609 + posZ: 25.26 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 303200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3032': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/XXJqao0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6b786afb-da81-4143-a881-67f7f4ccf8ef","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: ae7929 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blessed are the Meek + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.652 + posY: 1.619 + posZ: 24.796 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '3030': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/flvCgd8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3031': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/H9QgVH1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3032': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/XXJqao0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 303100 +- 303100 +- 303100 +- 303000 +- 303000 +- 303200 +- 303200 +- 303200 +- 303200 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: dcff3b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: 1.7 + posY: 3.72 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Deck aeb9c6.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Deck aeb9c6.yaml new file mode 100644 index 000000000..f4a3ed916 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Deck aeb9c6.yaml @@ -0,0 +1,232 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2980': + BackIsHidden: true + BackURL: https://i.imgur.com/6QpGwJf.jpg + FaceURL: https://i.imgur.com/4xtMeD1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"fa8a0e62-d2e8-4a02-ab40-e6b94a9e3dc4","type":"Agenda","class":"Mythos","doomThreshold":6}' + GUID: 1d6b37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lex Sanguinis + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -2.725 + posY: 1.597 + posZ: 0.373 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 297900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2979': + BackIsHidden: true + BackURL: https://i.imgur.com/EWjPn2c.jpg + FaceURL: https://i.imgur.com/2rWifBz.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8816ac5f-6921-4b0d-bc4e-d46d006c99aa","type":"Agenda","class":"Mythos","doomThreshold":5}' + GUID: 51eebf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lex Talionis + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -2.725 + posY: 1.642 + posZ: 0.373 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/OLdMNiR.jpg + FaceURL: https://i.imgur.com/FHA8ZpQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5d32e38f-0c55-441c-bb39-9c21ad99c4d2","type":"Agenda","class":"Mythos","doomThreshold":5}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lex Ecclesiae + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -2.725 + posY: 1.676 + posZ: 0.373 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/OLdMNiR.jpg + FaceURL: https://i.imgur.com/FHA8ZpQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '2979': + BackIsHidden: true + BackURL: https://i.imgur.com/EWjPn2c.jpg + FaceURL: https://i.imgur.com/2rWifBz.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '2980': + BackIsHidden: true + BackURL: https://i.imgur.com/6QpGwJf.jpg + FaceURL: https://i.imgur.com/4xtMeD1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +DeckIDs: +- 298000 +- 297900 +- 100000 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: aeb9c6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: -2.73 + posY: 1.62 + posZ: 0.37 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Deck Bystanders 5e9e1b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Deck Bystanders 5e9e1b.yaml new file mode 100644 index 000000000..f45b1c829 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Deck Bystanders 5e9e1b.yaml @@ -0,0 +1,344 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 304000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3040': + BackIsHidden: true + BackURL: https://i.imgur.com/PgbSY7H.png + FaceURL: https://i.imgur.com/OxtvxNf.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e6edbe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*Nanny Magda' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.882 + posY: 1.597 + posZ: 15.297 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 303700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3037': + BackIsHidden: true + BackURL: https://i.imgur.com/VACesBF.png + FaceURL: https://i.imgur.com/OwFIkA7.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6ff4f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*Arianna Kuttner' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.624 + posY: 1.638 + posZ: 15.203 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 303900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3039': + BackIsHidden: true + BackURL: https://i.imgur.com/zV1BfDy.png + FaceURL: https://i.imgur.com/ZozGK4M.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b2401a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*Sister Adella' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.421 + posY: 1.675 + posZ: 15.209 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 303800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3038': + BackIsHidden: true + BackURL: https://i.imgur.com/7F4G7cv.png + FaceURL: https://i.imgur.com/eO1s3j7.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cb1739 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*Robert Henley' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.634 + posY: 1.682 + posZ: 14.844 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 303600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3036': + BackIsHidden: true + BackURL: https://i.imgur.com/xUi4IGY.png + FaceURL: https://i.imgur.com/pwcgN96.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 118b0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*Sister Amelia' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.77 + posY: 1.691 + posZ: 14.842 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '3036': + BackIsHidden: true + BackURL: https://i.imgur.com/xUi4IGY.png + FaceURL: https://i.imgur.com/pwcgN96.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3037': + BackIsHidden: true + BackURL: https://i.imgur.com/VACesBF.png + FaceURL: https://i.imgur.com/OwFIkA7.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3038': + BackIsHidden: true + BackURL: https://i.imgur.com/7F4G7cv.png + FaceURL: https://i.imgur.com/eO1s3j7.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3039': + BackIsHidden: true + BackURL: https://i.imgur.com/zV1BfDy.png + FaceURL: https://i.imgur.com/ZozGK4M.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3040': + BackIsHidden: true + BackURL: https://i.imgur.com/PgbSY7H.png + FaceURL: https://i.imgur.com/OxtvxNf.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 304000 +- 303700 +- 303900 +- 303800 +- 303600 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 5e9e1b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Bystanders +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.88 + posY: 1.63 + posZ: 15.3 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Notecard Encounter Deck Setup Instructions fab970.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Notecard Encounter Deck Setup Instructions fab970.yaml new file mode 100644 index 000000000..b5df67070 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 2 Fear the Old Blood 022ddf/Notecard Encounter Deck Setup Instructions fab970.yaml @@ -0,0 +1,44 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '0 Recognition: Bag 1 + + 1 Recognition: Bag 2 + + 2+ Recognition: Bag 3' +DragSelectable: true +GMNotes: '' +GUID: fab970 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Notecard +Nickname: Encounter Deck Setup Instructions +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.21 + posY: 1.59 + posZ: 11.54 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0.ttslua new file mode 100644 index 000000000..d3a91c848 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0.ttslua @@ -0,0 +1,503 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + +function onload(saved_data) + fresh = true + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + moveList = {} + moveGuid = nil + + if next(memoryList) == nil then + createSetupButton() + else + fresh = false + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects(move) + local howManyButtons = 0 + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + 2 + objPos.z = objPos.z * globalScaleFactor * 0.9 + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=500, width=500, + color=color, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons(move) + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} + local color = {0,1,0,0.6} + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + theList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end + self.editButton({index=index, color=color}) + theList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + moveList = {} + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil +end + +--Saves selections +function buttonClick_submit() + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + memoryListBackup[guid] = nil + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +--Resets bag to starting status +function buttonClick_reset() + fresh = true + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end + local deltaPos = {} + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + yOffset + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0.yaml new file mode 100644 index 000000000..33ecec745 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0.yaml @@ -0,0 +1,95 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +AttachedDecals: +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ + Name: dunwich_back + Size: 7.4 + Transform: + posX: -0.0021877822 + posY: -0.08963572 + posZ: -0.00288731651 + rotX: 270.0 + rotY: 359.869568 + rotZ: 0.0 + scaleX: 2.00000215 + scaleY: 2.00000238 + scaleZ: 2.00000262 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag 3 Night Unending 5c4cb0/Card Oedon Chapel Subterrane + 080cfd.yaml' +- !include 'Custom_Model_Bag 3 Night Unending 5c4cb0/Deck Hunters of Yharnam 126df4.yaml' +- !include 'Custom_Model_Bag 3 Night Unending 5c4cb0/Deck 24dd2a.yaml' +- !include 'Custom_Model_Bag 3 Night Unending 5c4cb0/Deck Scenario 3 - Night Unending + 36bf73.yaml' +- !include 'Custom_Model_Bag 3 Night Unending 5c4cb0/Notecard Forbidden Woods Deck + Setup 3b7680.yaml' +- !include 'Custom_Model_Bag 3 Night Unending 5c4cb0/Bag 5 or More Recognition 48ba6c.yaml' +- !include 'Custom_Model_Bag 3 Night Unending 5c4cb0/Notecard Encounter Deck Setup + Instructions 60490e.yaml' +- !include 'Custom_Model_Bag 3 Night Unending 5c4cb0/Custom_Model_Bag Set-aside cc6fb0.yaml' +- !include 'Custom_Model_Bag 3 Night Unending 5c4cb0/Bag 4 or Less Recognition d14543.yaml' +- !include 'Custom_Model_Bag 3 Night Unending 5c4cb0/Deck d58c7f.yaml' +- !include 'Custom_Model_Bag 3 Night Unending 5c4cb0/Card The Forbidden Woods e00001.yaml' +- !include 'Custom_Model_Bag 3 Night Unending 5c4cb0/Deck gates e00015.yaml' +- !include 'Custom_Model_Bag 3 Night Unending 5c4cb0/Card Night Unending e00113.yaml' +- !include 'Custom_Model_Bag 3 Night Unending 5c4cb0/Bag Agents of Impurity Set e00119.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: https://i.imgur.com/tkFiDJ5.jpghttps://i.imgur.com/tkFiDJ5.jpg + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: 'Bloodborne: City of the Unseen' +DragSelectable: true +GMNotes: '' +GUID: 5c4cb0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model_Bag 3 Night Unending 5c4cb0.ttslua' +LuaScriptState: '{"ml":{"080cfd":{"lock":false,"pos":{"x":-43.44,"y":1.5333,"z":0},"rot":{"x":0.0039,"y":270,"z":359.9763}},"126df4":{"lock":false,"pos":{"x":-17.1197,"y":1.5987,"z":-0.03},"rot":{"x":0,"y":269.998,"z":0}},"24dd2a":{"lock":false,"pos":{"x":-17.1201,"y":1.5602,"z":3.86},"rot":{"x":0,"y":269.9933,"z":0}},"36bf73":{"lock":false,"pos":{"x":-17.0713,"y":1.6131,"z":-11.4333},"rot":{"x":0,"y":270,"z":0}},"3b7680":{"lock":false,"pos":{"x":-12.0847,"y":1.59,"z":-13.5534},"rot":{"x":0,"y":90.0012,"z":0}},"48ba6c":{"lock":false,"pos":{"x":-17.1209,"y":1.335,"z":11.4601},"rot":{"x":0,"y":90.0002,"z":0}},"60490e":{"lock":false,"pos":{"x":-12.4137,"y":1.59,"z":11.2938},"rot":{"x":0,"y":90.0011,"z":0}},"cc6fb0":{"lock":false,"pos":{"x":1.694,"y":1.558,"z":14.2415},"rot":{"x":0,"y":45,"z":0}},"d14543":{"lock":false,"pos":{"x":-17.1185,"y":1.335,"z":15.1886},"rot":{"x":0,"y":90.001,"z":0}},"d58c7f":{"lock":false,"pos":{"x":-2.7248,"y":1.6232,"z":0.3734},"rot":{"x":0,"y":269.9958,"z":0}},"e00001":{"lock":false,"pos":{"x":-2.6885,"y":1.5966,"z":-5.0485},"rot":{"x":0,"y":269.9999,"z":0}},"e00015":{"lock":false,"pos":{"x":-17.1203,"y":1.5554,"z":-15.28},"rot":{"x":0,"y":270.0006,"z":0}},"e00113":{"lock":false,"pos":{"x":-3.956,"y":1.5966,"z":-10.4412},"rot":{"x":0,"y":269.9996,"z":0}},"e00119":{"lock":false,"pos":{"x":-17.1143,"y":1.335,"z":7.5615},"rot":{"x":0,"y":270.0281,"z":0}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '3: Night Unending' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.68 + posY: 1.48 + posZ: 12.77 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Bag 4 or Less Recognition d14543.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Bag 4 or Less Recognition d14543.ttslua new file mode 100644 index 000000000..baa7b8b87 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Bag 4 or Less Recognition d14543.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1.25 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + objPos.z = objPos.z * globalScaleFactor + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + memoryList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + end +end + +--Resets bag to starting status +function buttonClick_reset() + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Bag 4 or Less Recognition d14543.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Bag 4 or Less Recognition d14543.yaml new file mode 100644 index 000000000..a76352c7b --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Bag 4 or Less Recognition d14543.yaml @@ -0,0 +1,2466 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"32dc122f-fcf7-454a-81fe-f5e2c78f6722","type":"Treachery","class":"Mythos","traits":"Scheme"}' + GUID: b79bb4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Polite Exchange + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -12.629 + posY: 2.283 + posZ: 33.648 + rotX: 0.0 + rotY: 270.0 + rotZ: 159.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3396': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"32dc122f-fcf7-454a-81fe-f5e2c78f6722","type":"Treachery","class":"Mythos","traits":"Scheme"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Polite Exchange + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -12.553 + posY: 2.261 + posZ: 31.255 + rotX: 0.0 + rotY: 270.0 + rotZ: 198.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 311400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3114': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/CpUD4dk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"77e60827-d242-4313-9d8c-60e3a55035c5","type":"Enemy","class":"Mythos","traits":"Humanoid. + Beast"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge Beast + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -5.616 + posY: 1.989 + posZ: 28.78 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 311300 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g0yUbvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9754dcfd-6b1f-400e-9239-b18042fe6ffe","type":"Enemy","class":"Mythos","traits":"Humanoid. + Beast"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Blood Beast + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 311000 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g0yUbvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9754dcfd-6b1f-400e-9239-b18042fe6ffe","type":"Enemy","class":"Mythos","traits":"Humanoid. + Beast"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Blood Beast + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 311200 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g0yUbvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9754dcfd-6b1f-400e-9239-b18042fe6ffe","type":"Enemy","class":"Mythos","traits":"Humanoid. + Beast"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Blood Beast + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 311100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3111': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/CpUD4dk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"77e60827-d242-4313-9d8c-60e3a55035c5","type":"Enemy","class":"Mythos","traits":"Humanoid. + Beast"}' + GUID: 187a5b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge Beast + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.256 + posY: 1.594 + posZ: 33.651 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 311100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3111': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/CpUD4dk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"77e60827-d242-4313-9d8c-60e3a55035c5","type":"Enemy","class":"Mythos","traits":"Humanoid. + Beast"}' + GUID: 0c6573 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge Beast + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.256 + posY: 1.604 + posZ: 33.651 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 310700 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/s8rQxMN.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f2d24dbe-b2f1-4f43-99d8-edad9518ae54","type":"Treachery","class":"Mythos","traits":"Hazard. + Scheme"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: View-Halloo! + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 310900 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/s8rQxMN.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f2d24dbe-b2f1-4f43-99d8-edad9518ae54","type":"Treachery","class":"Mythos","traits":"Hazard. + Scheme"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: View-Halloo! + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 322500 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/mBcf9gy/3cf1e26f498a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9d27a6c8-2135-4feb-9356-1b0699ea56c3","type":"Enemy","class":"Mythos","traits":"Creature. + Blood-Drunk"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Crazed Hunting Hounds + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 322600 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/mBcf9gy/3cf1e26f498a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9d27a6c8-2135-4feb-9356-1b0699ea56c3","type":"Enemy","class":"Mythos","traits":"Creature. + Blood-Drunk"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Crazed Hunting Hounds + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 322700 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/mBcf9gy/3cf1e26f498a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9d27a6c8-2135-4feb-9356-1b0699ea56c3","type":"Enemy","class":"Mythos","traits":"Creature. + Blood-Drunk"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Crazed Hunting Hounds + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 310800 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"abca5cb6-27e0-4f77-9227-16967d5fad5f","type":"Enemy","class":"Mythos","traits":"Humanoid. + Blood-Drunk"}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunting Party + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 322800 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"abca5cb6-27e0-4f77-9227-16967d5fad5f","type":"Enemy","class":"Mythos","traits":"Humanoid. + Blood-Drunk"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunting Party + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 310600 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"abca5cb6-27e0-4f77-9227-16967d5fad5f","type":"Enemy","class":"Mythos","traits":"Humanoid. + Blood-Drunk"}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunting Party + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 290400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2904': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/1LpJVRX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"99cf0864-8895-4879-a857-e2f50fed859d"}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Maneater Boar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.677 + posY: 1.626 + posZ: -7.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 289600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2896': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/1LpJVRX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"99cf0864-8895-4879-a857-e2f50fed859d"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Maneater Boar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.677 + posY: 1.67 + posZ: -7.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2799': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/CQ8MGxN/0a4d7fa25982.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c32ccffd-4f88-4b35-b755-0cde63047779"}' + GUID: 2e62c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chime Maiden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.751 + posY: 1.493 + posZ: 28.234 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2799': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/CQ8MGxN/0a4d7fa25982.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c32ccffd-4f88-4b35-b755-0cde63047779"}' + GUID: 05c70a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chime Maiden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.751 + posY: 1.534 + posZ: 28.234 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2799': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/CQ8MGxN/0a4d7fa25982.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c32ccffd-4f88-4b35-b755-0cde63047779"}' + GUID: c6b582 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chime Maiden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.751 + posY: 1.562 + posZ: 28.234 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 121700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1217': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/G3z407D/51f8fc6e2a2a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a8652723-d4c1-47d6-9862-de2a559473dc"}' + GUID: e0010e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Led Astray + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.154 + posY: 1.56 + posZ: 29.006 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 121800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1218': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/G3z407D/51f8fc6e2a2a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a8652723-d4c1-47d6-9862-de2a559473dc"}' + GUID: e0010f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Led Astray + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.255 + posY: 1.594 + posZ: 28.579 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 121900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1219': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/t2TJ62K/a79f773108ac.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9651865f-43b8-4de0-8ef3-03684be31990"}' + GUID: e00110 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Off the Trail + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.103 + posY: 1.603 + posZ: 28.595 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 122000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1220': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/t2TJ62K/a79f773108ac.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9651865f-43b8-4de0-8ef3-03684be31990"}' + GUID: e00111 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Off the Trail + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.145 + posY: 1.613 + posZ: 29.151 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 122100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1221': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/t2TJ62K/a79f773108ac.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9651865f-43b8-4de0-8ef3-03684be31990"}' + GUID: e00112 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Off the Trail + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.74 + posY: 1.622 + posZ: 29.406 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291100 + CustomDeck: + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/tzjQvht/117624778ee3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"217fc0e1-6733-485b-b126-a0b9fd5d4b2a"}' + GUID: e0000e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Twisting Serpents + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291200 + CustomDeck: + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/myy0J5c/85af9948631a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9b5fbd10-58b4-4c2d-9efe-331e0ea00b80"}' + GUID: e0000f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Twisting Serpents + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 277900 + CustomDeck: + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/J297Gnb/e6a148837ccf.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"05bb5e03-6bd8-46d0-be5c-59b2289515a3"}' + GUID: e00010 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Twisting Serpents + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 338200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3382': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/E1HnRfR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"1de21c1a-29cd-4944-a1bb-2a8dd486b045","type":"Treachery","class":"Mythos","traits":"Mystery"}' + GUID: 02cd7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Uncertainty + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -24.731 + posY: 2.681 + posZ: -23.055 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 337900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3379': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/E1HnRfR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"1de21c1a-29cd-4944-a1bb-2a8dd486b045","type":"Treachery","class":"Mythos","traits":"Mystery"}' + GUID: 8ba042 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Uncertainty + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -24.938 + posY: 2.731 + posZ: -24.076 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 338000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3380': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/45h3n8a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"eabcb06c-33d9-456e-af73-b146114577bb","type":"Treachery","class":"Mythos","traits":"Mystery"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Burden of Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -5.35 + posY: 1.495 + posZ: 33.601 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 338300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3383': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/45h3n8a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"eabcb06c-33d9-456e-af73-b146114577bb","type":"Treachery","class":"Mythos","traits":"Mystery"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Burden of Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -5.35 + posY: 1.541 + posZ: 33.6 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 337800 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/IHvVmb8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"71d1193c-92c4-46c5-9a05-62c1d9662f19","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blessing of Eyes + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 338100 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/IHvVmb8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"71d1193c-92c4-46c5-9a05-62c1d9662f19","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blessing of Eyes + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 340900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3409': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/J9A59or.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0997c1ce-40ec-4a56-aeb4-5bdd36e5c489","type":"Enemy","class":"Mythos","traits":"Humanoid. + Spectral. Servitor"}' + GUID: c2d64a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mad One + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -36.627 + posY: 2.574 + posZ: -19.947 + rotX: 0.0 + rotY: 1.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 340300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3403': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/J9A59or.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0997c1ce-40ec-4a56-aeb4-5bdd36e5c489","type":"Enemy","class":"Mythos","traits":"Humanoid. + Spectral. Servitor"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mad One + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -34.961 + posY: 2.544 + posZ: -17.823 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 340600 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/dFDEsdA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"223a4db6-a03a-4da8-8d08-f3959d9f9df2","type":"Enemy","class":"Mythos","traits":"Serpent. + Monster"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Host of Serpents + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 340400 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/dFDEsdA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"223a4db6-a03a-4da8-8d08-f3959d9f9df2","type":"Enemy","class":"Mythos","traits":"Serpent. + Monster"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Host of Serpents + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 340100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3401': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/dFDEsdA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"223a4db6-a03a-4da8-8d08-f3959d9f9df2","type":"Enemy","class":"Mythos","traits":"Serpent. + Monster"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Host of Serpents + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -13.644 + posY: 1.571 + posZ: 44.179 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1217': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/G3z407D/51f8fc6e2a2a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1218': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/G3z407D/51f8fc6e2a2a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1219': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/t2TJ62K/a79f773108ac.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1220': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/t2TJ62K/a79f773108ac.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1221': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/t2TJ62K/a79f773108ac.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2779': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/J297Gnb/e6a148837ccf.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2799': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/CQ8MGxN/0a4d7fa25982.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2896': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/1LpJVRX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2904': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/1LpJVRX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2911': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/tzjQvht/117624778ee3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2912': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/myy0J5c/85af9948631a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3106': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3107': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/s8rQxMN.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3108': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3109': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/s8rQxMN.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3110': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g0yUbvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3111': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/CpUD4dk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3112': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g0yUbvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3113': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g0yUbvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3114': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/CpUD4dk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3225': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/mBcf9gy/3cf1e26f498a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3226': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/mBcf9gy/3cf1e26f498a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3227': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/mBcf9gy/3cf1e26f498a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3228': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3378': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/IHvVmb8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3379': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/E1HnRfR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3380': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/45h3n8a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3381': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/IHvVmb8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3382': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/E1HnRfR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3383': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/45h3n8a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3396': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3401': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/dFDEsdA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3403': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/J9A59or.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3404': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/dFDEsdA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3406': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/dFDEsdA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3409': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/J9A59or.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 339700 + - 339600 + - 311400 + - 311300 + - 311000 + - 311200 + - 311100 + - 311100 + - 310700 + - 310900 + - 322500 + - 322600 + - 322700 + - 310800 + - 322800 + - 310600 + - 290400 + - 289600 + - 279900 + - 279900 + - 279900 + - 121700 + - 121800 + - 121900 + - 122000 + - 122100 + - 291100 + - 291200 + - 277900 + - 338200 + - 337900 + - 338000 + - 338300 + - 337800 + - 338100 + - 340900 + - 340300 + - 340600 + - 340400 + - 340100 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 244f44 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.115 + posY: 3.814 + posZ: 14.765 + rotX: 0.0 + rotY: 270.0 + rotZ: 181.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d14543 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Bag 4 or Less Recognition d14543.ttslua' +LuaScriptState: '{"ml":[]}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 4 or Less Recognition +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.33 + posZ: 15.19 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Bag 5 or More Recognition 48ba6c.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Bag 5 or More Recognition 48ba6c.ttslua new file mode 100644 index 000000000..baa7b8b87 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Bag 5 or More Recognition 48ba6c.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1.25 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + objPos.z = objPos.z * globalScaleFactor + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + memoryList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + end +end + +--Resets bag to starting status +function buttonClick_reset() + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Bag 5 or More Recognition 48ba6c.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Bag 5 or More Recognition 48ba6c.yaml new file mode 100644 index 000000000..f48ec8304 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Bag 5 or More Recognition 48ba6c.yaml @@ -0,0 +1,3110 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"32dc122f-fcf7-454a-81fe-f5e2c78f6722","type":"Treachery","class":"Mythos","traits":"Scheme"}' + GUID: 1deec0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Polite Exchange + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -12.535 + posY: 2.022 + posZ: 26.868 + rotX: 0.0 + rotY: 270.0 + rotZ: 178.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3396': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"32dc122f-fcf7-454a-81fe-f5e2c78f6722","type":"Treachery","class":"Mythos","traits":"Scheme"}' + GUID: 91b6a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Polite Exchange + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -12.249 + posY: 2.03 + posZ: 23.535 + rotX: 0.0 + rotY: 270.0 + rotZ: 181.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 313200 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Y9MNHaZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a2be9add-6868-496d-8f70-72b927b76a5e","type":"Treachery","class":"Mythos","traits":"Terror. + Omen"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Invisible Opposition + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 312800 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Y9MNHaZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a2be9add-6868-496d-8f70-72b927b76a5e","type":"Treachery","class":"Mythos","traits":"Terror. + Omen"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Invisible Opposition + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 313100 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/kdtbWc3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"07cdcb0e-1273-45d2-91f0-c8a2110fcfbf","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fury of the Bereaved + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 312600 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/kdtbWc3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"07cdcb0e-1273-45d2-91f0-c8a2110fcfbf","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fury of the Bereaved + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 312900 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i8i4fKT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ba959a72-7ab7-452f-8468-28d0df036568","type":"Treachery","class":"Mythos","traits":"Omen. + "}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vision of the Pthumerian Queen + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 312700 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i8i4fKT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ba959a72-7ab7-452f-8468-28d0df036568","type":"Treachery","class":"Mythos","traits":"Omen. + "}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vision of the Pthumerian Queen + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 313000 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i8i4fKT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ba959a72-7ab7-452f-8468-28d0df036568","type":"Treachery","class":"Mythos","traits":"Omen. + "}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vision of the Pthumerian Queen + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 312400 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/PFB6Zh0/17918f33aa7c.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e13a83a0-f147-4649-8686-dd51baf2e0af","type":"Treachery","class":"Mythos","traits":"Pact. + Task"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Hunter Must Hunt + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 312300 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/F9RXRPZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7628d129-3b62-48ca-b00c-62222bef1b4e","type":"Treachery","class":"Mythos","traits":"Pact"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Flora of the Moon + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 312500 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/F9RXRPZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7628d129-3b62-48ca-b00c-62222bef1b4e","type":"Treachery","class":"Mythos","traits":"Pact"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Flora of the Moon + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 312200 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/6gM7xcD/c58321087844.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ec711d3a-3178-4f3d-8246-88e0e8eff53c","type":"Treachery","victory":1,"class":"Mythos","traits":"Pact"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Guiding Moonlight + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 311400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3114': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/CpUD4dk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"77e60827-d242-4313-9d8c-60e3a55035c5","type":"Enemy","class":"Mythos","traits":"Humanoid. + Beast"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge Beast + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -5.616 + posY: 1.989 + posZ: 28.78 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 311300 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g0yUbvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9754dcfd-6b1f-400e-9239-b18042fe6ffe","type":"Enemy","class":"Mythos","traits":"Humanoid. + Beast"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Blood Beast + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 311000 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g0yUbvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9754dcfd-6b1f-400e-9239-b18042fe6ffe","type":"Enemy","class":"Mythos","traits":"Humanoid. + Beast"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Blood Beast + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 311200 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g0yUbvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9754dcfd-6b1f-400e-9239-b18042fe6ffe","type":"Enemy","class":"Mythos","traits":"Humanoid. + Beast"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Blood Beast + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 311100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3111': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/CpUD4dk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"77e60827-d242-4313-9d8c-60e3a55035c5","type":"Enemy","class":"Mythos","traits":"Humanoid. + Beast"}' + GUID: 187a5b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge Beast + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.256 + posY: 1.594 + posZ: 33.651 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 311100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3111': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/CpUD4dk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"77e60827-d242-4313-9d8c-60e3a55035c5","type":"Enemy","class":"Mythos","traits":"Humanoid. + Beast"}' + GUID: 0c6573 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge Beast + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.256 + posY: 1.604 + posZ: 33.651 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 310700 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/s8rQxMN.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f2d24dbe-b2f1-4f43-99d8-edad9518ae54","type":"Treachery","class":"Mythos","traits":"Hazard. + Scheme"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: View-Halloo! + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 310900 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/s8rQxMN.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f2d24dbe-b2f1-4f43-99d8-edad9518ae54","type":"Treachery","class":"Mythos","traits":"Hazard. + Scheme"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: View-Halloo! + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 337400 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/mBcf9gy/3cf1e26f498a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9d27a6c8-2135-4feb-9356-1b0699ea56c3","type":"Enemy","class":"Mythos","traits":"Creature. + Blood-Drunk"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Crazed Hunting Hounds + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 337500 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/mBcf9gy/3cf1e26f498a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9d27a6c8-2135-4feb-9356-1b0699ea56c3","type":"Enemy","class":"Mythos","traits":"Creature. + Blood-Drunk"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Crazed Hunting Hounds + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 337600 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/mBcf9gy/3cf1e26f498a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9d27a6c8-2135-4feb-9356-1b0699ea56c3","type":"Enemy","class":"Mythos","traits":"Creature. + Blood-Drunk"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Crazed Hunting Hounds + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 310800 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"abca5cb6-27e0-4f77-9227-16967d5fad5f","type":"Enemy","class":"Mythos","traits":"Humanoid. + Blood-Drunk"}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunting Party + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 337700 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"abca5cb6-27e0-4f77-9227-16967d5fad5f","type":"Enemy","class":"Mythos","traits":"Humanoid. + Blood-Drunk"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunting Party + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 310600 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"abca5cb6-27e0-4f77-9227-16967d5fad5f","type":"Enemy","class":"Mythos","traits":"Humanoid. + Blood-Drunk"}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunting Party + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 290400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2904': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/1LpJVRX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"99cf0864-8895-4879-a857-e2f50fed859d"}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Maneater Boar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.677 + posY: 1.626 + posZ: -7.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 289600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2896': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/1LpJVRX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"99cf0864-8895-4879-a857-e2f50fed859d"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Maneater Boar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.677 + posY: 1.67 + posZ: -7.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2799': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/CQ8MGxN/0a4d7fa25982.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c32ccffd-4f88-4b35-b755-0cde63047779"}' + GUID: 2e62c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chime Maiden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.751 + posY: 1.493 + posZ: 28.234 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2799': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/CQ8MGxN/0a4d7fa25982.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c32ccffd-4f88-4b35-b755-0cde63047779"}' + GUID: 05c70a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chime Maiden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.751 + posY: 1.534 + posZ: 28.234 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2799': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/CQ8MGxN/0a4d7fa25982.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c32ccffd-4f88-4b35-b755-0cde63047779"}' + GUID: c6b582 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chime Maiden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.751 + posY: 1.562 + posZ: 28.234 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 121600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1216': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/G3z407D/51f8fc6e2a2a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a8652723-d4c1-47d6-9862-de2a559473dc"}' + GUID: e0010d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Led Astray + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.978 + posY: 1.518 + posZ: 28.938 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 121700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1217': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/G3z407D/51f8fc6e2a2a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a8652723-d4c1-47d6-9862-de2a559473dc"}' + GUID: e0010e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Led Astray + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.154 + posY: 1.56 + posZ: 29.006 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 121900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1219': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/t2TJ62K/a79f773108ac.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9651865f-43b8-4de0-8ef3-03684be31990"}' + GUID: e00110 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Off the Trail + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.103 + posY: 1.603 + posZ: 28.595 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 122000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1220': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/t2TJ62K/a79f773108ac.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9651865f-43b8-4de0-8ef3-03684be31990"}' + GUID: e00111 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Off the Trail + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.145 + posY: 1.613 + posZ: 29.151 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 122100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1221': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/t2TJ62K/a79f773108ac.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9651865f-43b8-4de0-8ef3-03684be31990"}' + GUID: e00112 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Off the Trail + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.74 + posY: 1.622 + posZ: 29.406 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291100 + CustomDeck: + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/tzjQvht/117624778ee3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"217fc0e1-6733-485b-b126-a0b9fd5d4b2a"}' + GUID: e0000e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Twisting Serpents + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 291200 + CustomDeck: + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/myy0J5c/85af9948631a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9b5fbd10-58b4-4c2d-9efe-331e0ea00b80"}' + GUID: e0000f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Twisting Serpents + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 277900 + CustomDeck: + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/J297Gnb/e6a148837ccf.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"05bb5e03-6bd8-46d0-be5c-59b2289515a3"}' + GUID: e00010 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Twisting Serpents + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 337800 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/IHvVmb8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"71d1193c-92c4-46c5-9a05-62c1d9662f19","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blessing of Eyes + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 338100 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/IHvVmb8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"71d1193c-92c4-46c5-9a05-62c1d9662f19","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blessing of Eyes + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 338200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3382': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/E1HnRfR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"1de21c1a-29cd-4944-a1bb-2a8dd486b045","type":"Treachery","class":"Mythos","traits":"Mystery"}' + GUID: 2a4703 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Uncertainty + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -21.408 + posY: 2.655 + posZ: -18.68 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 337900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3379': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/E1HnRfR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"1de21c1a-29cd-4944-a1bb-2a8dd486b045","type":"Treachery","class":"Mythos","traits":"Mystery"}' + GUID: 5463bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Uncertainty + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -21.805 + posY: 2.705 + posZ: -19.54 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 338000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3380': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/45h3n8a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"eabcb06c-33d9-456e-af73-b146114577bb","type":"Treachery","class":"Mythos","traits":"Mystery"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Burden of Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -5.35 + posY: 1.495 + posZ: 33.601 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 340300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3403': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/J9A59or.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0997c1ce-40ec-4a56-aeb4-5bdd36e5c489","type":"Enemy","class":"Mythos","traits":"Humanoid. + Spectral. Servitor"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mad One + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -10.203 + posY: 1.495 + posZ: 49.894 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 340900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3409': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/J9A59or.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0997c1ce-40ec-4a56-aeb4-5bdd36e5c489","type":"Enemy","class":"Mythos","traits":"Humanoid. + Spectral. Servitor"}' + GUID: c2d64a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mad One + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.841 + posY: 1.537 + posZ: 50.191 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 340600 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/dFDEsdA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"223a4db6-a03a-4da8-8d08-f3959d9f9df2","type":"Enemy","class":"Mythos","traits":"Serpent. + Monster"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Host of Serpents + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 340400 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/dFDEsdA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"223a4db6-a03a-4da8-8d08-f3959d9f9df2","type":"Enemy","class":"Mythos","traits":"Serpent. + Monster"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Host of Serpents + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 340100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3401': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/dFDEsdA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"223a4db6-a03a-4da8-8d08-f3959d9f9df2","type":"Enemy","class":"Mythos","traits":"Serpent. + Monster"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Host of Serpents + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -13.644 + posY: 1.571 + posZ: 44.179 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 338300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3383': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/45h3n8a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"eabcb06c-33d9-456e-af73-b146114577bb","type":"Treachery","class":"Mythos","traits":"Mystery"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Burden of Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -5.35 + posY: 1.541 + posZ: 33.6 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1216': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/G3z407D/51f8fc6e2a2a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1217': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/G3z407D/51f8fc6e2a2a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1219': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/t2TJ62K/a79f773108ac.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1220': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/t2TJ62K/a79f773108ac.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1221': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/t2TJ62K/a79f773108ac.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2779': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/J297Gnb/e6a148837ccf.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2799': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/CQ8MGxN/0a4d7fa25982.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2896': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/1LpJVRX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2904': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/1LpJVRX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2911': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/tzjQvht/117624778ee3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2912': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/myy0J5c/85af9948631a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3106': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3107': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/s8rQxMN.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3108': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3109': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/s8rQxMN.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3110': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g0yUbvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3111': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/CpUD4dk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3112': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g0yUbvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3113': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g0yUbvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3114': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/CpUD4dk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3122': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/6gM7xcD/c58321087844.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3123': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/F9RXRPZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3124': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/PFB6Zh0/17918f33aa7c.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3125': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/F9RXRPZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/kdtbWc3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3127': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i8i4fKT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3128': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Y9MNHaZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3129': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i8i4fKT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3130': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i8i4fKT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3131': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/kdtbWc3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3132': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Y9MNHaZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3374': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/mBcf9gy/3cf1e26f498a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3375': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/mBcf9gy/3cf1e26f498a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3376': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/mBcf9gy/3cf1e26f498a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3377': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2ljBjUY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3378': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/IHvVmb8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3379': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/E1HnRfR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3380': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/45h3n8a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3381': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/IHvVmb8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3382': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/E1HnRfR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3383': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/45h3n8a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3396': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3401': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/dFDEsdA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3403': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/J9A59or.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3404': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/dFDEsdA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3406': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/dFDEsdA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3409': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/J9A59or.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 339700 + - 339600 + - 313200 + - 312800 + - 313100 + - 312600 + - 312900 + - 312700 + - 313000 + - 312400 + - 312300 + - 312500 + - 312200 + - 311400 + - 311300 + - 311000 + - 311200 + - 311100 + - 311100 + - 310700 + - 310900 + - 337400 + - 337500 + - 337600 + - 310800 + - 337700 + - 310600 + - 290400 + - 289600 + - 279900 + - 279900 + - 279900 + - 121600 + - 121700 + - 121900 + - 122000 + - 122100 + - 291100 + - 291200 + - 277900 + - 337800 + - 338100 + - 338200 + - 337900 + - 338000 + - 340300 + - 340900 + - 340600 + - 340400 + - 340100 + - 338300 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6673a2 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.778 + posY: 3.868 + posZ: 11.699 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 48ba6c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Bag 5 or More Recognition 48ba6c.ttslua' +LuaScriptState: '{"ml":[]}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 5 or More Recognition +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.33 + posZ: 11.46 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Bag Agents of Impurity Set e00119.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Bag Agents of Impurity Set e00119.yaml new file mode 100644 index 000000000..addedb82f --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Bag Agents of Impurity Set e00119.yaml @@ -0,0 +1,253 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 122300 + CustomDeck: + '1223': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/9cRx2qv/8bec2c51970d.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Adherents to the Queen + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"2b98e333-f780-4862-8db1-d3f11decd1f3"}' + GUID: e00115 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shadows of Yharnam + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 122400 + CustomDeck: + '1224': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/z6xX98C/679f65a3283d.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: The Eye Collector + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a50dbb02-9a3a-4a89-a18e-7b1498318e53"}' + GUID: e00116 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Witch of Hemwick + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 122500 + CustomDeck: + '1225': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/d7hVTpP/24dfc6d27453.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: The Younger Madaras Twin + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"aec83b00-4e44-44ea-bd7d-a5af913a3ed7"}' + GUID: e00117 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eliot Madaras + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1223': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/9cRx2qv/8bec2c51970d.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1224': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/z6xX98C/679f65a3283d.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1225': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/d7hVTpP/24dfc6d27453.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 122300 + - 122400 + - 122500 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e00118 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: Agents of Impurity Set + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e00119 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Agents of Impurity Set +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.11 + posY: 1.33 + posZ: 7.56 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Card Night Unending e00113.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Card Night Unending e00113.yaml new file mode 100644 index 000000000..fe557bc31 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Card Night Unending e00113.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 122200 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1222': + BackIsHidden: true + BackURL: https://i.ibb.co/p1VmpBF/a30e0d69a383.jpg + FaceURL: https://i.ibb.co/FWSmYMG/266d558ca2f1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"c488369e-6d22-4a78-a4cb-ae6a9a2c60ec"}' +GUID: e00113 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Night Unending +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.96 + posY: 1.6 + posZ: -10.44 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Card Oedon Chapel Subterrane 080cfd.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Card Oedon Chapel Subterrane 080cfd.yaml new file mode 100644 index 000000000..3841f1b06 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Card Oedon Chapel Subterrane 080cfd.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 342400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3424': + BackIsHidden: true + BackURL: https://i.imgur.com/8PgVwpq.jpg + FaceURL: https://i.imgur.com/al6ItI5.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: Passage to the Forbidden Woods +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"3b1fcac6-4198-4674-a161-f75a8184aad9","type":"Location","class":"Mythos","traits":"Crypt. + Cave","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":null}}' +GUID: 080cfd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Oedon Chapel Subterrane +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -43.44 + posY: 1.53 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Card The Forbidden Woods e00001.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Card The Forbidden Woods e00001.yaml new file mode 100644 index 000000000..4fc1df69d --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Card The Forbidden Woods e00001.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 283500 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '2835': + BackIsHidden: true + BackURL: https://i.ibb.co/prcxdn8/9852cb7c9f79.jpg + FaceURL: https://i.ibb.co/PQmscp8/4fe4707dfd64.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"ed5686c6-4da2-49ec-9e0d-4706913aaf31"}' +GUID: e00001 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Forbidden Woods +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.69 + posY: 1.6 + posZ: -5.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Custom_Model_Bag Set-aside cc6fb0.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Custom_Model_Bag Set-aside cc6fb0.yaml new file mode 100644 index 000000000..4da5749a6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Custom_Model_Bag Set-aside cc6fb0.yaml @@ -0,0 +1,69 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.02149 + g: 0.00101 + r: 0.02149 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside cc6fb0/Custom_Tile 961a46.yaml' +- !include 'Custom_Model_Bag Set-aside cc6fb0/Custom_Tile 77643e.yaml' +- !include 'Custom_Model_Bag Set-aside cc6fb0/Custom_Tile 8023b7.yaml' +- !include 'Custom_Model_Bag Set-aside cc6fb0/Bag Spoils 97f8a2.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/ + MaterialIndex: 1 + MeshURL: http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/ + NormalURL: http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/ + TypeIndex: 6 +Description: Extracurricular Activity +DragSelectable: true +GMNotes: '' +GUID: cc6fb0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Set-aside +PhysicsMaterial: + BounceCombine: 0 + Bounciness: 0.0 + DynamicFriction: 0.6 + FrictionCombine: 0 + StaticFriction: 0.6 +Rigidbody: + AngularDrag: 5.0 + Drag: 5.0 + Mass: 1.375 + UseGravity: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69 + posY: 1.56 + posZ: 14.24 + rotX: 0.0 + rotY: 45.0 + rotZ: 0.0 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Custom_Model_Bag Set-aside cc6fb0/Bag Spoils 97f8a2.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Custom_Model_Bag Set-aside cc6fb0/Bag Spoils 97f8a2.yaml new file mode 100644 index 000000000..ce384ee1b --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Custom_Model_Bag Set-aside cc6fb0/Bag Spoils 97f8a2.yaml @@ -0,0 +1,812 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315900 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/iAgnB10.jpg + FaceURL: https://i.imgur.com/HockzvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Gateway to a Tragic Land + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d1e30cf2-c292-429d-99ab-edce2ecd2ca9","type":"Asset","permanent":true,"class":"Neutral","traits":"Item. + Charm. Occult"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ailing Loran Chalice + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315600 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/fM8NK9t.jpg + FaceURL: https://i.imgur.com/GBsIKbP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: The Ghastly Reverie + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b4c646de-d449-4798-93cc-a30e89116c0d","type":"Asset","class":"Neutral","traits":"Condition. + Cursed. ","agilityIcons":2,"fightIcons":2,"cost":0}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beast's Embrace + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100200 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/PvxI9C4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: The Pride of Hemwick + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"09eacbbb-bfbc-4bd1-b12a-9d616c041b97","type":"Asset","class":"Neutral","traits":"Item. + Supply","agilityIcons":1,"cost":3}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bone Marrow Ash + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100300 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/5T7pHbT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Symbol of Stern Golden Spirit + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"21c25218-2071-4d07-bc3f-82688bcdbe49","type":"Asset","class":"Neutral","traits":"Item. + Armor. Occult","willpowerIcons":1,"wildIcons":1,"cost":2}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gold Ardeo + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100400 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/aylUt1v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: The Measured Tread of Gods + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8eecf68f-42d7-4c4d-a40e-ec3f0a216cf2","type":"Asset","class":"Neutral","traits":"Ritual","intellectIcons":1,"willpowerIcons":1,"wildIcons":1,"cost":5}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Make Contact + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315800 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/0hB7mzi.jpg + FaceURL: https://i.imgur.com/Lpal9JU.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Sidereal Beacon + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6752da73-cb22-475c-8691-de1275b28e28","type":"Asset","class":"Neutral","traits":"Item. + Armor. Occult","intellectIcons":1,"wildIcons":1,"cost":4}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mensis Cage + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100600 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/eAQYYCV.jpg + FaceURL: https://i.imgur.com/MOZTlcr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Paleblood Stillbirth + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d7cfea5e-a8b3-4424-9d3f-36141ca93f7e","type":"Asset","class":"Neutral","traits":"Item. + Occult. Cursed","wildIcons":3,"cost":1}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pale Cord of the Eye + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315400 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/R6nTlVN.jpg + FaceURL: https://i.imgur.com/iY9tmyP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Sacred Aria + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5dbb3575-59a5-4312-a134-6c92b59f7648","type":"Asset","class":"Neutral","traits":"Item. + Weapon. Science","fightIcons":1,"willpowerIcons":1,"wildIcons":1,"cost":3}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rosmarinus + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100800 + CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/ZyDWXxL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Useless Memento + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"4874a8eb-9f6a-421f-991f-0e6957187188","type":"Asset","class":"Neutral","traits":"Item. + Charm","fightIcons":1,"cost":3}' + GUID: e00009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Saw Hunter Badge + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315700 + CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/NmPvmKH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: For the Gentleman Hunter + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"3efb091b-1321-404f-8bf6-43eff4aceebc","type":"Asset","class":"Neutral","traits":"Item. + Weapon. Melee. ","agilityIcons":1,"cost":3}' + GUID: e0000a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Threaded Cane + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315500 + CustomDeck: + '1010': + BackIsHidden: true + BackURL: https://i.imgur.com/AUtNKgd.jpg + FaceURL: https://i.imgur.com/EsVypo5.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '"If your weapon ain''t got kick..."' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c38372ec-9d1e-4911-bfda-89695d89cebc","type":"Asset","class":"Neutral","traits":"Item. + Weapon. Melee. ","fightIcons":3,"cost":4}' + GUID: e0000b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Whirligig Saw + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 316000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3160': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/iajVyjP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Cainhurst's Grace + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6e4d7936-b2f1-4cc3-a1b5-6453243bc200","type":"Asset","class":"Neutral","traits":"Item. + Firearm. Weapon","fightIcons":1,"wildIcons":2,"cost":5}' + GUID: e0000d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Evelyn + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: -19.237 + posY: 1.902 + posZ: 41.881 + rotX: 0.0 + rotY: 270.0 + rotZ: 348.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/PvxI9C4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/5T7pHbT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/aylUt1v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/eAQYYCV.jpg + FaceURL: https://i.imgur.com/MOZTlcr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/ZyDWXxL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3154': + BackIsHidden: true + BackURL: https://i.imgur.com/R6nTlVN.jpg + FaceURL: https://i.imgur.com/iY9tmyP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3155': + BackIsHidden: true + BackURL: https://i.imgur.com/AUtNKgd.jpg + FaceURL: https://i.imgur.com/EsVypo5.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3156': + BackIsHidden: true + BackURL: https://i.imgur.com/fM8NK9t.jpg + FaceURL: https://i.imgur.com/GBsIKbP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3157': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/NmPvmKH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3158': + BackIsHidden: true + BackURL: https://i.imgur.com/0hB7mzi.jpg + FaceURL: https://i.imgur.com/Lpal9JU.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3159': + BackIsHidden: true + BackURL: https://i.imgur.com/iAgnB10.jpg + FaceURL: https://i.imgur.com/HockzvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3160': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/iajVyjP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 315900 + - 315600 + - 100200 + - 100300 + - 100400 + - 315800 + - 100600 + - 315400 + - 100800 + - 315700 + - 315500 + - 316000 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e0000c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: Spoils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.201 + posY: 3.531 + posZ: 44.276 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 97f8a2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Spoils +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69 + posY: 3.47 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Custom_Model_Bag Set-aside cc6fb0/Custom_Tile 77643e.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Custom_Model_Bag Set-aside cc6fb0/Custom_Tile 77643e.yaml new file mode 100644 index 000000000..f0e62d98b --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Custom_Model_Bag Set-aside cc6fb0/Custom_Tile 77643e.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125353191/BDEBB5121A07EC12A04E749B335D01A4D4702A43/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125357797/FD3A585D86E22574B815CC630924027284122EF3/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 77643e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 3.64 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 0.55 + scaleY: 1.0 + scaleZ: 0.55 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Custom_Model_Bag Set-aside cc6fb0/Custom_Tile 8023b7.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Custom_Model_Bag Set-aside cc6fb0/Custom_Tile 8023b7.yaml new file mode 100644 index 000000000..a2237d3ef --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Custom_Model_Bag Set-aside cc6fb0/Custom_Tile 8023b7.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125353191/BDEBB5121A07EC12A04E749B335D01A4D4702A43/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125361354/DB7B50BCF6C275C3C25843331D5C8EC68A6F9E57/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8023b7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 3.66 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 0.55 + scaleY: 1.0 + scaleZ: 0.55 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Custom_Model_Bag Set-aside cc6fb0/Custom_Tile 961a46.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Custom_Model_Bag Set-aside cc6fb0/Custom_Tile 961a46.yaml new file mode 100644 index 000000000..3516e406e --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Custom_Model_Bag Set-aside cc6fb0/Custom_Tile 961a46.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125353191/BDEBB5121A07EC12A04E749B335D01A4D4702A43/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125360284/CBE3FFC95062445A9B6BC2B585BED340504256F7/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 961a46 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 3.66 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 0.55 + scaleY: 1.0 + scaleZ: 0.55 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Deck 24dd2a.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Deck 24dd2a.yaml new file mode 100644 index 000000000..184b34227 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Deck 24dd2a.yaml @@ -0,0 +1,296 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 307900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3079': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/bpaXYOk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Yahar'gul's Legacy + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c0dc8eb9-00da-41ee-80d7-d9c70885c8aa","type":"Enemy","victory":1,"class":"Mythos","traits":"Abomination. + Cursed. Elite"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The One Reborn + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -7.027 + posY: 3.019 + posZ: -71.5 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3080': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/W2lufey.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: The Storm of Bones + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9b6e4a4f-2296-4201-aa48-7ef3cc3bbc31","type":"Enemy","victory":2,"class":"Mythos","traits":"Humanoid. + Beast. Geist. Elite"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Darkbeast Paarl + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -8.206 + posY: 3.019 + posZ: -72.116 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 307800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3078': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/Lk48cHR/469818d3c805.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: An Unquenchable Thirst + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5a4e8a42-7082-47df-bd49-54153ce46743","type":"Enemy","victory":1,"class":"Mythos","traits":"Humanoid. + Beast. Elite"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Starved Beast + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -6.523 + posY: 3.019 + posZ: -69.497 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/V3a92pt.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: One Sick Puppy + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"249966af-3975-41d5-b914-7ea61603706a","type":"Enemy","victory":1,"class":"Mythos","traits":"Humanoid. + Beast. Elite"}' + GUID: b47a65 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Abhorrent Beast + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -4.417 + posY: 2.319 + posZ: -64.931 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/V3a92pt.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3078': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/Lk48cHR/469818d3c805.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3079': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/bpaXYOk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3080': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/W2lufey.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 307900 +- 308000 +- 307800 +- 100000 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 24dd2a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.56 + posZ: 3.86 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Deck d58c7f.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Deck d58c7f.yaml new file mode 100644 index 000000000..a0b62c0d1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Deck d58c7f.yaml @@ -0,0 +1,284 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 275900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/ybl3nwb.jpg + FaceURL: https://i.imgur.com/ICNXgx2.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b326de72-e5e1-4c9d-b561-0590a6720679"}' + GUID: 0a09b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Tangled Wood, A Descent into Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.725 + posY: 1.599 + posZ: 0.373 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 276100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2761': + BackIsHidden: true + BackURL: https://i.imgur.com/ITDhpTo.jpg + FaceURL: https://i.imgur.com/rKU7xLu.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"2399bad3-cef7-49ea-a3bc-7ce245d4d94c"}' + GUID: 89b70a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Tangled Wood, Forbidden from Sight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.725 + posY: 1.63 + posZ: 0.373 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 283700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2837': + BackIsHidden: true + BackURL: https://i.imgur.com/tKAHr3Y.jpg + FaceURL: https://i.imgur.com/WG2Vn82.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6ee34e05-0cc0-4bf7-8834-e19ee921b7fd"}' + GUID: 417ac3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Tangled Wood, Guarded by the Dead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.725 + posY: 1.664 + posZ: 0.373 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 276000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2760': + BackIsHidden: true + BackURL: https://i.imgur.com/pkVU4FJ.jpg + FaceURL: https://i.imgur.com/dfJ8Sdz.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"03c0c833-2aa3-4323-94d2-5bf5c7c51bd1"}' + GUID: f4548a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Tangled Wood, Abandoned and Decrepit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.725 + posY: 1.674 + posZ: 0.373 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/ybl3nwb.jpg + FaceURL: https://i.imgur.com/ICNXgx2.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '2760': + BackIsHidden: true + BackURL: https://i.imgur.com/pkVU4FJ.jpg + FaceURL: https://i.imgur.com/dfJ8Sdz.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '2761': + BackIsHidden: true + BackURL: https://i.imgur.com/ITDhpTo.jpg + FaceURL: https://i.imgur.com/rKU7xLu.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '2837': + BackIsHidden: true + BackURL: https://i.imgur.com/tKAHr3Y.jpg + FaceURL: https://i.imgur.com/WG2Vn82.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +DeckIDs: +- 275900 +- 276100 +- 283700 +- 276000 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d58c7f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.73 + posY: 1.62 + posZ: 0.37 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Deck Hunters of Yharnam 126df4.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Deck Hunters of Yharnam 126df4.yaml new file mode 100644 index 000000000..7707b4d86 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Deck Hunters of Yharnam 126df4.yaml @@ -0,0 +1,802 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3085': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/vE7O0Ra.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e56a85cb-fc19-4ddc-8566-2f1fe96c1c6a","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Blood-Drunk. Hunter of Yharnam. Elite"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Drunk Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.985 + posY: 1.495 + posZ: -28.492 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3088': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i5NXyz4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d0b6eeaa-aa99-4aa2-b111-11f603d6b3f6","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Healing Church Doctor + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.825 + posY: 1.531 + posZ: -28.437 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3090': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2lnY2Es.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"843a9709-60a8-4b70-87f1-941470854caf","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Choir Assassin + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.656 + posY: 1.573 + posZ: -28.031 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3084': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/e15jXj1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5363b6cf-c71a-45da-a6a0-9b67a87bd18f","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunter of the Old Workshop + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.025 + posY: 1.582 + posZ: -29.212 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3094': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/BDAuOZG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6930b87f-8066-4e7f-8628-79b9143ec63e","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Servitor. Hunter of Yharnam. Elite"}' + GUID: fbf974 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Healing Church Executioner + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.064 + posY: 1.592 + posZ: -28.811 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3093': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/eYt1jRE.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0e0bf47f-8483-4818-a138-ddb26ba901f0","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Pthumerian. Hunter of Yharnam. Elite"}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Keeper of the Old Lords + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.842 + posY: 1.602 + posZ: -27.87 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/VwF1BDL/16413c15ef3b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e830c002-ba0c-4e93-96fb-fd72128e587a","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e0000a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Powder Keg Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.467 + posY: 1.611 + posZ: -29.442 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3086': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/US5wPNi.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"834bf275-d36b-4446-a690-91e220099e0a","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Beast. Hunter of Yharnam. Elite"}' + GUID: e0000b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge-Touched Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.685 + posY: 1.682 + posZ: -28.304 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3087': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/uSX3Fzg.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f0ceca69-63de-4ae4-9ff6-4da00c815a9a","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e00009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Moon-Scented Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.952 + posY: 1.631 + posZ: -29.179 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GGgyNcv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"eb50c9bd-0fc4-413a-b6ab-770dde2973d8","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e0000c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tomb Prospector + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.09 + posY: 1.638 + posZ: -28.596 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/hLRXku8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"82baaac1-ae4f-4cbc-ac8f-34da27161ff3","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e0000d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vileblood Knight + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.939 + posY: 1.65 + posZ: -28.875 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3092': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/OSGZbtr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7d8901c5-d475-4e5e-995e-055e9b707186","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Servitor. Hunter of Yharnam. Elite"}' + GUID: e0000e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yahar'gul Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.574 + posY: 1.657 + posZ: -29.055 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/VwF1BDL/16413c15ef3b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GGgyNcv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/hLRXku8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3084': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/e15jXj1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3085': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/vE7O0Ra.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3086': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/US5wPNi.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3087': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/uSX3Fzg.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3088': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i5NXyz4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3090': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2lnY2Es.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3092': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/OSGZbtr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3093': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/eYt1jRE.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3094': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/BDAuOZG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 308500 +- 308800 +- 309000 +- 308400 +- 309400 +- 309300 +- 100900 +- 308600 +- 308700 +- 101100 +- 101200 +- 309200 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 126df4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Hunters of Yharnam +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: -17.12 + posY: 1.6 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Deck Scenario 3 - Night Unending 36bf73.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Deck Scenario 3 - Night Unending 36bf73.yaml new file mode 100644 index 000000000..0df905268 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Deck Scenario 3 - Night Unending 36bf73.yaml @@ -0,0 +1,934 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309600 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/8Qs1M4i.jpg + FaceURL: https://i.imgur.com/6OMU5YO.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"283a2039-4610-4278-82f0-87777562f32a","type":"Location","class":"Mythos","traits":"Woods. + Mill","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}],"victory":1},"locationBack":{"icons":null}}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Abandoned Mill + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100100 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.ibb.co/1JSZRrx/824063054ffe.jpg + FaceURL: https://i.ibb.co/S6gqGxK/8e5cde07ae79.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d2d3226e-8bf4-4047-92cb-c6fc2db04df4","type":"Location","class":"Mythos","traits":"Woods","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":null}}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Burial Grove + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100200 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/saiIlmT.jpg + FaceURL: https://i.imgur.com/DXkY6LM.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"db5f0606-91ed-4142-8087-989dad009150","type":"Location","class":"Mythos","traits":"Woods","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":null}}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Derelict Coachhouse + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100300 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.ibb.co/YkSRtg3/f026a0149244.jpg + FaceURL: https://i.ibb.co/Xyf66mZ/da061ef3589c.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"3518136a-0667-4f86-8252-b321665df281","type":"Location","class":"Mythos","traits":"Woods. + Village","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":null}}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deserted Trapping Village + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100400 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.ibb.co/T1rg5nT/b483383400b1.jpg + FaceURL: https://i.ibb.co/sbN5T5Y/8446c9830b38.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"01ab3e7d-aec9-4e6a-b1d0-a31aed46efdf","type":"Location","class":"Mythos","traits":"Woods","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":null}}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gibbeting Path + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100500 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/21SYDc0.jpg + FaceURL: https://i.imgur.com/Swz7Plf.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"66382f51-ff3a-485a-af29-1ec483cc073f","type":"Location","class":"Mythos","traits":"Woods. + Village. Graveyard","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":null}}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hemwick Charnel Lane + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100600 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.ibb.co/FDH9pjf/6931b789455d.jpg + FaceURL: https://i.ibb.co/10Yh2wX/d26e963bedd8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"2b21bae6-a6ac-4c90-add9-16271a424559","type":"Location","class":"Mythos","traits":"Woods","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":null}}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Misty Weald + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100700 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/4JoPy9C.jpg + FaceURL: https://i.imgur.com/Mm1IYso.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"757cc34b-45c3-40d7-947c-960eff3764d7","type":"Location","class":"Mythos","traits":"Woods","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":null}}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Moonlit Clearing + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100800 + CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/4JoPy9C.jpg + FaceURL: https://i.imgur.com/Mm1IYso.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"757cc34b-45c3-40d7-947c-960eff3764d7","type":"Location","class":"Mythos","traits":"Woods","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":null}}' + GUID: e00009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Moonlit Clearing + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101000 + CustomDeck: + '1010': + BackIsHidden: true + BackURL: https://i.imgur.com/kd7VBnl.jpg + FaceURL: https://i.imgur.com/YNF1Nah.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f8a52409-35d1-4290-a9ce-9227a54342c3","type":"Location","class":"Mythos","traits":"Woods","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":null}}' + GUID: e0000b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rotting Thicket + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309900 + CustomDeck: + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/5njrb1U.jpg + FaceURL: https://i.imgur.com/1ChumqK.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e754a573-569e-42d6-b06b-b6674ffbac13","type":"Location","class":"Mythos","traits":"Woods","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":null}}' + GUID: e0000c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shadowed Woods + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309700 + CustomDeck: + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/5njrb1U.jpg + FaceURL: https://i.imgur.com/1ChumqK.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e754a573-569e-42d6-b06b-b6674ffbac13","type":"Location","class":"Mythos","traits":"Woods","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":null}}' + GUID: e0000d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shadowed Woods + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101300 + CustomDeck: + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/5njrb1U.jpg + FaceURL: https://i.imgur.com/1ChumqK.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e754a573-569e-42d6-b06b-b6674ffbac13","type":"Location","class":"Mythos","traits":"Woods","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":null}}' + GUID: e0000e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shadowed Woods + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101400 + CustomDeck: + '1014': + BackIsHidden: true + BackURL: https://i.imgur.com/RNLCOv7.jpg + FaceURL: https://i.imgur.com/ZMFA4MA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ae48bbe8-24eb-4600-bb53-1f8036bc7aed","type":"Location","class":"Mythos","traits":"Woods. + Mausoleum","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":null}}' + GUID: e0000f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tomb of the Queen + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101500 + CustomDeck: + '1015': + BackIsHidden: true + BackURL: https://i.ibb.co/R2YTymw/f86c8e2770cc.jpg + FaceURL: https://i.ibb.co/M18jt18/18fc5c48fe5e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7cdcbb59-7663-4a0e-a4d3-5000497998a6","type":"Location","class":"Mythos","traits":"Woods. + Graveyard","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":null}}' + GUID: e00010 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Untended Graves + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.ibb.co/1JSZRrx/824063054ffe.jpg + FaceURL: https://i.ibb.co/S6gqGxK/8e5cde07ae79.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/saiIlmT.jpg + FaceURL: https://i.imgur.com/DXkY6LM.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1003': + BackIsHidden: true + BackURL: https://i.ibb.co/YkSRtg3/f026a0149244.jpg + FaceURL: https://i.ibb.co/Xyf66mZ/da061ef3589c.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1004': + BackIsHidden: true + BackURL: https://i.ibb.co/T1rg5nT/b483383400b1.jpg + FaceURL: https://i.ibb.co/sbN5T5Y/8446c9830b38.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/21SYDc0.jpg + FaceURL: https://i.imgur.com/Swz7Plf.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1006': + BackIsHidden: true + BackURL: https://i.ibb.co/FDH9pjf/6931b789455d.jpg + FaceURL: https://i.ibb.co/10Yh2wX/d26e963bedd8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/4JoPy9C.jpg + FaceURL: https://i.imgur.com/Mm1IYso.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/4JoPy9C.jpg + FaceURL: https://i.imgur.com/Mm1IYso.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1010': + BackIsHidden: true + BackURL: https://i.imgur.com/kd7VBnl.jpg + FaceURL: https://i.imgur.com/YNF1Nah.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/5njrb1U.jpg + FaceURL: https://i.imgur.com/1ChumqK.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1014': + BackIsHidden: true + BackURL: https://i.imgur.com/RNLCOv7.jpg + FaceURL: https://i.imgur.com/ZMFA4MA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1015': + BackIsHidden: true + BackURL: https://i.ibb.co/R2YTymw/f86c8e2770cc.jpg + FaceURL: https://i.ibb.co/M18jt18/18fc5c48fe5e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3096': + BackIsHidden: true + BackURL: https://i.imgur.com/8Qs1M4i.jpg + FaceURL: https://i.imgur.com/6OMU5YO.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3097': + BackIsHidden: true + BackURL: https://i.imgur.com/5njrb1U.jpg + FaceURL: https://i.imgur.com/1ChumqK.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3099': + BackIsHidden: true + BackURL: https://i.imgur.com/5njrb1U.jpg + FaceURL: https://i.imgur.com/1ChumqK.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +DeckIDs: +- 309600 +- 100100 +- 100200 +- 100300 +- 100400 +- 100500 +- 100600 +- 100700 +- 100800 +- 101000 +- 309900 +- 309700 +- 101300 +- 101400 +- 101500 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 36bf73 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Scenario 3 - Night Unending +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.07 + posY: 1.61 + posZ: -11.43 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Deck gates e00015.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Deck gates e00015.yaml new file mode 100644 index 000000000..d280961ec --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Deck gates e00015.yaml @@ -0,0 +1,224 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 306800 + CustomDeck: + '1016': + BackIsHidden: true + BackURL: https://i.imgur.com/7v8whz7.jpg + FaceURL: https://i.imgur.com/oHVqe69.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c7059c6f-10b6-45cc-828e-250ce766685a","type":"Location","class":"Mythos","traits":"Woods. + Byrgenwerth","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":null}}' + GUID: e00012 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gates of Byrgenwerth + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 306900 + CustomDeck: + '1017': + BackIsHidden: true + BackURL: https://i.imgur.com/B9r4WOg.jpg + FaceURL: https://i.imgur.com/nIPNZIW.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"4b83e95f-f798-4b3c-adb4-2de53a009547","type":"Location","class":"Mythos","traits":"Woods. + Byrgenwerth","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":null}}' + GUID: e00013 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gates of Byrgenwerth + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 307000 + CustomDeck: + '1018': + BackIsHidden: true + BackURL: https://i.imgur.com/c6O4Sue.jpg + FaceURL: https://i.imgur.com/pCMYxaw.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7975846d-0628-4d94-99ec-36a090cc5b22","type":"Location","class":"Mythos","traits":"Woods. + Byrgenwerth","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":null}}' + GUID: e00014 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gates of Byrgenwerth + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '3068': + BackIsHidden: true + BackURL: https://i.imgur.com/7v8whz7.jpg + FaceURL: https://i.imgur.com/oHVqe69.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3069': + BackIsHidden: true + BackURL: https://i.imgur.com/B9r4WOg.jpg + FaceURL: https://i.imgur.com/nIPNZIW.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3070': + BackIsHidden: true + BackURL: https://i.imgur.com/c6O4Sue.jpg + FaceURL: https://i.imgur.com/pCMYxaw.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +DeckIDs: +- 306800 +- 306900 +- 307000 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e00015 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: gates +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.55 + posZ: -15.28 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Notecard Encounter Deck Setup Instructions 60490e.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Notecard Encounter Deck Setup Instructions 60490e.yaml new file mode 100644 index 000000000..a49e078a4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Notecard Encounter Deck Setup Instructions 60490e.yaml @@ -0,0 +1,49 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '1. Recognition is 4 or less: Use bag 1 + + 2: Recognition is 5 or greater: Use bag 2 + + 3: Recognition is 6 or greater: Add 1 random enemy from the Metamorphosis Set (Optional) + + 4: Add 1 random enemy from the Hunters of Yharnam set + + 5. recognition is 3 or 4, add one random card from the Agents of Impurity set. if + 5 or higher, shuffle two cards.' +DragSelectable: true +GMNotes: '' +GUID: 60490e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Notecard +Nickname: Encounter Deck Setup Instructions +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.41 + posY: 1.59 + posZ: 11.29 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Notecard Forbidden Woods Deck Setup 3b7680.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Notecard Forbidden Woods Deck Setup 3b7680.yaml new file mode 100644 index 000000000..d01f62aea --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 3 Night Unending 5c4cb0/Notecard Forbidden Woods Deck Setup 3b7680.yaml @@ -0,0 +1,45 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '1. Randomly select 1 Gates of Byrgenwerth + + 2. Shuffle it with 4 other Forbidden Woods locations to create the bottom 5 cards + of the deck + + 3. Shuffle the remaining cards and place them on top' +DragSelectable: true +GMNotes: '' +GUID: 3b7680 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Notecard +Nickname: Forbidden Woods Deck Setup +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.09 + posY: 1.59 + posZ: -13.55 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5.ttslua new file mode 100644 index 000000000..d3a91c848 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5.ttslua @@ -0,0 +1,503 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + +function onload(saved_data) + fresh = true + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + moveList = {} + moveGuid = nil + + if next(memoryList) == nil then + createSetupButton() + else + fresh = false + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects(move) + local howManyButtons = 0 + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + 2 + objPos.z = objPos.z * globalScaleFactor * 0.9 + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=500, width=500, + color=color, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons(move) + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} + local color = {0,1,0,0.6} + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + theList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end + self.editButton({index=index, color=color}) + theList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + moveList = {} + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil +end + +--Saves selections +function buttonClick_submit() + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + memoryListBackup[guid] = nil + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +--Resets bag to starting status +function buttonClick_reset() + fresh = true + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end + local deltaPos = {} + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + yOffset + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5.yaml new file mode 100644 index 000000000..b74dfcce9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5.yaml @@ -0,0 +1,100 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +AttachedDecals: +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ + Name: dunwich_back + Size: 7.4 + Transform: + posX: -0.0021877822 + posY: -0.08963572 + posZ: -0.00288731651 + rotX: 270.0 + rotY: 359.869568 + rotZ: 0.0 + scaleX: 2.00000215 + scaleY: 2.00000238 + scaleZ: 2.00000262 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag 4 The Frailty of Men 4117f5/Deck Hunters of Yharnam (Enemy + Hunters) e0000f.yaml' +- !include 'Custom_Model_Bag 4 The Frailty of Men 4117f5/Notecard Encounter Deck Setup + Instructions 08fc24.yaml' +- !include 'Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Private Library 158464.yaml' +- !include 'Custom_Model_Bag 4 The Frailty of Men 4117f5/Deck Hunters of Yharnam 24c32b.yaml' +- !include 'Custom_Model_Bag 4 The Frailty of Men 4117f5/Bag 6+ Recognition 2be975.yaml' +- !include 'Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Rooftops 2c2534.yaml' +- !include 'Custom_Model_Bag 4 The Frailty of Men 4117f5/Card University Foyer 36c3bb.yaml' +- !include 'Custom_Model_Bag 4 The Frailty of Men 4117f5/Bag 5 Recognition 508c12.yaml' +- !include 'Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Research Hall 528c9e.yaml' +- !include 'Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Beneath the Surface + 542eaf.yaml' +- !include 'Custom_Model_Bag 4 The Frailty of Men 4117f5/Deck Memories 75101d.yaml' +- !include 'Custom_Model_Bag 4 The Frailty of Men 4117f5/Card The Frailty of Men 8bc352.yaml' +- !include 'Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Annex a2291f.yaml' +- !include 'Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside + cde486.yaml' +- !include 'Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Astronomy Hall e00002.yaml' +- !include 'Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Lecture Hall e00003.yaml' +- !include 'Custom_Model_Bag 4 The Frailty of Men 4117f5/Deck Agenda e00005.yaml' +- !include 'Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Faculty Offices e00009.yaml' +- !include 'Custom_Model_Bag 4 The Frailty of Men 4117f5/Deck fc5261.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: https://i.imgur.com/khApOat.jpg + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: 'Bloodborne: City of the Unseen' +DragSelectable: true +GMNotes: '' +GUID: 4117f5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model_Bag 4 The Frailty of Men 4117f5.ttslua' +LuaScriptState: '{"ml":{"08fc24":{"lock":false,"pos":{"x":-12.3099,"y":1.59,"z":11.2244},"rot":{"x":0,"y":90.0001,"z":0}},"158464":{"lock":false,"pos":{"x":-23.7002,"y":1.5337,"z":15.2661},"rot":{"x":0.001,"y":270.4788,"z":179.9987}},"24c32b":{"lock":false,"pos":{"x":-17.1193,"y":1.5987,"z":-0.03},"rot":{"x":0,"y":269.998,"z":0}},"2be975":{"lock":false,"pos":{"x":-17.12,"y":1.335,"z":11.46},"rot":{"x":0,"y":90.0112,"z":0}},"2c2534":{"lock":false,"pos":{"x":-23.6682,"y":1.5326,"z":0.034},"rot":{"x":0.0105,"y":269.9998,"z":359.9302}},"36c3bb":{"lock":false,"pos":{"x":-36.84,"y":1.5333,"z":0},"rot":{"x":0.0039,"y":269.9989,"z":359.9765}},"508c12":{"lock":false,"pos":{"x":-17.1172,"y":1.335,"z":15.1883},"rot":{"x":0,"y":89.9999,"z":0}},"528c9e":{"lock":false,"pos":{"x":-30.2411,"y":1.5332,"z":7.65},"rot":{"x":0.0042,"y":269.9992,"z":359.9745}},"542eaf":{"lock":false,"pos":{"x":-2.6886,"y":1.5966,"z":-5.0488},"rot":{"x":0,"y":270.0001,"z":0}},"75101d":{"lock":false,"pos":{"x":-3.9369,"y":1.6424,"z":14.9507},"rot":{"x":0,"y":270.0004,"z":180}},"8bc352":{"lock":false,"pos":{"x":-3.956,"y":1.5966,"z":-10.4413},"rot":{"x":0,"y":269.9999,"z":0}},"a2291f":{"lock":false,"pos":{"x":-23.6761,"y":1.5941,"z":-7.6376},"rot":{"x":-0.0035,"y":270.5295,"z":356.8365}},"cde486":{"lock":false,"pos":{"x":1.6964,"y":1.558,"z":14.2789},"rot":{"x":0,"y":224.9918,"z":0}},"e00002":{"lock":false,"pos":{"x":-23.6399,"y":1.5336,"z":-15.302},"rot":{"x":0,"y":269.9995,"z":0}},"e00003":{"lock":false,"pos":{"x":-30.24,"y":1.5332,"z":-7.6501},"rot":{"x":0.0044,"y":270.0008,"z":359.9727}},"e00005":{"lock":false,"pos":{"x":-2.725,"y":1.6184,"z":0.373},"rot":{"x":0,"y":270,"z":0}},"e00009":{"lock":false,"pos":{"x":-23.64,"y":1.5336,"z":7.65},"rot":{"x":0,"y":270.0083,"z":0}},"fc5261":{"lock":false,"pos":{"x":-17.1195,"y":1.5602,"z":3.8602},"rot":{"x":0,"y":269.9899,"z":0}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '4: The Frailty of Men' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.74 + posY: 1.48 + posZ: 4.5 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Bag 5 Recognition 508c12.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Bag 5 Recognition 508c12.ttslua new file mode 100644 index 000000000..baa7b8b87 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Bag 5 Recognition 508c12.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1.25 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + objPos.z = objPos.z * globalScaleFactor + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + memoryList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + end +end + +--Resets bag to starting status +function buttonClick_reset() + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Bag 5 Recognition 508c12.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Bag 5 Recognition 508c12.yaml new file mode 100644 index 000000000..775e97a7a --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Bag 5 Recognition 508c12.yaml @@ -0,0 +1,2331 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1021': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Uci3pnM.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0f690e5a-369d-467d-8b8b-2d3e61a20bf6","type":"Enemy","class":"Mythos","traits":"Humanoid. + Kin. Mutated"}' + GUID: 380c1c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Garden of Eyes + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -7.082 + posY: 2.505 + posZ: -20.168 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1021': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Uci3pnM.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0f690e5a-369d-467d-8b8b-2d3e61a20bf6","type":"Enemy","class":"Mythos","traits":"Humanoid. + Kin. Mutated"}' + GUID: e498d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Garden of Eyes + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -5.73 + posY: 2.523 + posZ: -19.231 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 286400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2711': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/dbLVpgf/61a13c5df9c3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"4cb073f4-491d-4030-ad08-97ece3a1ba99"}' + GUID: aadab3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Silver Reflection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.406 + posY: 1.936 + posZ: -42.413 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 286400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2711': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/dbLVpgf/61a13c5df9c3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"4cb073f4-491d-4030-ad08-97ece3a1ba99"}' + GUID: '334361' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Silver Reflection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.57 + posY: 1.951 + posZ: -42.432 + rotX: 0.0 + rotY: 270.0 + rotZ: 182.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 286400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2711': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/dbLVpgf/61a13c5df9c3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"4cb073f4-491d-4030-ad08-97ece3a1ba99"}' + GUID: bfbbc0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Silver Reflection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.915 + posY: 1.94 + posZ: -42.841 + rotX: 0.0 + rotY: 270.0 + rotZ: 183.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 123100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1231': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/K5Q8vrd/ad2a0720d6cb.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"20ac41b2-5552-4db9-b0c1-b03e44a5bfae"}' + GUID: cfe8f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arkham Surging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.659 + posY: 1.611 + posZ: -15.678 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 123100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1231': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/K5Q8vrd/ad2a0720d6cb.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"20ac41b2-5552-4db9-b0c1-b03e44a5bfae"}' + GUID: 373bce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arkham Surging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.827 + posY: 1.653 + posZ: -15.309 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 123100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1231': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/K5Q8vrd/ad2a0720d6cb.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"20ac41b2-5552-4db9-b0c1-b03e44a5bfae"}' + GUID: e00120 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arkham Surging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.368 + posY: 1.687 + posZ: -15.508 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 123500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1235': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/G595GQz/b92f0e84715e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"59f83bed-897b-45cb-a0e4-d5152a816839"}' + GUID: 59b408 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yharnam Surging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.26 + posY: 1.595 + posZ: -14.098 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 123500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1235': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/G595GQz/b92f0e84715e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"59f83bed-897b-45cb-a0e4-d5152a816839"}' + GUID: e00124 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yharnam Surging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.946 + posY: 1.631 + posZ: -14.129 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 123500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1235': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/G595GQz/b92f0e84715e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"59f83bed-897b-45cb-a0e4-d5152a816839"}' + GUID: f9b188 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yharnam Surging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.191 + posY: 1.667 + posZ: -14.043 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 110200 + CustomDeck: + '1102': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/wJFgYcw/63f4fe5a8b99.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"27c12434-447b-4c72-8b8e-fa5f29d95ff4"}' + GUID: e00081 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nightmare Apostle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 110300 + CustomDeck: + '1103': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/wJFgYcw/63f4fe5a8b99.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"27c12434-447b-4c72-8b8e-fa5f29d95ff4"}' + GUID: e00082 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nightmare Apostle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 286500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2700': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bzsC6LN/a346fdde39f4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"08fed331-8669-4048-a88e-3ef0db8427a0"}' + GUID: 8331fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Leap of Faith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.496 + posY: 2.335 + posZ: -51.789 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 286500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2700': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bzsC6LN/a346fdde39f4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"08fed331-8669-4048-a88e-3ef0db8427a0"}' + GUID: fe33cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Leap of Faith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.225 + posY: 2.337 + posZ: -49.939 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 110400 + CustomDeck: + '1104': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/wJFgYcw/63f4fe5a8b99.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"27c12434-447b-4c72-8b8e-fa5f29d95ff4"}' + GUID: e00083 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nightmare Apostle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 110500 + CustomDeck: + '1105': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/wJFgYcw/63f4fe5a8b99.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"27c12434-447b-4c72-8b8e-fa5f29d95ff4"}' + GUID: e00084 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nightmare Apostle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 110900 + CustomDeck: + '1109': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/FXw20gJ/0b9c1c1b9721.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"3618d48b-a443-428d-af85-8fd75bc7560f"}' + GUID: e00088 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Bulwark Guarding Sleep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 111000 + CustomDeck: + '1110': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/FXw20gJ/0b9c1c1b9721.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"3618d48b-a443-428d-af85-8fd75bc7560f"}' + GUID: e00089 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Bulwark Guarding Sleep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 111100 + CustomDeck: + '1111': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/FXw20gJ/0b9c1c1b9721.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"3618d48b-a443-428d-af85-8fd75bc7560f"}' + GUID: e0008a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Bulwark Guarding Sleep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 111200 + CustomDeck: + '1112': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/qF4Y21j/596d722d679a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"91af1238-6da1-4364-ad08-522b1dcc86d1"}' + GUID: e0008b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Veil Torn Asunder + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271600 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/Xyg7wCx/7fbddb4bfe68.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"308018cb-7c1f-4b1e-8cf3-3d4727fb760e"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Curious Mania + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271400 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/jhWrXtF/d5dca75bbef9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"815bf166-e5b3-4f6f-8c63-d99d2b9e4d94"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Curious Mania + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271700 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/fDr9W24/0a0107265696.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8c44940d-d6d0-4230-bf16-7f9b29aaf096"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fragmented Self + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271900 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/fDr9W24/0a0107265696.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8c44940d-d6d0-4230-bf16-7f9b29aaf096"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fragmented Self + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271800 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/fDr9W24/0a0107265696.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8c44940d-d6d0-4230-bf16-7f9b29aaf096"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fragmented Self + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 348800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/bEZt8kQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"30c99958-dc27-46c0-adb0-51d8e91192e6"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Oozing Scholar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.219 + posY: 1.502 + posZ: -26.387 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 286700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/bEZt8kQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"30c99958-dc27-46c0-adb0-51d8e91192e6"}' + GUID: 02800f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Oozing Scholar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.308 + posY: 1.874 + posZ: -26.765 + rotX: 0.0 + rotY: 270.0 + rotZ: 343.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 286800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/bEZt8kQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"30c99958-dc27-46c0-adb0-51d8e91192e6"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Oozing Scholar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.16 + posY: 1.831 + posZ: -26.229 + rotX: 0.0 + rotY: 270.0 + rotZ: 344.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 337800 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/IHvVmb8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"71d1193c-92c4-46c5-9a05-62c1d9662f19","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blessing of Eyes + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 338100 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/IHvVmb8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"71d1193c-92c4-46c5-9a05-62c1d9662f19","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blessing of Eyes + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 318000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3180': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/m3p8gp7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"734a8658-09d1-4e51-b4b5-badca908727b","type":"Treachery","class":"Mythos","traits":"Omen"}' + GUID: 921e52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Remorse + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -8.449 + posY: 1.269 + posZ: 54.652 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 338300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3383': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/45h3n8a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"eabcb06c-33d9-456e-af73-b146114577bb","type":"Treachery","class":"Mythos","traits":"Mystery"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Burden of Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -29.019 + posY: 2.505 + posZ: -43.505 + rotX: 0.0 + rotY: 179.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3396': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"32dc122f-fcf7-454a-81fe-f5e2c78f6722","type":"Treachery","class":"Mythos","traits":"Scheme"}' + GUID: 3b6b8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Polite Exchange + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -27.151 + posY: 2.505 + posZ: -45.943 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"32dc122f-fcf7-454a-81fe-f5e2c78f6722","type":"Treachery","class":"Mythos","traits":"Scheme"}' + GUID: 7c86a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Polite Exchange + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -27.631 + posY: 2.505 + posZ: -41.706 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 338000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3380': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/45h3n8a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"eabcb06c-33d9-456e-af73-b146114577bb","type":"Treachery","class":"Mythos","traits":"Mystery"}' + GUID: 8a0da0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Burden of Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -29.876 + posY: 3.482 + posZ: -39.789 + rotX: 0.0 + rotY: 179.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 317700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3177': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/m3p8gp7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"734a8658-09d1-4e51-b4b5-badca908727b","type":"Treachery","class":"Mythos","traits":"Omen"}' + GUID: ce73cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Remorse + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -8.456 + posY: 1.304 + posZ: 54.519 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 337900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3379': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/E1HnRfR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"1de21c1a-29cd-4944-a1bb-2a8dd486b045","type":"Treachery","class":"Mythos","traits":"Mystery"}' + GUID: e3e9eb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Uncertainty + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -30.473 + posY: 2.556 + posZ: -44.927 + rotX: 0.0 + rotY: 179.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 338200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3382': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/E1HnRfR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"1de21c1a-29cd-4944-a1bb-2a8dd486b045","type":"Treachery","class":"Mythos","traits":"Mystery"}' + GUID: 30426d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Uncertainty + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -29.99 + posY: 2.511 + posZ: -43.784 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1021': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Uci3pnM.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1102': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/wJFgYcw/63f4fe5a8b99.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1103': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/wJFgYcw/63f4fe5a8b99.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1104': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/wJFgYcw/63f4fe5a8b99.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1105': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/wJFgYcw/63f4fe5a8b99.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1109': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/FXw20gJ/0b9c1c1b9721.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1110': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/FXw20gJ/0b9c1c1b9721.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1111': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/FXw20gJ/0b9c1c1b9721.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1112': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/qF4Y21j/596d722d679a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1231': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/K5Q8vrd/ad2a0720d6cb.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1235': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/G595GQz/b92f0e84715e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2714': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/jhWrXtF/d5dca75bbef9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2716': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/Xyg7wCx/7fbddb4bfe68.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2717': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/fDr9W24/0a0107265696.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2718': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/fDr9W24/0a0107265696.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2719': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/fDr9W24/0a0107265696.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2864': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/dbLVpgf/61a13c5df9c3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2865': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bzsC6LN/a346fdde39f4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2867': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/bEZt8kQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2868': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/bEZt8kQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3177': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/m3p8gp7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3180': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/m3p8gp7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3378': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/IHvVmb8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3379': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/E1HnRfR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3380': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/45h3n8a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3381': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/IHvVmb8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3382': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/E1HnRfR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3383': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/45h3n8a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3396': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3488': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/bEZt8kQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 102100 + - 102100 + - 286400 + - 286400 + - 286400 + - 123100 + - 123100 + - 123100 + - 123500 + - 123500 + - 123500 + - 110200 + - 110300 + - 286500 + - 286500 + - 110400 + - 110500 + - 110900 + - 111000 + - 111100 + - 111200 + - 271600 + - 271400 + - 271700 + - 271900 + - 271800 + - 348800 + - 286700 + - 286800 + - 337800 + - 338100 + - 318000 + - 338300 + - 339600 + - 339700 + - 338000 + - 317700 + - 337900 + - 338200 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d7a09e + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.479 + posY: 3.806 + posZ: 16.083 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 508c12 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Bag 5 Recognition 508c12.ttslua' +LuaScriptState: '{"ml":{"d7a09e":{"lock":false,"pos":{"x":-3.9275,"y":1.7636,"z":5.7572},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 5 Recognition +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.74 + posY: 1.48 + posZ: 4.5 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Bag 6+ Recognition 2be975.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Bag 6+ Recognition 2be975.ttslua new file mode 100644 index 000000000..baa7b8b87 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Bag 6+ Recognition 2be975.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1.25 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + objPos.z = objPos.z * globalScaleFactor + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + memoryList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + end +end + +--Resets bag to starting status +function buttonClick_reset() + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Bag 6+ Recognition 2be975.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Bag 6+ Recognition 2be975.yaml new file mode 100644 index 000000000..d81ec6024 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Bag 6+ Recognition 2be975.yaml @@ -0,0 +1,2734 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1021': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Uci3pnM.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0f690e5a-369d-467d-8b8b-2d3e61a20bf6","type":"Enemy","class":"Mythos","traits":"Humanoid. + Kin. Mutated"}' + GUID: e0001e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Garden of Eyes + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -3.883 + posY: 2.607 + posZ: -17.751 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1021': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Uci3pnM.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0f690e5a-369d-467d-8b8b-2d3e61a20bf6","type":"Enemy","class":"Mythos","traits":"Humanoid. + Kin. Mutated"}' + GUID: a2013e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Garden of Eyes + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -4.325 + posY: 2.607 + posZ: -18.197 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 288200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2711': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/dbLVpgf/61a13c5df9c3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"4cb073f4-491d-4030-ad08-97ece3a1ba99"}' + GUID: aadab3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Silver Reflection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.406 + posY: 1.936 + posZ: -42.413 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 288200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2711': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/dbLVpgf/61a13c5df9c3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"4cb073f4-491d-4030-ad08-97ece3a1ba99"}' + GUID: '334361' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Silver Reflection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.57 + posY: 1.951 + posZ: -42.432 + rotX: 0.0 + rotY: 270.0 + rotZ: 182.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 288200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2711': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/dbLVpgf/61a13c5df9c3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"4cb073f4-491d-4030-ad08-97ece3a1ba99"}' + GUID: bfbbc0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Silver Reflection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.915 + posY: 1.94 + posZ: -42.841 + rotX: 0.0 + rotY: 270.0 + rotZ: 183.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 123100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1231': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/K5Q8vrd/ad2a0720d6cb.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"20ac41b2-5552-4db9-b0c1-b03e44a5bfae"}' + GUID: cfe8f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arkham Surging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.659 + posY: 1.611 + posZ: -15.678 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 123100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1231': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/K5Q8vrd/ad2a0720d6cb.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"20ac41b2-5552-4db9-b0c1-b03e44a5bfae"}' + GUID: 373bce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arkham Surging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.827 + posY: 1.653 + posZ: -15.309 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 123100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1231': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/K5Q8vrd/ad2a0720d6cb.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"20ac41b2-5552-4db9-b0c1-b03e44a5bfae"}' + GUID: e00120 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arkham Surging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.368 + posY: 1.687 + posZ: -15.508 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 123500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1235': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/G595GQz/b92f0e84715e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"59f83bed-897b-45cb-a0e4-d5152a816839"}' + GUID: 59b408 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yharnam Surging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.26 + posY: 1.595 + posZ: -14.098 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 123500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1235': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/G595GQz/b92f0e84715e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"59f83bed-897b-45cb-a0e4-d5152a816839"}' + GUID: e00124 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yharnam Surging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.946 + posY: 1.631 + posZ: -14.129 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 123500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1235': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/G595GQz/b92f0e84715e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"59f83bed-897b-45cb-a0e4-d5152a816839"}' + GUID: f9b188 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yharnam Surging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.191 + posY: 1.667 + posZ: -14.043 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 110200 + CustomDeck: + '1102': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/wJFgYcw/63f4fe5a8b99.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"27c12434-447b-4c72-8b8e-fa5f29d95ff4"}' + GUID: e00081 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nightmare Apostle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 110300 + CustomDeck: + '1103': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/wJFgYcw/63f4fe5a8b99.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"27c12434-447b-4c72-8b8e-fa5f29d95ff4"}' + GUID: e00082 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nightmare Apostle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 288400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2700': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bzsC6LN/a346fdde39f4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"08fed331-8669-4048-a88e-3ef0db8427a0"}' + GUID: 8331fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Leap of Faith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.496 + posY: 2.335 + posZ: -51.789 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 288400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2700': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bzsC6LN/a346fdde39f4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"08fed331-8669-4048-a88e-3ef0db8427a0"}' + GUID: fe33cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Leap of Faith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.225 + posY: 2.337 + posZ: -49.939 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 110400 + CustomDeck: + '1104': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/wJFgYcw/63f4fe5a8b99.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"27c12434-447b-4c72-8b8e-fa5f29d95ff4"}' + GUID: e00083 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nightmare Apostle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 110500 + CustomDeck: + '1105': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/wJFgYcw/63f4fe5a8b99.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"27c12434-447b-4c72-8b8e-fa5f29d95ff4"}' + GUID: e00084 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nightmare Apostle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 110900 + CustomDeck: + '1109': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/FXw20gJ/0b9c1c1b9721.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"3618d48b-a443-428d-af85-8fd75bc7560f"}' + GUID: e00088 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Bulwark Guarding Sleep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 111000 + CustomDeck: + '1110': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/FXw20gJ/0b9c1c1b9721.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"3618d48b-a443-428d-af85-8fd75bc7560f"}' + GUID: e00089 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Bulwark Guarding Sleep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 111100 + CustomDeck: + '1111': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/FXw20gJ/0b9c1c1b9721.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"3618d48b-a443-428d-af85-8fd75bc7560f"}' + GUID: e0008a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Bulwark Guarding Sleep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 111200 + CustomDeck: + '1112': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/qF4Y21j/596d722d679a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"91af1238-6da1-4364-ad08-522b1dcc86d1"}' + GUID: e0008b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Veil Torn Asunder + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271600 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/Xyg7wCx/7fbddb4bfe68.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"308018cb-7c1f-4b1e-8cf3-3d4727fb760e"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Curious Mania + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271400 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/jhWrXtF/d5dca75bbef9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"815bf166-e5b3-4f6f-8c63-d99d2b9e4d94"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Curious Mania + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271700 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/fDr9W24/0a0107265696.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8c44940d-d6d0-4230-bf16-7f9b29aaf096"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fragmented Self + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271900 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/fDr9W24/0a0107265696.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8c44940d-d6d0-4230-bf16-7f9b29aaf096"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fragmented Self + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271800 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/fDr9W24/0a0107265696.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8c44940d-d6d0-4230-bf16-7f9b29aaf096"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fragmented Self + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 318000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3180': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/m3p8gp7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"734a8658-09d1-4e51-b4b5-badca908727b","type":"Treachery","class":"Mythos","traits":"Omen"}' + GUID: 921e52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Remorse + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -8.449 + posY: 1.269 + posZ: 54.652 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 317700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3177': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/m3p8gp7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"734a8658-09d1-4e51-b4b5-badca908727b","type":"Treachery","class":"Mythos","traits":"Omen"}' + GUID: ce73cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Remorse + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -8.456 + posY: 1.304 + posZ: 54.519 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 320000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/bEZt8kQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"30c99958-dc27-46c0-adb0-51d8e91192e6"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Oozing Scholar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.219 + posY: 1.502 + posZ: -26.387 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 288600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/bEZt8kQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"30c99958-dc27-46c0-adb0-51d8e91192e6"}' + GUID: 02800f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Oozing Scholar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.308 + posY: 1.874 + posZ: -26.765 + rotX: 0.0 + rotY: 270.0 + rotZ: 343.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 288700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/bEZt8kQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"30c99958-dc27-46c0-adb0-51d8e91192e6"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Oozing Scholar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.16 + posY: 1.831 + posZ: -26.229 + rotX: 0.0 + rotY: 270.0 + rotZ: 344.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 319900 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Y9MNHaZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a2be9add-6868-496d-8f70-72b927b76a5e","type":"Treachery","class":"Mythos","traits":"Terror. + Omen"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Invisible Opposition + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 349300 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Y9MNHaZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a2be9add-6868-496d-8f70-72b927b76a5e","type":"Treachery","class":"Mythos","traits":"Terror. + Omen"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Invisible Opposition + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 319600 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/kdtbWc3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"07cdcb0e-1273-45d2-91f0-c8a2110fcfbf","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fury of the Bereaved + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"32dc122f-fcf7-454a-81fe-f5e2c78f6722","type":"Treachery","class":"Mythos","traits":"Scheme"}' + GUID: f2f7b4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Polite Exchange + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -24.231 + posY: 3.492 + posZ: -39.549 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"32dc122f-fcf7-454a-81fe-f5e2c78f6722","type":"Treachery","class":"Mythos","traits":"Scheme"}' + GUID: 5485da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Polite Exchange + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -23.326 + posY: 2.505 + posZ: -43.747 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 319500 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/kdtbWc3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"07cdcb0e-1273-45d2-91f0-c8a2110fcfbf","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fury of the Bereaved + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 349400 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i8i4fKT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ba959a72-7ab7-452f-8468-28d0df036568","type":"Treachery","class":"Mythos","traits":"Omen. + "}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vision of the Pthumerian Queen + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 319700 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i8i4fKT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ba959a72-7ab7-452f-8468-28d0df036568","type":"Treachery","class":"Mythos","traits":"Omen. + "}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vision of the Pthumerian Queen + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 349500 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i8i4fKT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ba959a72-7ab7-452f-8468-28d0df036568","type":"Treachery","class":"Mythos","traits":"Omen. + "}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vision of the Pthumerian Queen + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 337900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3379': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/E1HnRfR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"1de21c1a-29cd-4944-a1bb-2a8dd486b045","type":"Treachery","class":"Mythos","traits":"Mystery"}' + GUID: 9ac884 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Uncertainty + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -28.097 + posY: 2.582 + posZ: -41.628 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 338200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3382': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/E1HnRfR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"1de21c1a-29cd-4944-a1bb-2a8dd486b045","type":"Treachery","class":"Mythos","traits":"Mystery"}' + GUID: 4687cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Uncertainty + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -27.217 + posY: 2.505 + posZ: -43.209 + rotX: 0.0 + rotY: 181.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 338300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3383': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/45h3n8a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"eabcb06c-33d9-456e-af73-b146114577bb","type":"Treachery","class":"Mythos","traits":"Mystery"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Burden of Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -29.153 + posY: 3.487 + posZ: -36.384 + rotX: 0.0 + rotY: 202.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 338000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3380': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/45h3n8a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"eabcb06c-33d9-456e-af73-b146114577bb","type":"Treachery","class":"Mythos","traits":"Mystery"}' + GUID: 447e7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Burden of Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -27.188 + posY: 2.505 + posZ: -47.33 + rotX: 0.0 + rotY: 182.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 337800 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/IHvVmb8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"71d1193c-92c4-46c5-9a05-62c1d9662f19","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blessing of Eyes + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 338100 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/IHvVmb8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"71d1193c-92c4-46c5-9a05-62c1d9662f19","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blessing of Eyes + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1021': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Uci3pnM.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1102': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/wJFgYcw/63f4fe5a8b99.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1103': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/wJFgYcw/63f4fe5a8b99.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1104': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/wJFgYcw/63f4fe5a8b99.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1105': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/wJFgYcw/63f4fe5a8b99.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1109': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/FXw20gJ/0b9c1c1b9721.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1110': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/FXw20gJ/0b9c1c1b9721.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1111': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/FXw20gJ/0b9c1c1b9721.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1112': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/qF4Y21j/596d722d679a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1231': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/K5Q8vrd/ad2a0720d6cb.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1235': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/G595GQz/b92f0e84715e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2714': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/jhWrXtF/d5dca75bbef9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2716': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/Xyg7wCx/7fbddb4bfe68.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2717': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/fDr9W24/0a0107265696.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2718': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/fDr9W24/0a0107265696.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2719': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/fDr9W24/0a0107265696.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2882': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/dbLVpgf/61a13c5df9c3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2884': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bzsC6LN/a346fdde39f4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2886': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/bEZt8kQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2887': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/bEZt8kQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3177': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/m3p8gp7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3180': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/m3p8gp7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3195': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/kdtbWc3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3196': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/kdtbWc3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3197': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i8i4fKT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3199': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Y9MNHaZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3200': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/bEZt8kQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3378': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/IHvVmb8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3379': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/E1HnRfR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3380': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/45h3n8a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3381': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/IHvVmb8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3382': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/E1HnRfR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3383': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/45h3n8a.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3493': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Y9MNHaZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3494': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i8i4fKT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3495': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i8i4fKT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 102100 + - 102100 + - 288200 + - 288200 + - 288200 + - 123100 + - 123100 + - 123100 + - 123500 + - 123500 + - 123500 + - 110200 + - 110300 + - 288400 + - 288400 + - 110400 + - 110500 + - 110900 + - 111000 + - 111100 + - 111200 + - 271600 + - 271400 + - 271700 + - 271900 + - 271800 + - 318000 + - 317700 + - 320000 + - 288600 + - 288700 + - 319900 + - 349300 + - 319600 + - 339700 + - 339700 + - 319500 + - 349400 + - 319700 + - 349500 + - 337900 + - 338200 + - 338300 + - 338000 + - 337800 + - 338100 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dc3ab1 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.724 + posY: 3.845 + posZ: 11.336 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 2be975 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Bag 6+ Recognition 2be975.ttslua' +LuaScriptState: '{"ml":{"5eb16d":{"lock":false,"pos":{"x":-3.9274,"y":1.8021,"z":5.7572},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 6+ Recognition +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.74 + posY: 1.48 + posZ: 4.5 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Annex a2291f.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Annex a2291f.yaml new file mode 100644 index 000000000..522367d73 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Annex a2291f.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100000 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/ano6iXV.jpg + FaceURL: https://i.imgur.com/KSNJ8x9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: 'Lecture Building: Student Union' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"1633ed5d-0772-45da-af29-ecd0cd7ef25d","type":"Location","class":"Mythos","traits":"Byrgenwerth","locationFront":{"icons":"Cross","connections":"Square|Diamond|Moon","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"Cross","connections":"Square|Diamond|Moon","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]}}' +GUID: a2291f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Annex +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: 15.74 + posY: 1.48 + posZ: 4.5 + rotX: 3.0 + rotY: 271.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Astronomy Hall e00002.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Astronomy Hall e00002.yaml new file mode 100644 index 000000000..0b95509fa --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Astronomy Hall e00002.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100100 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/5VU0qy3.jpg + FaceURL: https://i.imgur.com/hcK9n6J.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: Cosmos-Facing Observatory +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"462eeb72-e8db-4209-9cb1-5c745e460094","type":"Location","class":"Mythos","traits":"Byrgenwerth","locationFront":{"icons":"Diamond","connections":"Square|Cross","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Diamond","connections":"Square|Cross","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]}}' +GUID: e00002 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Astronomy Hall +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: 15.74 + posY: 1.48 + posZ: 4.5 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Beneath the Surface 542eaf.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Beneath the Surface 542eaf.yaml new file mode 100644 index 000000000..07459498e --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Beneath the Surface 542eaf.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 315400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3154': + BackIsHidden: true + BackURL: https://i.imgur.com/shXTZnE.jpg + FaceURL: https://i.imgur.com/V05C3FY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"a6d35903-ef0a-40be-abab-89b303bbe8b9"}' +GUID: 542eaf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Beneath the Surface +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.74 + posY: 1.48 + posZ: 4.5 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Faculty Offices e00009.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Faculty Offices e00009.yaml new file mode 100644 index 000000000..faa671c2a --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Faculty Offices e00009.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100700 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/hEpJcEI.jpg + FaceURL: https://i.imgur.com/eBz4oQ5.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: Provost Willem's Chambers +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"1b90d89f-2a15-43bb-a877-005394a241a7","type":"Location","class":"Mythos","traits":"Byrgenwerth","locationFront":{"icons":"T","connections":"Triangle|Slash|Moon","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":"T","connections":"Triangle|Slash|Moon","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1}}' +GUID: e00009 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Faculty Offices +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: 15.74 + posY: 1.48 + posZ: 4.5 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Lecture Hall e00003.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Lecture Hall e00003.yaml new file mode 100644 index 000000000..4ab6735dc --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Lecture Hall e00003.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100200 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/0VASwzR.jpg + FaceURL: https://i.imgur.com/nEl5l5Z.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: Runesmith Caryll Instruction Hall +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"23230e0c-3f56-41e4-bfdd-5ba36cd77d79","type":"Location","class":"Mythos","traits":"Byrgenwerth","locationFront":{"icons":"Square","connections":"Circle|Triangle|Cross|Diamond","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"Square","connections":"Circle|Triangle|Cross|Diamond","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]}}' +GUID: e00003 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Lecture Hall +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: 15.74 + posY: 1.48 + posZ: 4.5 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Private Library 158464.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Private Library 158464.yaml new file mode 100644 index 000000000..621f199ef --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Private Library 158464.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100300 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/MorTs2u.jpg + FaceURL: https://i.imgur.com/IPyZNJI.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: Provost's Private Library +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"4c8b6b51-eb42-4e45-bd34-a44b96f27fb7","type":"Location","class":"Mythos","traits":"Byrgenwerth","locationFront":{"icons":"Slash","connections":"Triangle|T","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Slash","connections":"Triangle|T","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]}}' +GUID: '158464' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Private Library +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: 15.74 + posY: 1.48 + posZ: 4.5 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Research Hall 528c9e.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Research Hall 528c9e.yaml new file mode 100644 index 000000000..4729072c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Research Hall 528c9e.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/2EqpCyH.jpg + FaceURL: https://i.imgur.com/YPuFrzT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: Insight Workshop +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"7abae43d-0ef9-4d74-abe4-31a7745b8650","type":"Location","class":"Mythos","traits":"Byrgenwerth","locationFront":{"icons":"Triangle","connections":"Circle|Square|Slash|T","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"Triangle","connections":"Circle|Square|Slash|T","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]}}' +GUID: 528c9e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Research Hall +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: 15.74 + posY: 1.48 + posZ: 4.5 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Rooftops 2c2534.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Rooftops 2c2534.yaml new file mode 100644 index 000000000..a6687b7e2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card Rooftops 2c2534.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 348300 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3483': + BackIsHidden: true + BackURL: https://i.imgur.com/dygGxA1.jpg + FaceURL: https://i.imgur.com/Uacf4iI.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: Moon-Viewing Terrace +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"81d72f5a-e6f0-4e69-901a-97804c58bd2d","type":"Location","class":"Mythos","traits":"Byrgenwerth","locationFront":{"icons":"Moon","connections":"Cross|T","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"Moon","connections":"Cross|T","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]}}' +GUID: 2c2534 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Rooftops +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: 15.74 + posY: 1.48 + posZ: 4.5 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card The Frailty of Men 8bc352.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card The Frailty of Men 8bc352.yaml new file mode 100644 index 000000000..5acbf65e2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card The Frailty of Men 8bc352.yaml @@ -0,0 +1,53 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 348000 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3480': + BackIsHidden: true + BackURL: https://i.imgur.com/utSz356.jpg + FaceURL: https://i.imgur.com/PHTBlSP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"ad6c72f2-2ef3-49ce-9719-e07bca2c2034"}' +GUID: 8bc352 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Frailty of Men +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: 15.74 + posY: 1.48 + posZ: 4.5 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card University Foyer 36c3bb.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card University Foyer 36c3bb.yaml new file mode 100644 index 000000000..972f00bf1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Card University Foyer 36c3bb.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100600 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/uunRG0s.jpg + FaceURL: https://i.imgur.com/hECSg3i.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: The Grand Staircase +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"f22b48f7-3152-497a-916e-535e8c8a305e","type":"Location","class":"Mythos","traits":"Byrgenwerth. + ","locationFront":{"icons":"Circle","connections":"Square|Triangle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"Circle","connections":"Square|Triangle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]}}' +GUID: 36c3bb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: University Foyer +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: 15.74 + posY: 1.48 + posZ: 4.5 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486.yaml new file mode 100644 index 000000000..e94d58102 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486.yaml @@ -0,0 +1,69 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.02149 + g: 0.00101 + r: 0.02149 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside cde486/Bag Spoils dcad43.yaml' +- !include 'Custom_Model_Bag Set-aside cde486/Card Orphan''s Cord of the Eye e00123.yaml' +- !include 'Custom_Model_Bag Set-aside cde486/Deck Resolution Weaknesses 54b8c5.yaml' +- !include 'Custom_Model_Bag Set-aside cde486/Bag Act 2 Assets f70913.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/ + MaterialIndex: 1 + MeshURL: http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/ + NormalURL: http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/ + TypeIndex: 6 +Description: The Frailty of Men +DragSelectable: true +GMNotes: '' +GUID: cde486 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Set-aside +PhysicsMaterial: + BounceCombine: 0 + Bounciness: 0.0 + DynamicFriction: 0.6 + FrictionCombine: 0 + StaticFriction: 0.6 +Rigidbody: + AngularDrag: 5.0 + Drag: 5.0 + Mass: 1.375 + UseGravity: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.74 + posY: 1.48 + posZ: 4.5 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Bag Act 2 Assets f70913.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Bag Act 2 Assets f70913.yaml new file mode 100644 index 000000000..1ca15f117 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Bag Act 2 Assets f70913.yaml @@ -0,0 +1,48 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- !include 'Bag Act 2 Assets f70913/Card Moonside Lake e0000a.yaml' +- !include 'Bag Act 2 Assets f70913/Deck Act e00009.yaml' +- !include 'Bag Act 2 Assets f70913/Card Rom 7d7e24.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f70913 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Act 2 Assets +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69 + posY: 3.46 + posZ: 14.24 + rotX: 0.0 + rotY: 45.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Bag Act 2 Assets f70913/Card Moonside Lake e0000a.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Bag Act 2 Assets f70913/Card Moonside Lake e0000a.yaml new file mode 100644 index 000000000..3dd87bda0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Bag Act 2 Assets f70913/Card Moonside Lake e0000a.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100800 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/Dzq0Km6.jpg + FaceURL: https://i.imgur.com/hKpWyQd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"fabc7148-cd64-49f3-9ce1-91ad67291927","type":"Location","class":"Mythos","traits":"Between","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":null}}' +GUID: e0000a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Moonside Lake +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: 15.05 + posY: 3.41 + posZ: -56.14 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Bag Act 2 Assets f70913/Card Rom 7d7e24.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Bag Act 2 Assets f70913/Card Rom 7d7e24.yaml new file mode 100644 index 000000000..695372dc5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Bag Act 2 Assets f70913/Card Rom 7d7e24.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 284700 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '2847': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/U6yYJ2K.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: The Vacuous Spider +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"6395b643-c9db-47ba-820e-83e41f53cecc"}' +GUID: 7d7e24 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Rom +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.86 + posY: 3.6 + posZ: 35.2 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Bag Act 2 Assets f70913/Deck Act e00009.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Bag Act 2 Assets f70913/Deck Act e00009.yaml new file mode 100644 index 000000000..590ff1dd9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Bag Act 2 Assets f70913/Deck Act e00009.yaml @@ -0,0 +1,160 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 318400 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/1i2oSQJ.jpg + FaceURL: https://i.imgur.com/pNDAFEI.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a6d35903-ef0a-40be-abab-89b303bbe8b9","type":"Act","class":"Mythos"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beneath the Surface + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100600 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/0eOTK86.jpg + FaceURL: https://i.imgur.com/WCRdzlJ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"566e7216-2e92-404a-913b-f1cf86be007e","type":"Agenda","class":"Mythos"}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Seek What Is Yours + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/0eOTK86.jpg + FaceURL: https://i.imgur.com/WCRdzlJ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3184': + BackIsHidden: true + BackURL: https://i.imgur.com/1i2oSQJ.jpg + FaceURL: https://i.imgur.com/pNDAFEI.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +DeckIDs: +- 318400 +- 100600 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e00009 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 6.97 + posY: 2.33 + posZ: -75.72 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Bag Spoils dcad43.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Bag Spoils dcad43.yaml new file mode 100644 index 000000000..9e43b10c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Bag Spoils dcad43.yaml @@ -0,0 +1,812 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315900 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/iAgnB10.jpg + FaceURL: https://i.imgur.com/HockzvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Gateway to a Tragic Land + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d1e30cf2-c292-429d-99ab-edce2ecd2ca9","type":"Asset","permanent":true,"class":"Neutral","traits":"Item. + Charm. Occult"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ailing Loran Chalice + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315600 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/fM8NK9t.jpg + FaceURL: https://i.imgur.com/GBsIKbP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: The Ghastly Reverie + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b4c646de-d449-4798-93cc-a30e89116c0d","type":"Asset","class":"Neutral","traits":"Condition. + Cursed. ","agilityIcons":2,"fightIcons":2,"cost":0}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beast's Embrace + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100200 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/PvxI9C4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: The Pride of Hemwick + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"09eacbbb-bfbc-4bd1-b12a-9d616c041b97","type":"Asset","class":"Neutral","traits":"Item. + Supply","agilityIcons":1,"cost":3}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bone Marrow Ash + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100300 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/5T7pHbT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Symbol of Stern Golden Spirit + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"21c25218-2071-4d07-bc3f-82688bcdbe49","type":"Asset","class":"Neutral","traits":"Item. + Armor. Occult","willpowerIcons":1,"wildIcons":1,"cost":2}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gold Ardeo + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100400 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/aylUt1v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: The Measured Tread of Gods + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8eecf68f-42d7-4c4d-a40e-ec3f0a216cf2","type":"Asset","class":"Neutral","traits":"Ritual","intellectIcons":1,"willpowerIcons":1,"wildIcons":1,"cost":5}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Make Contact + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315800 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/0hB7mzi.jpg + FaceURL: https://i.imgur.com/Lpal9JU.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Sidereal Beacon + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6752da73-cb22-475c-8691-de1275b28e28","type":"Asset","class":"Neutral","traits":"Item. + Armor. Occult","intellectIcons":1,"wildIcons":1,"cost":4}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mensis Cage + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100600 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/eAQYYCV.jpg + FaceURL: https://i.imgur.com/MOZTlcr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Paleblood Stillbirth + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d7cfea5e-a8b3-4424-9d3f-36141ca93f7e","type":"Asset","class":"Neutral","traits":"Item. + Occult. Cursed","wildIcons":3,"cost":1}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pale Cord of the Eye + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315400 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/R6nTlVN.jpg + FaceURL: https://i.imgur.com/iY9tmyP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Sacred Aria + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5dbb3575-59a5-4312-a134-6c92b59f7648","type":"Asset","class":"Neutral","traits":"Item. + Weapon. Science","fightIcons":1,"willpowerIcons":1,"wildIcons":1,"cost":3}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rosmarinus + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100800 + CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/ZyDWXxL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Useless Memento + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"4874a8eb-9f6a-421f-991f-0e6957187188","type":"Asset","class":"Neutral","traits":"Item. + Charm","fightIcons":1,"cost":3}' + GUID: e00009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Saw Hunter Badge + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315700 + CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/NmPvmKH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: For the Gentleman Hunter + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"3efb091b-1321-404f-8bf6-43eff4aceebc","type":"Asset","class":"Neutral","traits":"Item. + Weapon. Melee. ","agilityIcons":1,"cost":3}' + GUID: e0000a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Threaded Cane + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315500 + CustomDeck: + '1010': + BackIsHidden: true + BackURL: https://i.imgur.com/AUtNKgd.jpg + FaceURL: https://i.imgur.com/EsVypo5.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '"If your weapon ain''t got kick..."' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c38372ec-9d1e-4911-bfda-89695d89cebc","type":"Asset","class":"Neutral","traits":"Item. + Weapon. Melee. ","fightIcons":3,"cost":4}' + GUID: e0000b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Whirligig Saw + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 316000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3160': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/iajVyjP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Cainhurst's Grace + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6e4d7936-b2f1-4cc3-a1b5-6453243bc200","type":"Asset","class":"Neutral","traits":"Item. + Firearm. Weapon","fightIcons":1,"wildIcons":2,"cost":5}' + GUID: e0000d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Evelyn + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: -19.237 + posY: 1.902 + posZ: 41.881 + rotX: 0.0 + rotY: 270.0 + rotZ: 348.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/PvxI9C4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/5T7pHbT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/aylUt1v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/eAQYYCV.jpg + FaceURL: https://i.imgur.com/MOZTlcr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/ZyDWXxL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3154': + BackIsHidden: true + BackURL: https://i.imgur.com/R6nTlVN.jpg + FaceURL: https://i.imgur.com/iY9tmyP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3155': + BackIsHidden: true + BackURL: https://i.imgur.com/AUtNKgd.jpg + FaceURL: https://i.imgur.com/EsVypo5.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3156': + BackIsHidden: true + BackURL: https://i.imgur.com/fM8NK9t.jpg + FaceURL: https://i.imgur.com/GBsIKbP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3157': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/NmPvmKH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3158': + BackIsHidden: true + BackURL: https://i.imgur.com/0hB7mzi.jpg + FaceURL: https://i.imgur.com/Lpal9JU.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3159': + BackIsHidden: true + BackURL: https://i.imgur.com/iAgnB10.jpg + FaceURL: https://i.imgur.com/HockzvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3160': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/iajVyjP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 315900 + - 315600 + - 100200 + - 100300 + - 100400 + - 315800 + - 100600 + - 315400 + - 100800 + - 315700 + - 315500 + - 316000 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e0000c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: Spoils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.201 + posY: 3.531 + posZ: 44.276 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: dcad43 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Spoils +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 22.2 + posY: 2.11 + posZ: -80.94 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Card Orphan's Cord of the Eye e00123.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Card Orphan's Cord of the Eye e00123.yaml new file mode 100644 index 000000000..dbe6dc9e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Card Orphan's Cord of the Eye e00123.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 123400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1234': + BackIsHidden: true + BackURL: https://i.ibb.co/YLx8jzj/a6336e93647c.jpg + FaceURL: https://i.ibb.co/KwfQZDN/c32713178b73.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"954c9141-69d4-440c-bd66-0b04ecc6f897"}' +GUID: e00123 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Orphan's Cord of the Eye +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 3.72 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 357.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Deck Resolution Weaknesses 54b8c5.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Deck Resolution Weaknesses 54b8c5.yaml new file mode 100644 index 000000000..9b00e1f20 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Custom_Model_Bag Set-aside cde486/Deck Resolution Weaknesses 54b8c5.yaml @@ -0,0 +1,277 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 348600 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/g9Uz7MW.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"87ca341b-0531-40d7-a48b-3bb46a70c09c","type":"Treachery","traits":"Hex","weakness":true}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Moon-Scented + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 348400 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/4LsHCds.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"59d67e00-f275-4609-b6f1-e39c7299442f","type":"Treachery","traits":"Power. + Madness","weakness":true}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rapturous Writhing + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 348500 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/rzjbQQC.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"69403460-2bf2-40dd-98a5-146a9be1138c","type":"Treachery","traits":"Curse","weakness":true}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Bottomless Curse + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 348300 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/c7pNAYw.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"bc6a9326-a933-4507-bf03-e2db59c6ea14","type":"Treachery","traits":"Flaw","weakness":true}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wild Curiosity + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '3483': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/c7pNAYw.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3484': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/4LsHCds.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3485': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/rzjbQQC.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3486': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/g9Uz7MW.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 348600 +- 348400 +- 348500 +- 348300 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 54b8c5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Resolution Weaknesses +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69 + posY: 3.7 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Deck fc5261.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Deck fc5261.yaml new file mode 100644 index 000000000..cc1f55195 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Deck fc5261.yaml @@ -0,0 +1,296 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 307900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3079': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/bpaXYOk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Yahar'gul's Legacy + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c0dc8eb9-00da-41ee-80d7-d9c70885c8aa","type":"Enemy","victory":1,"class":"Mythos","traits":"Abomination. + Cursed. Elite"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The One Reborn + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -7.027 + posY: 3.019 + posZ: -71.5 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3080': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/W2lufey.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: The Storm of Bones + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9b6e4a4f-2296-4201-aa48-7ef3cc3bbc31","type":"Enemy","victory":2,"class":"Mythos","traits":"Humanoid. + Beast. Geist. Elite"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Darkbeast Paarl + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -8.206 + posY: 3.019 + posZ: -72.116 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 307800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3078': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/Lk48cHR/469818d3c805.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: An Unquenchable Thirst + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5a4e8a42-7082-47df-bd49-54153ce46743","type":"Enemy","victory":1,"class":"Mythos","traits":"Humanoid. + Beast. Elite"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Starved Beast + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -6.523 + posY: 3.019 + posZ: -69.497 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 348200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/V3a92pt.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: One Sick Puppy + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"249966af-3975-41d5-b914-7ea61603706a","type":"Enemy","victory":1,"class":"Mythos","traits":"Humanoid. + Beast. Elite"}' + GUID: b47a65 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Abhorrent Beast + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -4.417 + posY: 2.319 + posZ: -64.931 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '3078': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/Lk48cHR/469818d3c805.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3079': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/bpaXYOk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3080': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/W2lufey.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3482': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/V3a92pt.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 307900 +- 308000 +- 307800 +- 348200 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: fc5261 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.74 + posY: 1.48 + posZ: 4.5 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Deck Agenda e00005.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Deck Agenda e00005.yaml new file mode 100644 index 000000000..570fed3ff --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Deck Agenda e00005.yaml @@ -0,0 +1,218 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 318500 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/1xzaGWO.jpg + FaceURL: https://i.imgur.com/UbCFZwW.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"39b9ea83-1947-4689-9945-3ebc13e8fae3","type":"Agenda","class":"Mythos","doomThreshold":3}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lifting the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 318400 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/yl7kYN4.jpg + FaceURL: https://i.imgur.com/mA5PiT5.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0a223ef3-cf77-4582-956d-e1f2b8797fc3","type":"Agenda","class":"Mythos","doomThreshold":3}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lifting the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 348100 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/ADJ89Zx.jpg + FaceURL: https://i.imgur.com/qZJYohI.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"1716990a-8f2d-49d9-9203-71354764dd2c","type":"Agenda","class":"Mythos","doomThreshold":3}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lifting the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '3184': + BackIsHidden: true + BackURL: https://i.imgur.com/yl7kYN4.jpg + FaceURL: https://i.imgur.com/mA5PiT5.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3185': + BackIsHidden: true + BackURL: https://i.imgur.com/1xzaGWO.jpg + FaceURL: https://i.imgur.com/UbCFZwW.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3481': + BackIsHidden: true + BackURL: https://i.imgur.com/ADJ89Zx.jpg + FaceURL: https://i.imgur.com/qZJYohI.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +DeckIDs: +- 318500 +- 318400 +- 348100 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e00005 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.74 + posY: 1.48 + posZ: 4.5 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Deck Hunters of Yharnam (Enemy Hunters) e0000f.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Deck Hunters of Yharnam (Enemy Hunters) e0000f.yaml new file mode 100644 index 000000000..d947ce7d8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Deck Hunters of Yharnam (Enemy Hunters) e0000f.yaml @@ -0,0 +1,716 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100200 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/EeaEJdB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e56a85cb-fc19-4ddc-8566-2f1fe96c1c6a"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Drunk Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100300 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/58Vc0Vx/ba4b5923fc7e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"843a9709-60a8-4b70-87f1-941470854caf"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Choir Assassin + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100400 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/4jnj7Kc/9ead8c002381.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d0b6eeaa-aa99-4aa2-b111-11f603d6b3f6"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Healing Church Doctor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100500 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/BDAuOZG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6930b87f-8066-4e7f-8628-79b9143ec63e"}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Healing Church Executioner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100600 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/7gGB31m/a4936c112299.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5363b6cf-c71a-45da-a6a0-9b67a87bd18f"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunter of the Old Workshop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 285900 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/3BkTjYn/a900ede8956e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0e0bf47f-8483-4818-a138-ddb26ba901f0"}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Keeper of the Old Lords + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100800 + CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/VpRNRCg/2b41eae0ae85.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f0ceca69-63de-4ae4-9ff6-4da00c815a9a"}' + GUID: e00009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Moon-Scented Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100900 + CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/VwF1BDL/16413c15ef3b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e830c002-ba0c-4e93-96fb-fd72128e587a"}' + GUID: e0000a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Powder Keg Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101000 + CustomDeck: + '1010': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yCLC7or.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"834bf275-d36b-4446-a690-91e220099e0a"}' + GUID: e0000b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge-Touched Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101100 + CustomDeck: + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GGgyNcv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"eb50c9bd-0fc4-413a-b6ab-770dde2973d8"}' + GUID: e0000c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tomb Prospector + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101200 + CustomDeck: + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/hLRXku8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"82baaac1-ae4f-4cbc-ac8f-34da27161ff3"}' + GUID: e0000d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vileblood Knight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101300 + CustomDeck: + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/uPTWfU9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7d8901c5-d475-4e5e-995e-055e9b707186"}' + GUID: e0000e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yahar'gul Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/EeaEJdB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/58Vc0Vx/ba4b5923fc7e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/4jnj7Kc/9ead8c002381.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/BDAuOZG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/7gGB31m/a4936c112299.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/VpRNRCg/2b41eae0ae85.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/VwF1BDL/16413c15ef3b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1010': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yCLC7or.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GGgyNcv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/hLRXku8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/uPTWfU9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2859': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/3BkTjYn/a900ede8956e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 100200 +- 100300 +- 100400 +- 100500 +- 100600 +- 285900 +- 100800 +- 100900 +- 101000 +- 101100 +- 101200 +- 101300 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e0000f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Hunters of Yharnam (Enemy Hunters) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.68 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Deck Hunters of Yharnam 24c32b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Deck Hunters of Yharnam 24c32b.yaml new file mode 100644 index 000000000..b6fda1946 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Deck Hunters of Yharnam 24c32b.yaml @@ -0,0 +1,802 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3085': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/vE7O0Ra.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e56a85cb-fc19-4ddc-8566-2f1fe96c1c6a","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Blood-Drunk. Hunter of Yharnam. Elite"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Drunk Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.985 + posY: 1.495 + posZ: -28.492 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3088': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i5NXyz4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d0b6eeaa-aa99-4aa2-b111-11f603d6b3f6","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Healing Church Doctor + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.825 + posY: 1.531 + posZ: -28.437 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3090': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2lnY2Es.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"843a9709-60a8-4b70-87f1-941470854caf","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Choir Assassin + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.656 + posY: 1.573 + posZ: -28.031 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3084': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/e15jXj1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5363b6cf-c71a-45da-a6a0-9b67a87bd18f","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunter of the Old Workshop + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.025 + posY: 1.582 + posZ: -29.212 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3094': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/BDAuOZG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6930b87f-8066-4e7f-8628-79b9143ec63e","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Servitor. Hunter of Yharnam. Elite"}' + GUID: fbf974 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Healing Church Executioner + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.064 + posY: 1.592 + posZ: -28.811 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3093': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/eYt1jRE.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0e0bf47f-8483-4818-a138-ddb26ba901f0","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Pthumerian. Hunter of Yharnam. Elite"}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Keeper of the Old Lords + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.842 + posY: 1.602 + posZ: -27.87 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/VwF1BDL/16413c15ef3b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e830c002-ba0c-4e93-96fb-fd72128e587a","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e0000a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Powder Keg Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.467 + posY: 1.611 + posZ: -29.442 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3086': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/US5wPNi.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"834bf275-d36b-4446-a690-91e220099e0a","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Beast. Hunter of Yharnam. Elite"}' + GUID: e0000b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge-Touched Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.685 + posY: 1.682 + posZ: -28.304 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3087': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/uSX3Fzg.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f0ceca69-63de-4ae4-9ff6-4da00c815a9a","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e00009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Moon-Scented Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.952 + posY: 1.631 + posZ: -29.179 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GGgyNcv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"eb50c9bd-0fc4-413a-b6ab-770dde2973d8","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e0000c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tomb Prospector + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.09 + posY: 1.638 + posZ: -28.596 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/hLRXku8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"82baaac1-ae4f-4cbc-ac8f-34da27161ff3","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e0000d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vileblood Knight + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.939 + posY: 1.65 + posZ: -28.875 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3092': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/OSGZbtr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7d8901c5-d475-4e5e-995e-055e9b707186","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Servitor. Hunter of Yharnam. Elite"}' + GUID: e0000e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yahar'gul Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.574 + posY: 1.657 + posZ: -29.055 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/VwF1BDL/16413c15ef3b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GGgyNcv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/hLRXku8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3084': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/e15jXj1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3085': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/vE7O0Ra.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3086': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/US5wPNi.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3087': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/uSX3Fzg.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3088': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i5NXyz4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3090': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2lnY2Es.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3092': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/OSGZbtr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3093': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/eYt1jRE.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3094': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/BDAuOZG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 308500 +- 308800 +- 309000 +- 308400 +- 309400 +- 309300 +- 100900 +- 308600 +- 308700 +- 101100 +- 101200 +- 309200 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 24c32b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Hunters of Yharnam +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: 15.74 + posY: 1.48 + posZ: 4.5 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Deck Memories 75101d.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Deck Memories 75101d.yaml new file mode 100644 index 000000000..cd3e7ea2c --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Deck Memories 75101d.yaml @@ -0,0 +1,524 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 318600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3186': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qfJPZXC.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 014f43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.845 + posY: 1.597 + posZ: 10.383 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 318700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3187': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/V9mb5vC.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '529780' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.845 + posY: 1.655 + posZ: 10.383 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 318800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3188': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/YKQaQ5U.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bb7fd1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.845 + posY: 1.676 + posZ: 10.383 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 318900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3189': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/9dYUyFk.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9afb3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.845 + posY: 1.686 + posZ: 10.383 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 319100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3191': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GpIOqRC.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4184a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.845 + posY: 1.696 + posZ: 10.383 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 319200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3192': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/esX73Eq.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 39573d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.845 + posY: 1.705 + posZ: 10.383 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 319300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3193': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/8HR5dwM.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: abaae3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.845 + posY: 1.715 + posZ: 10.383 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 319400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3194': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GzgwPaa.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8c5529 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.845 + posY: 1.724 + posZ: 10.383 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '3186': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qfJPZXC.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3187': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/V9mb5vC.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3188': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/YKQaQ5U.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3189': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/9dYUyFk.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3191': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GpIOqRC.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3192': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/esX73Eq.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3193': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/8HR5dwM.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3194': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GzgwPaa.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 318600 +- 318700 +- 318800 +- 318900 +- 319100 +- 319200 +- 319300 +- 319400 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 75101d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Memories +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.74 + posY: 1.48 + posZ: 4.5 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Notecard Encounter Deck Setup Instructions 08fc24.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Notecard Encounter Deck Setup Instructions 08fc24.yaml new file mode 100644 index 000000000..ec37398be --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 4 The Frailty of Men 4117f5/Notecard Encounter Deck Setup Instructions 08fc24.yaml @@ -0,0 +1,48 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: ' + + 1. If Recognition 5: Bag 2 + + 2. If Recognition 6 or Higher: Bag 3 + + 3. If Recognition 7 or Higher: Add undefeated enemy from Metamorphosis Set (Optional) + + 4. Add 1 Random undefeated enemy from Hunters of Yharnam set' +DragSelectable: true +GMNotes: '' +GUID: 08fc24 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Notecard +Nickname: Encounter Deck Setup Instructions +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.74 + posY: 1.48 + posZ: 4.5 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47.ttslua new file mode 100644 index 000000000..d3a91c848 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47.ttslua @@ -0,0 +1,503 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + +function onload(saved_data) + fresh = true + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + moveList = {} + moveGuid = nil + + if next(memoryList) == nil then + createSetupButton() + else + fresh = false + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects(move) + local howManyButtons = 0 + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + 2 + objPos.z = objPos.z * globalScaleFactor * 0.9 + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=500, width=500, + color=color, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons(move) + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} + local color = {0,1,0,0.6} + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + theList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end + self.editButton({index=index, color=color}) + theList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + moveList = {} + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil +end + +--Saves selections +function buttonClick_submit() + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + memoryListBackup[guid] = nil + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +--Resets bag to starting status +function buttonClick_reset() + fresh = true + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end + local deltaPos = {} + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + yOffset + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47.yaml new file mode 100644 index 000000000..1454800bf --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47.yaml @@ -0,0 +1,108 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +AttachedDecals: +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ + Name: dunwich_back + Size: 7.4 + Transform: + posX: -0.0021877822 + posY: -0.08963572 + posZ: -0.00288731651 + rotX: 270.0 + rotY: 359.869568 + rotZ: 0.0 + scaleX: 2.00000215 + scaleY: 2.00000238 + scaleZ: 2.00000262 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag Quest Deck - Assets + and Encounters 090b37.yaml' +- !include 'Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside + 0da03e.yaml' +- !include 'Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom Ex Luna Scientia + 14ad40.yaml' +- !include 'Custom_Model_Bag 5 The Altar of Despair 9b4b47/Deck Hunters of Yharnam + 198eac.yaml' +- !include 'Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom 3637be.yaml' +- !include 'Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom Ashina Monogatari + 38e4a7.yaml' +- !include 'Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag 4 Randomly Selected + Act Decks 5fb082.yaml' +- !include 'Custom_Model_Bag 5 The Altar of Despair 9b4b47/Deck 88e9c8.yaml' +- !include 'Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom Indulgences + 95fc75.yaml' +- !include 'Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom Wild Hunt a31f72.yaml' +- !include 'Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom The Extraordinary + Gentleman a9649b.yaml' +- !include 'Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom The Losing Streak + ae0b3b.yaml' +- !include 'Custom_Model_Bag 5 The Altar of Despair 9b4b47/Card Cathedral Steps e0000c.yaml' +- !include 'Custom_Model_Bag 5 The Altar of Despair 9b4b47/Card Cathedral Ward Cemetery + e0000d.yaml' +- !include 'Custom_Model_Bag 5 The Altar of Despair 9b4b47/Card Oedon Chapel e0000f.yaml' +- !include 'Custom_Model_Bag 5 The Altar of Despair 9b4b47/Card The Grand Cathedral + of Yharnam e00010.yaml' +- !include 'Custom_Model_Bag 5 The Altar of Despair 9b4b47/Card Grand Cathedral Sanctuary + e00016.yaml' +- !include 'Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag Encounter Deck Setup + fa41bc.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: https://i.imgur.com/dCdcjI6.jpghttps://i.imgur.com/dCdcjI6.jpg + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: 'Bloodborne: City of the Unseen' +DragSelectable: true +GMNotes: '' +GUID: 9b4b47 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model_Bag 5 The Altar of Despair 9b4b47.ttslua' +LuaScriptState: '{"ml":{"090b37":{"lock":false,"pos":{"x":-12.4595,"y":1.4172,"z":11.6461},"rot":{"x":359.9554,"y":224.9996,"z":0.0685}},"0da03e":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.279},"rot":{"x":359.9551,"y":225.0006,"z":0.0687}},"14ad40":{"lock":false,"pos":{"x":-20.9224,"y":1.6287,"z":15.2874},"rot":{"x":359.9201,"y":269.9995,"z":0.0168}},"198eac":{"lock":false,"pos":{"x":-17.12,"y":1.5987,"z":3.86},"rot":{"x":0,"y":269.9676,"z":0}},"3637be":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9198,"y":269.7298,"z":0.0172}},"389b37":{"lock":false,"pos":{"x":-42.3686,"y":1.6398,"z":-2.3424},"rot":{"x":359.9316,"y":314.9885,"z":359.9554}},"38e4a7":{"lock":false,"pos":{"x":-17.12,"y":1.6212,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":0.0168}},"44b0c5":{"lock":false,"pos":{"x":-33.536,"y":1.6282,"z":0.0539},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"4a5720":{"lock":false,"pos":{"x":-36.7732,"y":1.6463,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":180.0168}},"4c273b":{"lock":false,"pos":{"x":-39.5762,"y":1.6514,"z":3.8813},"rot":{"x":359.9201,"y":270.0004,"z":180.0168}},"56cf50":{"lock":false,"pos":{"x":-43.3701,"y":1.6555,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0168}},"5fb082":{"lock":false,"pos":{"x":-2.6895,"y":1.3987,"z":-5.0483},"rot":{"x":359.9196,"y":270.0004,"z":0.0169}},"6cc025":{"lock":false,"pos":{"x":-39.5762,"y":1.6491,"z":-3.8087},"rot":{"x":359.9201,"y":270,"z":180.0168}},"7234af":{"lock":false,"pos":{"x":-42.2221,"y":1.641,"z":2.3581},"rot":{"x":359.9554,"y":224.9681,"z":0.0684}},"82ee43":{"lock":false,"pos":{"x":-36.7744,"y":1.6334,"z":2.2715},"rot":{"x":359.9316,"y":314.9847,"z":359.9554}},"88e9c8":{"lock":false,"pos":{"x":-2.7246,"y":1.6208,"z":0.3731},"rot":{"x":359.9197,"y":270,"z":0.0168}},"95fc75":{"lock":false,"pos":{"x":-17.12,"y":1.6223,"z":11.46},"rot":{"x":359.9201,"y":269.9984,"z":0.0168}},"a31f72":{"lock":false,"pos":{"x":-20.9202,"y":1.6265,"z":7.6292},"rot":{"x":359.9201,"y":269.998,"z":0.0168}},"a9649b":{"lock":false,"pos":{"x":-17.1198,"y":1.6234,"z":15.1901},"rot":{"x":359.9201,"y":270,"z":0.0168}},"ae0b3b":{"lock":false,"pos":{"x":-20.92,"y":1.6276,"z":11.4292},"rot":{"x":359.9201,"y":269.9999,"z":0.0168}},"b25aaf":{"lock":false,"pos":{"x":5.4363,"y":1.2647,"z":53.8483},"rot":{"x":0.0315,"y":270.0008,"z":0.0168}},"d05ec6":{"lock":false,"pos":{"x":-30.2242,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":180.0168}},"e0000c":{"lock":false,"pos":{"x":-40.14,"y":1.5336,"z":-3.83},"rot":{"x":0,"y":270.0018,"z":180}},"e0000d":{"lock":false,"pos":{"x":-40.14,"y":1.5336,"z":3.83},"rot":{"x":0,"y":270.0005,"z":180}},"e0000f":{"lock":false,"pos":{"x":-43.44,"y":1.5336,"z":0},"rot":{"x":0,"y":270.0042,"z":0}},"e00010":{"lock":false,"pos":{"x":-36.84,"y":1.5336,"z":0},"rot":{"x":0,"y":270.0012,"z":0}},"e00016":{"lock":false,"pos":{"x":-30.24,"y":1.5336,"z":0},"rot":{"x":0,"y":270.0001,"z":180}},"f5b8d5":{"lock":false,"pos":{"x":-36.6389,"y":1.6318,"z":-2.4779},"rot":{"x":359.9554,"y":224.9885,"z":0.0684}},"fa41bc":{"lock":false,"pos":{"x":-3.9287,"y":1.4036,"z":5.7573},"rot":{"x":359.9196,"y":270.0003,"z":0.0169}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '5: The Altar of Despair' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.63 + posY: 1.48 + posZ: -3.92 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag 4 Randomly Selected Act Decks 5fb082.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag 4 Randomly Selected Act Decks 5fb082.yaml new file mode 100644 index 000000000..42eb5cf1a --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag 4 Randomly Selected Act Decks 5fb082.yaml @@ -0,0 +1,49 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- !include 'Bag 4 Randomly Selected Act Decks 5fb082/Bag Act Deck e0001a.yaml' +- !include 'Bag 4 Randomly Selected Act Decks 5fb082/Bag Act Deck d5cd79.yaml' +- !include 'Bag 4 Randomly Selected Act Decks 5fb082/Bag Act Deck bd588d.yaml' +- !include 'Bag 4 Randomly Selected Act Decks 5fb082/Bag Act Deck d391da.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 5fb082 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 4 Randomly Selected Act Decks +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.69 + posY: 1.4 + posZ: -5.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag 4 Randomly Selected Act Decks 5fb082/Bag Act Deck bd588d.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag 4 Randomly Selected Act Decks 5fb082/Bag Act Deck bd588d.yaml new file mode 100644 index 000000000..6c2ae141f --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag 4 Randomly Selected Act Decks 5fb082/Bag Act Deck bd588d.yaml @@ -0,0 +1,629 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1017': + BackIsHidden: true + BackURL: https://i.imgur.com/wVc5FYx.jpg + FaceURL: https://i.imgur.com/KMGw7Wq.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"87223847-d60d-45a3-8f34-40cce3b4fbd6"}' + GUID: e00013 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Church Dismantled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.885 + posY: 1.604 + posZ: -16.271 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1016': + BackIsHidden: true + BackURL: https://i.imgur.com/6G8MN1l.jpg + FaceURL: https://i.imgur.com/er5RJL7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a876bc53-441d-416e-9246-7e3dc5c8f15e"}' + GUID: e00012 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Drawing the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.907 + posY: 1.641 + posZ: -16.295 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1015': + BackIsHidden: true + BackURL: https://i.imgur.com/xTuyWai.jpg + FaceURL: https://i.imgur.com/Zj9U8gh.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"4f6ec4ce-f9d9-4fc5-832d-05cba26aad7d"}' + GUID: e00011 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Third Altar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.051 + posY: 1.681 + posZ: -16.383 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1014': + BackIsHidden: true + BackURL: https://i.imgur.com/n6KHNm0.jpg + FaceURL: https://i.imgur.com/BfJBt7v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6c354294-b771-46ea-9f95-7eb53d403030"}' + GUID: e00010 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Masterwork of Provost Willem + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.869 + posY: 1.69 + posZ: -16.368 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/07wCKFJ.jpg + FaceURL: https://i.imgur.com/plxID5v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f1e9eeb5-c31e-436a-8744-173d6e727e5e"}' + GUID: e0000f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Legacy of the Lady of Cainhurst + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.333 + posY: 1.699 + posZ: -17.145 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/ZMoSMB7.jpg + FaceURL: https://i.imgur.com/7r2YS3H.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7fe2588f-1c35-451c-9b4b-813a00080fc9"}' + GUID: e0000e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Legend of Captain Ludwig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.88 + posY: 1.709 + posZ: -16.529 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/ZfzJF4U.jpg + FaceURL: https://i.imgur.com/2rubb30.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"316e1861-042d-4f9f-b15c-5f470639ba9e"}' + GUID: e0000d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Sacrament of the First Vicar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.951 + posY: 1.719 + posZ: -16.227 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/Gd38NVn.jpg + FaceURL: https://i.imgur.com/xNmHyiL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"18880c43-dac5-4c9e-9c6b-1337946a37f7"}' + GUID: e00009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Confession + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.903 + posY: 1.728 + posZ: -16.376 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/qsmMRIh.jpg + FaceURL: https://i.imgur.com/i0sjEVY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f14a33ba-3921-4976-bef7-e63e2d62e92c"}' + GUID: a798e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Secrets In the Blood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.133 + posY: 1.743 + posZ: -16.011 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/qsmMRIh.jpg + FaceURL: https://i.imgur.com/i0sjEVY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/Gd38NVn.jpg + FaceURL: https://i.imgur.com/xNmHyiL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/ZfzJF4U.jpg + FaceURL: https://i.imgur.com/2rubb30.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/ZMoSMB7.jpg + FaceURL: https://i.imgur.com/7r2YS3H.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/07wCKFJ.jpg + FaceURL: https://i.imgur.com/plxID5v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1014': + BackIsHidden: true + BackURL: https://i.imgur.com/n6KHNm0.jpg + FaceURL: https://i.imgur.com/BfJBt7v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1015': + BackIsHidden: true + BackURL: https://i.imgur.com/xTuyWai.jpg + FaceURL: https://i.imgur.com/Zj9U8gh.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1016': + BackIsHidden: true + BackURL: https://i.imgur.com/6G8MN1l.jpg + FaceURL: https://i.imgur.com/er5RJL7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1017': + BackIsHidden: true + BackURL: https://i.imgur.com/wVc5FYx.jpg + FaceURL: https://i.imgur.com/KMGw7Wq.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + DeckIDs: + - 101700 + - 101600 + - 101500 + - 101400 + - 101300 + - 101200 + - 101100 + - 100700 + - 100600 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8f160f + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.45 + posY: 3.742 + posZ: -15.425 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: bd588d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Act Deck +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 3.51 + posZ: -7.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag 4 Randomly Selected Act Decks 5fb082/Bag Act Deck d391da.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag 4 Randomly Selected Act Decks 5fb082/Bag Act Deck d391da.yaml new file mode 100644 index 000000000..222705b11 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag 4 Randomly Selected Act Decks 5fb082/Bag Act Deck d391da.yaml @@ -0,0 +1,629 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1017': + BackIsHidden: true + BackURL: https://i.imgur.com/wVc5FYx.jpg + FaceURL: https://i.imgur.com/KMGw7Wq.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"87223847-d60d-45a3-8f34-40cce3b4fbd6"}' + GUID: e00013 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Church Dismantled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.122 + posY: 1.741 + posZ: -5.813 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1016': + BackIsHidden: true + BackURL: https://i.imgur.com/6G8MN1l.jpg + FaceURL: https://i.imgur.com/er5RJL7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a876bc53-441d-416e-9246-7e3dc5c8f15e"}' + GUID: e00012 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Drawing the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.848 + posY: 1.726 + posZ: -6.039 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1015': + BackIsHidden: true + BackURL: https://i.imgur.com/xTuyWai.jpg + FaceURL: https://i.imgur.com/Zj9U8gh.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"4f6ec4ce-f9d9-4fc5-832d-05cba26aad7d"}' + GUID: e00011 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Third Altar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.051 + posY: 1.681 + posZ: -16.383 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1014': + BackIsHidden: true + BackURL: https://i.imgur.com/n6KHNm0.jpg + FaceURL: https://i.imgur.com/BfJBt7v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6c354294-b771-46ea-9f95-7eb53d403030"}' + GUID: e00010 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Masterwork of Provost Willem + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.869 + posY: 1.69 + posZ: -16.368 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/07wCKFJ.jpg + FaceURL: https://i.imgur.com/plxID5v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f1e9eeb5-c31e-436a-8744-173d6e727e5e"}' + GUID: e0000f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Legacy of the Lady of Cainhurst + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.333 + posY: 1.699 + posZ: -17.145 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/ZMoSMB7.jpg + FaceURL: https://i.imgur.com/7r2YS3H.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7fe2588f-1c35-451c-9b4b-813a00080fc9"}' + GUID: e0000e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Legend of Captain Ludwig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.88 + posY: 1.709 + posZ: -16.529 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/ZfzJF4U.jpg + FaceURL: https://i.imgur.com/2rubb30.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"316e1861-042d-4f9f-b15c-5f470639ba9e"}' + GUID: e0000d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Sacrament of the First Vicar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.951 + posY: 1.719 + posZ: -16.227 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1010': + BackIsHidden: true + BackURL: https://i.imgur.com/OpNL9Nc.jpg + FaceURL: https://i.imgur.com/FtsDTK3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c7ac2a2d-b2d6-474c-b8cb-b0b6e2cc3726"}' + GUID: e0000c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Confession + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.892 + posY: 1.733 + posZ: 0.287 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 269200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/qsmMRIh.jpg + FaceURL: https://i.imgur.com/i0sjEVY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f14a33ba-3921-4976-bef7-e63e2d62e92c"}' + GUID: 2e49a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Secrets In the Blood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.883 + posY: 1.748 + posZ: 0.003 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1010': + BackIsHidden: true + BackURL: https://i.imgur.com/OpNL9Nc.jpg + FaceURL: https://i.imgur.com/FtsDTK3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/ZfzJF4U.jpg + FaceURL: https://i.imgur.com/2rubb30.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/ZMoSMB7.jpg + FaceURL: https://i.imgur.com/7r2YS3H.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/07wCKFJ.jpg + FaceURL: https://i.imgur.com/plxID5v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1014': + BackIsHidden: true + BackURL: https://i.imgur.com/n6KHNm0.jpg + FaceURL: https://i.imgur.com/BfJBt7v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1015': + BackIsHidden: true + BackURL: https://i.imgur.com/xTuyWai.jpg + FaceURL: https://i.imgur.com/Zj9U8gh.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1016': + BackIsHidden: true + BackURL: https://i.imgur.com/6G8MN1l.jpg + FaceURL: https://i.imgur.com/er5RJL7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1017': + BackIsHidden: true + BackURL: https://i.imgur.com/wVc5FYx.jpg + FaceURL: https://i.imgur.com/KMGw7Wq.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '2692': + BackIsHidden: true + BackURL: https://i.imgur.com/qsmMRIh.jpg + FaceURL: https://i.imgur.com/i0sjEVY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + DeckIDs: + - 101700 + - 101600 + - 101500 + - 101400 + - 101300 + - 101200 + - 101100 + - 101000 + - 269200 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fe2ad1 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.886 + posY: 2.563 + posZ: -21.514 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d391da +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Act Deck +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.69 + posY: 3.49 + posZ: -5.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag 4 Randomly Selected Act Decks 5fb082/Bag Act Deck d5cd79.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag 4 Randomly Selected Act Decks 5fb082/Bag Act Deck d5cd79.yaml new file mode 100644 index 000000000..485296796 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag 4 Randomly Selected Act Decks 5fb082/Bag Act Deck d5cd79.yaml @@ -0,0 +1,629 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1017': + BackIsHidden: true + BackURL: https://i.imgur.com/wVc5FYx.jpg + FaceURL: https://i.imgur.com/KMGw7Wq.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"87223847-d60d-45a3-8f34-40cce3b4fbd6"}' + GUID: e00013 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Church Dismantled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.885 + posY: 1.604 + posZ: -16.271 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1016': + BackIsHidden: true + BackURL: https://i.imgur.com/6G8MN1l.jpg + FaceURL: https://i.imgur.com/er5RJL7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a876bc53-441d-416e-9246-7e3dc5c8f15e"}' + GUID: e00012 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Drawing the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.907 + posY: 1.641 + posZ: -16.295 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1015': + BackIsHidden: true + BackURL: https://i.imgur.com/xTuyWai.jpg + FaceURL: https://i.imgur.com/Zj9U8gh.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"4f6ec4ce-f9d9-4fc5-832d-05cba26aad7d"}' + GUID: e00011 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Third Altar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.051 + posY: 1.681 + posZ: -16.383 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1014': + BackIsHidden: true + BackURL: https://i.imgur.com/n6KHNm0.jpg + FaceURL: https://i.imgur.com/BfJBt7v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6c354294-b771-46ea-9f95-7eb53d403030"}' + GUID: e00010 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Masterwork of Provost Willem + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.869 + posY: 1.69 + posZ: -16.368 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/07wCKFJ.jpg + FaceURL: https://i.imgur.com/plxID5v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f1e9eeb5-c31e-436a-8744-173d6e727e5e"}' + GUID: e0000f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Legacy of the Lady of Cainhurst + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.333 + posY: 1.699 + posZ: -17.145 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/ZMoSMB7.jpg + FaceURL: https://i.imgur.com/7r2YS3H.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7fe2588f-1c35-451c-9b4b-813a00080fc9"}' + GUID: e0000e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Legend of Captain Ludwig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.88 + posY: 1.709 + posZ: -16.529 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/ZfzJF4U.jpg + FaceURL: https://i.imgur.com/2rubb30.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"316e1861-042d-4f9f-b15c-5f470639ba9e"}' + GUID: e0000d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Sacrament of the First Vicar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.951 + posY: 1.719 + posZ: -16.227 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/SZjXeVJ.jpg + FaceURL: https://i.imgur.com/wC57QYU.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a5381348-919d-494e-a3a6-7cea4c667ce9"}' + GUID: e0000a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Confession + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.487 + posY: 1.73 + posZ: -10.124 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/qsmMRIh.jpg + FaceURL: https://i.imgur.com/i0sjEVY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f14a33ba-3921-4976-bef7-e63e2d62e92c"}' + GUID: 712fdc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Secrets In the Blood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.751 + posY: 1.745 + posZ: -9.777 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/qsmMRIh.jpg + FaceURL: https://i.imgur.com/i0sjEVY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/SZjXeVJ.jpg + FaceURL: https://i.imgur.com/wC57QYU.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/ZfzJF4U.jpg + FaceURL: https://i.imgur.com/2rubb30.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/ZMoSMB7.jpg + FaceURL: https://i.imgur.com/7r2YS3H.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/07wCKFJ.jpg + FaceURL: https://i.imgur.com/plxID5v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1014': + BackIsHidden: true + BackURL: https://i.imgur.com/n6KHNm0.jpg + FaceURL: https://i.imgur.com/BfJBt7v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1015': + BackIsHidden: true + BackURL: https://i.imgur.com/xTuyWai.jpg + FaceURL: https://i.imgur.com/Zj9U8gh.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1016': + BackIsHidden: true + BackURL: https://i.imgur.com/6G8MN1l.jpg + FaceURL: https://i.imgur.com/er5RJL7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1017': + BackIsHidden: true + BackURL: https://i.imgur.com/wVc5FYx.jpg + FaceURL: https://i.imgur.com/KMGw7Wq.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + DeckIDs: + - 101700 + - 101600 + - 101500 + - 101400 + - 101300 + - 101200 + - 101100 + - 100800 + - 100600 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e95cf8 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.894 + posY: 3.745 + posZ: -10.268 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d5cd79 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Act Deck +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 3.51 + posZ: -7.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag 4 Randomly Selected Act Decks 5fb082/Bag Act Deck e0001a.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag 4 Randomly Selected Act Decks 5fb082/Bag Act Deck e0001a.yaml new file mode 100644 index 000000000..5a4a04932 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag 4 Randomly Selected Act Decks 5fb082/Bag Act Deck e0001a.yaml @@ -0,0 +1,629 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1017': + BackIsHidden: true + BackURL: https://i.imgur.com/wVc5FYx.jpg + FaceURL: https://i.imgur.com/KMGw7Wq.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"87223847-d60d-45a3-8f34-40cce3b4fbd6"}' + GUID: e00013 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Church Dismantled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.885 + posY: 1.604 + posZ: -16.271 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1016': + BackIsHidden: true + BackURL: https://i.imgur.com/6G8MN1l.jpg + FaceURL: https://i.imgur.com/er5RJL7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a876bc53-441d-416e-9246-7e3dc5c8f15e"}' + GUID: e00012 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Drawing the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.907 + posY: 1.641 + posZ: -16.295 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1015': + BackIsHidden: true + BackURL: https://i.imgur.com/xTuyWai.jpg + FaceURL: https://i.imgur.com/Zj9U8gh.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"4f6ec4ce-f9d9-4fc5-832d-05cba26aad7d"}' + GUID: e00011 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Third Altar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.051 + posY: 1.681 + posZ: -16.383 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1014': + BackIsHidden: true + BackURL: https://i.imgur.com/n6KHNm0.jpg + FaceURL: https://i.imgur.com/BfJBt7v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6c354294-b771-46ea-9f95-7eb53d403030"}' + GUID: e00010 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Masterwork of Provost Willem + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.869 + posY: 1.69 + posZ: -16.368 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/07wCKFJ.jpg + FaceURL: https://i.imgur.com/plxID5v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f1e9eeb5-c31e-436a-8744-173d6e727e5e"}' + GUID: e0000f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Legacy of the Lady of Cainhurst + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.333 + posY: 1.699 + posZ: -17.145 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/ZMoSMB7.jpg + FaceURL: https://i.imgur.com/7r2YS3H.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7fe2588f-1c35-451c-9b4b-813a00080fc9"}' + GUID: e0000e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Legend of Captain Ludwig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.88 + posY: 1.709 + posZ: -16.529 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/ZfzJF4U.jpg + FaceURL: https://i.imgur.com/2rubb30.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"316e1861-042d-4f9f-b15c-5f470639ba9e"}' + GUID: e0000d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Sacrament of the First Vicar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.951 + posY: 1.719 + posZ: -16.227 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/wYbZ5ly.jpg + FaceURL: https://i.imgur.com/wInblz8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"eaa27edc-f926-4f30-a26b-29b35878ea67"}' + GUID: e0000b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Confession + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.149 + posY: 1.731 + posZ: -4.659 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/qsmMRIh.jpg + FaceURL: https://i.imgur.com/i0sjEVY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f14a33ba-3921-4976-bef7-e63e2d62e92c"}' + GUID: 47a057 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Secrets In the Blood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.371 + posY: 1.745 + posZ: -5.318 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/qsmMRIh.jpg + FaceURL: https://i.imgur.com/i0sjEVY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/wYbZ5ly.jpg + FaceURL: https://i.imgur.com/wInblz8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/ZfzJF4U.jpg + FaceURL: https://i.imgur.com/2rubb30.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/ZMoSMB7.jpg + FaceURL: https://i.imgur.com/7r2YS3H.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/07wCKFJ.jpg + FaceURL: https://i.imgur.com/plxID5v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1014': + BackIsHidden: true + BackURL: https://i.imgur.com/n6KHNm0.jpg + FaceURL: https://i.imgur.com/BfJBt7v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1015': + BackIsHidden: true + BackURL: https://i.imgur.com/xTuyWai.jpg + FaceURL: https://i.imgur.com/Zj9U8gh.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1016': + BackIsHidden: true + BackURL: https://i.imgur.com/6G8MN1l.jpg + FaceURL: https://i.imgur.com/er5RJL7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1017': + BackIsHidden: true + BackURL: https://i.imgur.com/wVc5FYx.jpg + FaceURL: https://i.imgur.com/KMGw7Wq.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + DeckIDs: + - 101700 + - 101600 + - 101500 + - 101400 + - 101300 + - 101200 + - 101100 + - 100900 + - 100600 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 75d454 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.338 + posY: 3.743 + posZ: -6.501 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e0001a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Act Deck +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 3.51 + posZ: -7.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag Encounter Deck Setup fa41bc.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag Encounter Deck Setup fa41bc.yaml new file mode 100644 index 000000000..296a50b77 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag Encounter Deck Setup fa41bc.yaml @@ -0,0 +1,53 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- !include 'Bag Encounter Deck Setup fa41bc/Bag Act 2 Additions - 9 or More Recognition + 4510fb.yaml' +- !include 'Bag Encounter Deck Setup fa41bc/Bag Act 2 Additions - 8 or less Recognition + 19f402.yaml' +- !include 'Bag Encounter Deck Setup fa41bc/Bag Act 1 Encounter Deck - 10 or More + Recognition 8f8858.yaml' +- !include 'Bag Encounter Deck Setup fa41bc/Bag Act 1 Encounter Deck - 9 or Less Recognition + e0000b.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: fa41bc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Encounter Deck Setup +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.93 + posY: 1.4 + posZ: 5.76 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag Encounter Deck Setup fa41bc/Bag Act 1 Encounter Deck - 10 or More Recognition 8f8858.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag Encounter Deck Setup fa41bc/Bag Act 1 Encounter Deck - 10 or More Recognition 8f8858.yaml new file mode 100644 index 000000000..a6f398b7d --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag Encounter Deck Setup fa41bc/Bag Act 1 Encounter Deck - 10 or More Recognition 8f8858.yaml @@ -0,0 +1,1439 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 286600 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/WczXLXN/d7eb63c8f3c7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"438dde80-35d8-4035-957c-2b7099e5464d"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Affliction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 278100 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/WczXLXN/d7eb63c8f3c7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"438dde80-35d8-4035-957c-2b7099e5464d"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Affliction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 286700 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/GdLvSf5/e7160883f03e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0d847aa7-553d-4d75-a0c6-2fc3ab1cfa50"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dreadful Effigy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 286800 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/16KQVVc/895e9e38867b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"be3ec7a9-e02f-485b-a105-223ef523baeb"}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yharnam Hospitality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2717': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ijKzri1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9a758e94-98c7-4dc8-90e3-db70a30e08ab"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Amygdalan Measure + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.188 + posY: 1.628 + posZ: -16.466 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2719': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ijKzri1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9a758e94-98c7-4dc8-90e3-db70a30e08ab"}' + GUID: 1b9092 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Amygdalan Measure + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.256 + posY: 1.67 + posZ: -16.851 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 278000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2780': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/16KQVVc/895e9e38867b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"be3ec7a9-e02f-485b-a105-223ef523baeb"}' + GUID: d7f175 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yharnam Hospitality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.283 + posY: 2.539 + posZ: -37.312 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 278000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2780': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/16KQVVc/895e9e38867b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"be3ec7a9-e02f-485b-a105-223ef523baeb"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yharnam Hospitality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.261 + posY: 2.535 + posZ: -38.913 + rotX: 0.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2714': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QGqndjd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e01dc2ef-bc2d-4b57-a130-ec7f68e9dd3a"}' + GUID: deaf91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eldritch Spectator + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.937 + posY: 1.723 + posZ: -16.194 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2715': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QGqndjd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e01dc2ef-bc2d-4b57-a130-ec7f68e9dd3a"}' + GUID: '974349' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eldritch Spectator + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.112 + posY: 1.733 + posZ: -16.042 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2718': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QGqndjd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e01dc2ef-bc2d-4b57-a130-ec7f68e9dd3a"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eldritch Spectator + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.421 + posY: 1.743 + posZ: -16.103 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 350200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6ANHht.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"da3c5b39-1f2a-4163-83eb-0da05d5cb919"}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pthumerian Doctor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.671 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 357.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 274700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2747': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6ANHht.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"da3c5b39-1f2a-4163-83eb-0da05d5cb919"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pthumerian Doctor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.759 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 274200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6ANHht.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"da3c5b39-1f2a-4163-83eb-0da05d5cb919"}' + GUID: 3571fd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pthumerian Doctor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.746 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 357.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 274600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2746': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/L8KsKAv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"69c017e3-ccfe-4598-a1d0-db95dcd6c60e"}' + GUID: 7a1935 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Church Behemoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.718 + posZ: -0.031 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 274400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/TSDgFMp.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ec9cf048-fb92-4708-9679-16db60831f19"}' + GUID: db44de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Canonization + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.738 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 319500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2745': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/TSDgFMp.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ec9cf048-fb92-4708-9679-16db60831f19"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Canonization + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.732 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 287300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2873': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/aO0xfC1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"449945d2-1153-4f36-8a8d-af899bb98487"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Penitence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.701 + posY: 3.51 + posZ: -32.289 + rotX: 0.0 + rotY: 182.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 287300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2873': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/aO0xfC1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"449945d2-1153-4f36-8a8d-af899bb98487"}' + GUID: 92874b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Penitence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.688 + posY: 3.51 + posZ: -34.272 + rotX: 0.0 + rotY: 179.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/KmAXVV0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d2aa4f68-3edb-40a1-ba56-354aaebbb6dd","type":"Enemy","class":"Mythos","traits":"Great + One. Avatar. Elite"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lesser Amygdala + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -21.88 + posY: 3.581 + posZ: -39.816 + rotX: 0.0 + rotY: 179.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 350300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3198': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/KmAXVV0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d2aa4f68-3edb-40a1-ba56-354aaebbb6dd","type":"Enemy","class":"Mythos","traits":"Great + One. Avatar. Elite"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lesser Amygdala + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -23.106 + posY: 2.608 + posZ: -44.181 + rotX: 357.0 + rotY: 182.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"32dc122f-fcf7-454a-81fe-f5e2c78f6722","type":"Treachery","class":"Mythos","traits":"Scheme"}' + GUID: 1eb95f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Polite Exchange + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -28.944 + posY: 2.645 + posZ: -60.169 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"32dc122f-fcf7-454a-81fe-f5e2c78f6722","type":"Treachery","class":"Mythos","traits":"Scheme"}' + GUID: '361134' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Polite Exchange + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -29.984 + posY: 2.645 + posZ: -62.955 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/KmAXVV0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2714': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QGqndjd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2715': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QGqndjd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2717': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ijKzri1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2718': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QGqndjd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2719': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ijKzri1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6ANHht.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2744': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/TSDgFMp.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2746': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/L8KsKAv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2747': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6ANHht.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2780': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/16KQVVc/895e9e38867b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2781': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/WczXLXN/d7eb63c8f3c7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2866': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/WczXLXN/d7eb63c8f3c7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2867': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/GdLvSf5/e7160883f03e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2868': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/16KQVVc/895e9e38867b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2873': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/aO0xfC1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3195': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/TSDgFMp.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3502': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6ANHht.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3503': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/KmAXVV0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 286600 + - 278100 + - 286700 + - 286800 + - 271700 + - 271900 + - 278000 + - 278000 + - 271400 + - 271500 + - 271800 + - 350200 + - 274700 + - 274200 + - 274600 + - 274400 + - 319500 + - 287300 + - 287300 + - 100300 + - 350300 + - 339700 + - 339700 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 848d12 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.062 + posY: 3.734 + posZ: -1.287 + rotX: 0.0 + rotY: 270.0 + rotZ: 179.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8f8858 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Act 1 Encounter Deck - 10 or More Recognition +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.93 + posY: 3.49 + posZ: 5.72 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag Encounter Deck Setup fa41bc/Bag Act 1 Encounter Deck - 9 or Less Recognition e0000b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag Encounter Deck Setup fa41bc/Bag Act 1 Encounter Deck - 9 or Less Recognition e0000b.yaml new file mode 100644 index 000000000..aaeee9372 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag Encounter Deck Setup fa41bc/Bag Act 1 Encounter Deck - 9 or Less Recognition e0000b.yaml @@ -0,0 +1,1013 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 350200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6ANHht.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"da3c5b39-1f2a-4163-83eb-0da05d5cb919"}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pthumerian Doctor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.671 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 357.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 274700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2747': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6ANHht.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"da3c5b39-1f2a-4163-83eb-0da05d5cb919"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pthumerian Doctor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.759 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 274200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6ANHht.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"da3c5b39-1f2a-4163-83eb-0da05d5cb919"}' + GUID: 3571fd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pthumerian Doctor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.746 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 357.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 274600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2746': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/L8KsKAv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"69c017e3-ccfe-4598-a1d0-db95dcd6c60e"}' + GUID: 7a1935 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Church Behemoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.718 + posZ: -0.031 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 274400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/TSDgFMp.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ec9cf048-fb92-4708-9679-16db60831f19"}' + GUID: db44de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Canonization + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.738 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 319500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2745': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/TSDgFMp.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ec9cf048-fb92-4708-9679-16db60831f19"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Canonization + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.732 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 286500 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/WczXLXN/d7eb63c8f3c7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"438dde80-35d8-4035-957c-2b7099e5464d"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Affliction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 286600 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/WczXLXN/d7eb63c8f3c7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"438dde80-35d8-4035-957c-2b7099e5464d"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Affliction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 286700 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/GdLvSf5/e7160883f03e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0d847aa7-553d-4d75-a0c6-2fc3ab1cfa50"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dreadful Effigy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 286800 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/16KQVVc/895e9e38867b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"be3ec7a9-e02f-485b-a105-223ef523baeb"}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yharnam Hospitality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 287300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2873': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/aO0xfC1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"449945d2-1153-4f36-8a8d-af899bb98487"}' + GUID: 92be41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Penitence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.968 + posY: 3.51 + posZ: -34.011 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 287300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2873': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/aO0xfC1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"449945d2-1153-4f36-8a8d-af899bb98487"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Penitence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.955 + posY: 3.51 + posZ: -36.975 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 278000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2780': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/16KQVVc/895e9e38867b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"be3ec7a9-e02f-485b-a105-223ef523baeb"}' + GUID: 04f733 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yharnam Hospitality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.205 + posY: 2.505 + posZ: -30.911 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 278000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2780': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/16KQVVc/895e9e38867b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"be3ec7a9-e02f-485b-a105-223ef523baeb"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yharnam Hospitality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.913 + posY: 2.574 + posZ: -27.25 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"32dc122f-fcf7-454a-81fe-f5e2c78f6722","type":"Treachery","class":"Mythos","traits":"Scheme"}' + GUID: 4cb070 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Polite Exchange + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -42.679 + posY: 2.505 + posZ: -76.029 + rotX: 0.0 + rotY: 179.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"32dc122f-fcf7-454a-81fe-f5e2c78f6722","type":"Treachery","class":"Mythos","traits":"Scheme"}' + GUID: 4ba1cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Polite Exchange + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -44.098 + posY: 2.505 + posZ: -81.506 + rotX: 0.0 + rotY: 179.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6ANHht.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2744': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/TSDgFMp.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2746': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/L8KsKAv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2747': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6ANHht.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2780': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/16KQVVc/895e9e38867b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2865': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/WczXLXN/d7eb63c8f3c7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2866': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/WczXLXN/d7eb63c8f3c7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2867': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/GdLvSf5/e7160883f03e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2868': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/16KQVVc/895e9e38867b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2873': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/aO0xfC1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3195': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/TSDgFMp.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3502': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6ANHht.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 350200 + - 274700 + - 274200 + - 274600 + - 274400 + - 319500 + - 286500 + - 286600 + - 286700 + - 286800 + - 287300 + - 287300 + - 278000 + - 278000 + - 339700 + - 339700 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3f7b67 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.241 + posY: 3.691 + posZ: -8.236 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e0000b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Act 1 Encounter Deck - 9 or Less Recognition +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.93 + posY: 3.49 + posZ: 5.72 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag Encounter Deck Setup fa41bc/Bag Act 2 Additions - 8 or less Recognition 19f402.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag Encounter Deck Setup fa41bc/Bag Act 2 Additions - 8 or less Recognition 19f402.yaml new file mode 100644 index 000000000..885db3b15 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag Encounter Deck Setup fa41bc/Bag Act 2 Additions - 8 or less Recognition 19f402.yaml @@ -0,0 +1,1037 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1021': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/FeXjRJ4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b32cc86e-e46f-4c1d-a862-111eb908a95b"}' + GUID: e0001b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Celestial Emissary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.676 + posY: 1.76 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1021': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/FeXjRJ4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b32cc86e-e46f-4c1d-a862-111eb908a95b"}' + GUID: 0bb34d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Celestial Emissary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.677 + posY: 1.658 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1022': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/LPkwZd9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cfc07f4d-8326-40c2-961e-279872352af6"}' + GUID: e0001c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Celestial Foundling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.676 + posY: 1.693 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1022': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/LPkwZd9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cfc07f4d-8326-40c2-961e-279872352af6"}' + GUID: f4c813 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Celestial Foundling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.676 + posY: 1.703 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1022': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/LPkwZd9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cfc07f4d-8326-40c2-961e-279872352af6"}' + GUID: 78fe80 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Celestial Foundling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.676 + posY: 1.712 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1023': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/AvXp71V.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"2c686cce-bc3c-455c-8d38-dc164a44d57d"}' + GUID: e0001d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Second Childhood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.676 + posY: 1.77 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1023': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/AvXp71V.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"2c686cce-bc3c-455c-8d38-dc164a44d57d"}' + GUID: e0001d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Second Childhood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.676 + posY: 1.77 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1021': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/FeXjRJ4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b32cc86e-e46f-4c1d-a862-111eb908a95b"}' + GUID: e0001b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Celestial Emissary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.676 + posY: 1.76 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1023': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/AvXp71V.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"2c686cce-bc3c-455c-8d38-dc164a44d57d"}' + GUID: e0001d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Second Childhood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.676 + posY: 1.77 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1024': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/20WBfez.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f967a222-e2bc-453e-84bc-1f6eb16816dc"}' + GUID: f40e10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sidereal Flux + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.477 + posY: 1.684 + posZ: -4.044 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1024': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/20WBfez.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f967a222-e2bc-453e-84bc-1f6eb16816dc"}' + GUID: a38386 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sidereal Flux + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.486 + posY: 1.662 + posZ: -3.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1024': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/20WBfez.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f967a222-e2bc-453e-84bc-1f6eb16816dc"}' + GUID: 3c59a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sidereal Flux + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.379 + posY: 2.621 + posZ: -25.198 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 270400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2704': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qor0FiF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"607d1420-efe9-466d-b519-315bf54652f4"}' + GUID: eca617 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lumenwood Covenant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.434 + posY: 1.632 + posZ: -3.878 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 270700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2707': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qor0FiF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"607d1420-efe9-466d-b519-315bf54652f4"}' + GUID: 6a2ad5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lumenwood Covenant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.241 + posY: 1.674 + posZ: -3.933 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 270500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2705': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/lBalHNb.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"eac94276-b554-4d7e-b3be-d31675a556c4"}' + GUID: 925d2b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Conductor of the Choir + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.872 + posY: 1.634 + posZ: 1.087 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1029': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/pOW0rgV.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"14491567-d36b-4c90-a6c5-1e1f0d3f40ec"}' + GUID: 1ff822 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Savor the Starlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.677 + posY: 1.656 + posZ: -7.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1029': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/pOW0rgV.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"14491567-d36b-4c90-a6c5-1e1f0d3f40ec"}' + GUID: e00027 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Savor the Starlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.156 + posY: 2.037 + posZ: -7.391 + rotX: 355.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1021': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/FeXjRJ4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1022': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/LPkwZd9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1023': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/AvXp71V.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1024': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/20WBfez.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1029': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/pOW0rgV.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2704': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qor0FiF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2705': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/lBalHNb.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2707': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qor0FiF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 102100 + - 102100 + - 102200 + - 102200 + - 102200 + - 102300 + - 102300 + - 102100 + - 102300 + - 102400 + - 102400 + - 102400 + - 270400 + - 270700 + - 270500 + - 102900 + - 102900 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7332eb + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: Act 2 Additions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.51 + posY: 3.703 + posZ: -8.292 + rotX: 0.0 + rotY: 285.0 + rotZ: 181.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 19f402 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Act 2 Additions - 8 or less Recognition +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.93 + posY: 3.49 + posZ: 5.75 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag Encounter Deck Setup fa41bc/Bag Act 2 Additions - 9 or More Recognition 4510fb.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag Encounter Deck Setup fa41bc/Bag Act 2 Additions - 9 or More Recognition 4510fb.yaml new file mode 100644 index 000000000..3e40192dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag Encounter Deck Setup fa41bc/Bag Act 2 Additions - 9 or More Recognition 4510fb.yaml @@ -0,0 +1,1791 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 277400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2774': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/BACzSDZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"43efc765-64c5-4de3-9d85-ece9e5312656"}' + GUID: 60c31a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Living Failures + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.169 + posY: 1.615 + posZ: -5.635 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 277100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2771': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/BACzSDZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"43efc765-64c5-4de3-9d85-ece9e5312656"}' + GUID: 9f42b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Living Failures + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.924 + posY: 1.656 + posZ: -6.024 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 277200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2772': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/BACzSDZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"43efc765-64c5-4de3-9d85-ece9e5312656"}' + GUID: 3f5817 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Living Failures + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.725 + posY: 1.691 + posZ: -5.444 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 287000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2773': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/kW5O3UX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"24cb7ed6-c212-457e-b6da-463dbfbcb3c6"}' + GUID: 0671f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Brainsucker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.828 + posY: 1.731 + posZ: -5.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 358.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 287000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2773': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/kW5O3UX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"24cb7ed6-c212-457e-b6da-463dbfbcb3c6"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Brainsucker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.687 + posY: 1.713 + posZ: -5.316 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1021': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/FeXjRJ4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b32cc86e-e46f-4c1d-a862-111eb908a95b"}' + GUID: e0001b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Celestial Emissary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.676 + posY: 1.76 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1021': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/FeXjRJ4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b32cc86e-e46f-4c1d-a862-111eb908a95b"}' + GUID: 0bb34d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Celestial Emissary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.677 + posY: 1.658 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1022': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/LPkwZd9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cfc07f4d-8326-40c2-961e-279872352af6"}' + GUID: e0001c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Celestial Foundling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.676 + posY: 1.693 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1022': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/LPkwZd9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cfc07f4d-8326-40c2-961e-279872352af6"}' + GUID: f4c813 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Celestial Foundling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.676 + posY: 1.703 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1022': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/LPkwZd9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cfc07f4d-8326-40c2-961e-279872352af6"}' + GUID: 78fe80 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Celestial Foundling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.676 + posY: 1.712 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1023': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/AvXp71V.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"2c686cce-bc3c-455c-8d38-dc164a44d57d"}' + GUID: e0001d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Second Childhood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.676 + posY: 1.77 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1023': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/AvXp71V.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"2c686cce-bc3c-455c-8d38-dc164a44d57d"}' + GUID: e0001d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Second Childhood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.676 + posY: 1.77 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1021': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/FeXjRJ4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b32cc86e-e46f-4c1d-a862-111eb908a95b"}' + GUID: e0001b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Celestial Emissary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.676 + posY: 1.76 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1023': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/AvXp71V.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"2c686cce-bc3c-455c-8d38-dc164a44d57d"}' + GUID: e0001d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Second Childhood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.676 + posY: 1.77 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1024': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/20WBfez.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f967a222-e2bc-453e-84bc-1f6eb16816dc"}' + GUID: a38386 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sidereal Flux + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.486 + posY: 1.662 + posZ: -3.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1024': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/20WBfez.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f967a222-e2bc-453e-84bc-1f6eb16816dc"}' + GUID: 3c59a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sidereal Flux + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.379 + posY: 2.621 + posZ: -25.198 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1024': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/20WBfez.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f967a222-e2bc-453e-84bc-1f6eb16816dc"}' + GUID: a2921e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sidereal Flux + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.548 + posY: 1.709 + posZ: -3.793 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 270400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2704': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qor0FiF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"607d1420-efe9-466d-b519-315bf54652f4"}' + GUID: eca617 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lumenwood Covenant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.434 + posY: 1.632 + posZ: -3.878 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 270700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2707': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qor0FiF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"607d1420-efe9-466d-b519-315bf54652f4"}' + GUID: 6a2ad5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lumenwood Covenant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.241 + posY: 1.674 + posZ: -3.933 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 270500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2705': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/lBalHNb.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"eac94276-b554-4d7e-b3be-d31675a556c4"}' + GUID: 925d2b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Conductor of the Choir + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.872 + posY: 1.634 + posZ: 1.087 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1029': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/pOW0rgV.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"14491567-d36b-4c90-a6c5-1e1f0d3f40ec"}' + GUID: 1ff822 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Savor the Starlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.677 + posY: 1.656 + posZ: -7.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1029': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/pOW0rgV.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"14491567-d36b-4c90-a6c5-1e1f0d3f40ec"}' + GUID: e00027 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Savor the Starlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.677 + posY: 1.691 + posZ: -7.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 280100 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/krh5n8j.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"25de31db-2b41-41cb-ba0a-e5c2de5fc746"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Apocryphal Understanding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 280200 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/krh5n8j.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"25de31db-2b41-41cb-ba0a-e5c2de5fc746"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Apocryphal Understanding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 278100 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mNOAq1P.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e4ab07eb-8d61-4ba6-a982-19dc6a6f37d0"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Madman's Epiphany + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 320200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3202': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/WKbgizX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e659dbe8-6ff6-454b-b82d-21c600ed2bfc","type":"Enemy","class":"Mythos","traits":"Humanoid. + Pthumerian. Servitor"}' + GUID: cdec8a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hypogean Snatcher + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -29.81 + posY: 2.318 + posZ: -45.301 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 320300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3203': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/WKbgizX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e659dbe8-6ff6-454b-b82d-21c600ed2bfc","type":"Enemy","class":"Mythos","traits":"Humanoid. + Pthumerian. Servitor"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hypogean Snatcher + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -30.479 + posY: 2.524 + posZ: -43.768 + rotX: 0.0 + rotY: 179.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 278000 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mNOAq1P.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e4ab07eb-8d61-4ba6-a982-19dc6a6f37d0"}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Madman's Epiphany + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 280500 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GojaL1Q.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f76fb76b-d9f7-4dc3-a89b-e79db45ec6b5"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Paleblood Sky + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 280600 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GojaL1Q.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f76fb76b-d9f7-4dc3-a89b-e79db45ec6b5"}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Paleblood Sky + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1021': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/FeXjRJ4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1022': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/LPkwZd9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1023': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/AvXp71V.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1024': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/20WBfez.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1029': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/pOW0rgV.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2704': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qor0FiF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2705': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/lBalHNb.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2707': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qor0FiF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2771': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/BACzSDZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2772': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/BACzSDZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2774': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/BACzSDZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2780': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mNOAq1P.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2781': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mNOAq1P.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2801': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/krh5n8j.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2802': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/krh5n8j.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2805': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GojaL1Q.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2806': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GojaL1Q.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2870': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/kW5O3UX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3202': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/WKbgizX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3203': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/WKbgizX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 277400 + - 277100 + - 277200 + - 287000 + - 287000 + - 102100 + - 102100 + - 102200 + - 102200 + - 102200 + - 102300 + - 102300 + - 102100 + - 102300 + - 102400 + - 102400 + - 102400 + - 270400 + - 270700 + - 270500 + - 102900 + - 102900 + - 280100 + - 280200 + - 278100 + - 320200 + - 320300 + - 278000 + - 280500 + - 280600 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 58cfa8 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: Act 2 Additions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.631 + posY: 3.76 + posZ: -5.64 + rotX: 0.0 + rotY: 270.0 + rotZ: 179.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4510fb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Act 2 Additions - 9 or More Recognition +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.93 + posY: 3.49 + posZ: 5.75 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag Quest Deck - Assets and Encounters 090b37.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag Quest Deck - Assets and Encounters 090b37.yaml new file mode 100644 index 000000000..8d8c66a2a --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Bag Quest Deck - Assets and Encounters 090b37.yaml @@ -0,0 +1,913 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 319600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3196': + BackIsHidden: true + BackURL: https://i.imgur.com/t1TzIW7.png + FaceURL: https://i.imgur.com/gqB2vEC.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a0df2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*Jack Crawford' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.534 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2793': + BackIsHidden: true + BackURL: https://i.imgur.com/81qgCdC.png + FaceURL: https://i.imgur.com/XrOLeOu.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f04350 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*Nightmare of Annalise' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.579 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 319700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3197': + BackIsHidden: true + BackURL: https://i.imgur.com/PZXOZ5D.png + FaceURL: https://i.imgur.com/kNYxxJ4.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 63286e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: The Underground Cell + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.613 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 278900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2789': + BackIsHidden: true + BackURL: https://i.imgur.com/h2zP9CO.png + FaceURL: https://i.imgur.com/VUiyYO6.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: aa080a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Adam Madaras...? + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.62 + posZ: 3.86 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2790': + BackIsHidden: true + BackURL: https://i.imgur.com/o85aJZY.png + FaceURL: https://i.imgur.com/8XCGjF4.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c22a7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*Blood Vials' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.65 + posZ: 3.86 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2791': + BackIsHidden: true + BackURL: https://i.imgur.com/G5aYlyD.png + FaceURL: https://i.imgur.com/r6gjiMO.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dfd1e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Djura's Rage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.685 + posZ: 3.86 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 280000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2800': + BackIsHidden: true + BackURL: https://i.imgur.com/3y98Ao3.png + FaceURL: https://i.imgur.com/CqtOP2Y.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: eafced + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*Yamamura''s Fountain Pen' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.534 + posZ: 3.86 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2799': + BackIsHidden: true + BackURL: https://i.imgur.com/3y98Ao3.png + FaceURL: https://i.imgur.com/hDDFNBr.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e16ede + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*Confederate Oath' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.579 + posZ: 3.86 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2799': + BackIsHidden: true + BackURL: https://i.imgur.com/3y98Ao3.png + FaceURL: https://i.imgur.com/hDDFNBr.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b9637e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*Confederate Oath' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.613 + posZ: 3.86 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2799': + BackIsHidden: true + BackURL: https://i.imgur.com/3y98Ao3.png + FaceURL: https://i.imgur.com/hDDFNBr.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: eafced + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*Confederate Oath' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.623 + posZ: 3.86 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2798': + BackIsHidden: true + BackURL: https://i.imgur.com/3y98Ao3.png + FaceURL: https://i.imgur.com/2hGVwmq.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2de627 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*Dr. Jossef''s Clarified Blood' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.632 + posZ: 3.86 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2797': + BackIsHidden: true + BackURL: https://i.imgur.com/3y98Ao3.png + FaceURL: https://i.imgur.com/1nr0XEa.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: eafced + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*Eileen''s Blades of Mercy' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.642 + posZ: 3.86 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2796': + BackIsHidden: true + BackURL: https://i.imgur.com/3y98Ao3.png + FaceURL: https://i.imgur.com/oPczIAX.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9faccb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*Small Resonant Bell' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.638 + posZ: 3.86 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2795': + BackIsHidden: true + BackURL: https://i.imgur.com/3y98Ao3.png + FaceURL: https://i.imgur.com/B9kKfne.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: eafced + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*Pungent Compound' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.648 + posZ: 3.86 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '2789': + BackIsHidden: true + BackURL: https://i.imgur.com/h2zP9CO.png + FaceURL: https://i.imgur.com/VUiyYO6.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2790': + BackIsHidden: true + BackURL: https://i.imgur.com/o85aJZY.png + FaceURL: https://i.imgur.com/8XCGjF4.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2791': + BackIsHidden: true + BackURL: https://i.imgur.com/G5aYlyD.png + FaceURL: https://i.imgur.com/r6gjiMO.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2793': + BackIsHidden: true + BackURL: https://i.imgur.com/81qgCdC.png + FaceURL: https://i.imgur.com/XrOLeOu.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2795': + BackIsHidden: true + BackURL: https://i.imgur.com/3y98Ao3.png + FaceURL: https://i.imgur.com/B9kKfne.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2796': + BackIsHidden: true + BackURL: https://i.imgur.com/3y98Ao3.png + FaceURL: https://i.imgur.com/oPczIAX.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2797': + BackIsHidden: true + BackURL: https://i.imgur.com/3y98Ao3.png + FaceURL: https://i.imgur.com/1nr0XEa.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2798': + BackIsHidden: true + BackURL: https://i.imgur.com/3y98Ao3.png + FaceURL: https://i.imgur.com/2hGVwmq.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2799': + BackIsHidden: true + BackURL: https://i.imgur.com/3y98Ao3.png + FaceURL: https://i.imgur.com/hDDFNBr.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2800': + BackIsHidden: true + BackURL: https://i.imgur.com/3y98Ao3.png + FaceURL: https://i.imgur.com/CqtOP2Y.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3196': + BackIsHidden: true + BackURL: https://i.imgur.com/t1TzIW7.png + FaceURL: https://i.imgur.com/gqB2vEC.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3197': + BackIsHidden: true + BackURL: https://i.imgur.com/PZXOZ5D.png + FaceURL: https://i.imgur.com/kNYxxJ4.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 319600 + - 279300 + - 319700 + - 278900 + - 279000 + - 279100 + - 280000 + - 279900 + - 279900 + - 279900 + - 279800 + - 279700 + - 279600 + - 279500 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 81845a + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.985 + posY: 2.748 + posZ: -25.87 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 090b37 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Quest Deck - Assets and Encounters +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.46 + posY: 1.33 + posZ: 11.65 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Card Cathedral Steps e0000c.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Card Cathedral Steps e0000c.yaml new file mode 100644 index 000000000..6a95af3d2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Card Cathedral Steps e0000c.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 319600 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3196': + BackIsHidden: true + BackURL: https://i.imgur.com/zaCcCIl.jpg + FaceURL: https://i.imgur.com/PAB6G0x.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"29d7bf42-4b6f-4027-814c-bdaf8abcc0a6","type":"Location","class":"Mythos","traits":"Yharnam","locationFront":{"icons":"Triangle","connections":"Square|Moon|Circle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Triangle","connections":"Square|Moon|Circle"}}' +GUID: e0000c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Cathedral Steps +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -40.14 + posY: 1.53 + posZ: -3.83 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Card Cathedral Ward Cemetery e0000d.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Card Cathedral Ward Cemetery e0000d.yaml new file mode 100644 index 000000000..99af7a6f1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Card Cathedral Ward Cemetery e0000d.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101000 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1010': + BackIsHidden: true + BackURL: https://i.imgur.com/sdJfgqt.jpg + FaceURL: https://i.imgur.com/AcHJ9QO.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"8ca96d75-7f8e-4068-9a67-d033fb899a72","type":"Location","class":"Mythos","traits":"Yharnam. + Graveyard","locationFront":{"icons":"Square","connections":"Circle|Triangle|Moon","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"Square","connections":"Circle|Triangle|Moon"}}' +GUID: e0000d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Cathedral Ward Cemetery +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -40.14 + posY: 1.53 + posZ: 3.83 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Card Grand Cathedral Sanctuary e00016.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Card Grand Cathedral Sanctuary e00016.yaml new file mode 100644 index 000000000..8baa65acc --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Card Grand Cathedral Sanctuary e00016.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101700 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1017': + BackIsHidden: true + BackURL: https://i.imgur.com/gUXpc1C.jpg + FaceURL: https://i.imgur.com/TDzK6Od.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: The Blood Ministration Altar +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"1259b624-621b-4c8b-a1ad-6190fbeb1bf1","type":"Location","class":"Mythos","traits":"Cathedral. + Ground Floor","locationFront":{"icons":"Cross","connections":"Diamond","uses":[{"token":"clue","type":"Clue","count":0}],"victory":1},"locationBack":{"icons":"Cross","connections":"Diamond|Moon"}}' +GUID: e00016 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Grand Cathedral Sanctuary +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -30.24 + posY: 1.53 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Card Oedon Chapel e0000f.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Card Oedon Chapel e0000f.yaml new file mode 100644 index 000000000..20db5edca --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Card Oedon Chapel e0000f.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 319400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3194': + BackIsHidden: true + BackURL: https://i.imgur.com/wEEyiMQ.jpg + FaceURL: https://i.imgur.com/sdhVzDx.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: The Sanctuary Remains +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"6f8d272a-b850-41cb-ba3b-b3b933806da4","type":"Location","class":"Mythos","traits":"Chapel","locationFront":{"icons":"Circle","connections":"Square|Triangle","uses":[{"token":"clue","type":"Clue","count":0}]},"locationBack":{"icons":"Circle","connections":"Square|Triangle","uses":[{"token":"clue","type":"Clue","count":0}]}}' +GUID: e0000f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Oedon Chapel +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -43.44 + posY: 1.53 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Card The Grand Cathedral of Yharnam e00010.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Card The Grand Cathedral of Yharnam e00010.yaml new file mode 100644 index 000000000..d65a40195 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Card The Grand Cathedral of Yharnam e00010.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 331000 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3310': + BackIsHidden: true + BackURL: https://i.imgur.com/2H7rc22.jpg + FaceURL: https://i.imgur.com/b3iyESe.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"0ef1de4e-af81-4c02-ad31-d8c9e9e60faf","type":"Location","class":"Mythos","traits":"Cathedral. + Yharnam","locationFront":{"icons":"Moon","connections":"Triangle|Square","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"Moon","connections":"Triangle|Square"}}' +GUID: e00010 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Grand Cathedral of Yharnam +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -36.84 + posY: 1.53 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom 3637be.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom 3637be.yaml new file mode 100644 index 000000000..da568f8ed --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom 3637be.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 277900 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '2779': + BackIsHidden: true + BackURL: https://i.imgur.com/LL5nc9i.png + FaceURL: https://i.imgur.com/wjAKexM.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3637be +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.96 + posY: 1.6 + posZ: -10.44 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom Ashina Monogatari 38e4a7.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom Ashina Monogatari 38e4a7.yaml new file mode 100644 index 000000000..9656ec7d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom Ashina Monogatari 38e4a7.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 319200 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3192': + BackIsHidden: true + BackURL: https://i.imgur.com/1CXaPaR.png + FaceURL: https://i.imgur.com/oAslK0b.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 38e4a7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: '*Ashina Monogatari' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.53 + posZ: 7.57 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom Ex Luna Scientia 14ad40.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom Ex Luna Scientia 14ad40.yaml new file mode 100644 index 000000000..476b821a4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom Ex Luna Scientia 14ad40.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 319100 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3191': + BackIsHidden: true + BackURL: https://i.imgur.com/dA8Q1uA.png + FaceURL: https://i.imgur.com/Djnes32.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 14ad40 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: '*Ex Luna Scientia' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.92 + posY: 1.53 + posZ: 15.29 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom Indulgences 95fc75.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom Indulgences 95fc75.yaml new file mode 100644 index 000000000..6c9ea38fa --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom Indulgences 95fc75.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 319300 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3193': + BackIsHidden: true + BackURL: https://i.imgur.com/18ZUcaG.png + FaceURL: https://i.imgur.com/8Ka6vnh.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 95fc75 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: '*Indulgences' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.53 + posZ: 11.46 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom The Extraordinary Gentleman a9649b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom The Extraordinary Gentleman a9649b.yaml new file mode 100644 index 000000000..3638bb89a --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom The Extraordinary Gentleman a9649b.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 278600 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '2786': + BackIsHidden: true + BackURL: https://i.imgur.com/nWnPY4X.png + FaceURL: https://i.imgur.com/ZgHXPzQ.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: a9649b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: '*The Extraordinary Gentleman' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.53 + posZ: 15.19 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom The Losing Streak ae0b3b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom The Losing Streak ae0b3b.yaml new file mode 100644 index 000000000..dc161e078 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom The Losing Streak ae0b3b.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 278700 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '2787': + BackIsHidden: true + BackURL: https://i.imgur.com/2o89tlJ.png + FaceURL: https://i.imgur.com/5dxwHRV.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ae0b3b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: '*The Losing Streak' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.92 + posY: 1.53 + posZ: 11.43 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom Wild Hunt a31f72.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom Wild Hunt a31f72.yaml new file mode 100644 index 000000000..83d15148b --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/CardCustom Wild Hunt a31f72.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 278800 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '2788': + BackIsHidden: true + BackURL: https://i.imgur.com/qQsYv8F.png + FaceURL: https://i.imgur.com/WLBSIoH.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: a31f72 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: '*Wild Hunt' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.92 + posY: 1.53 + posZ: 7.63 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e.yaml new file mode 100644 index 000000000..9bef83902 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e.yaml @@ -0,0 +1,78 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.02149 + g: 0.00101 + r: 0.02149 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 0da03e/Card The Surgery Altar e00011.yaml' +- !include 'Custom_Model_Bag Set-aside 0da03e/Card Hidden Lift e0000e.yaml' +- !include 'Custom_Model_Bag Set-aside 0da03e/Bag Spoils eb20a9.yaml' +- !include 'Custom_Model_Bag Set-aside 0da03e/Deck Portrait Assets 9e1c8f.yaml' +- !include 'Custom_Model_Bag Set-aside 0da03e/Card The Augur of Ebrietas e00005.yaml' +- !include 'Custom_Model_Bag Set-aside 0da03e/Card Bloodied Cord of the Eye e00002.yaml' +- !include 'Custom_Model_Bag Set-aside 0da03e/Card Ebrietas e00003.yaml' +- !include 'Custom_Model_Bag Set-aside 0da03e/Card Dr. Hamatani e00006.yaml' +- !include 'Custom_Model_Bag Set-aside 0da03e/Custom_Tile d70b36.yaml' +- !include 'Custom_Model_Bag Set-aside 0da03e/Bag Facedown Keys d38aeb.yaml' +- !include 'Custom_Model_Bag Set-aside 0da03e/Card The Altar of Despair ac8f35.yaml' +- !include 'Custom_Model_Bag Set-aside 0da03e/Bag Act 2 Locations e0001a.yaml' +- !include 'Custom_Model_Bag Set-aside 0da03e/Card Audience Chamber e00001.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/ + MaterialIndex: 1 + MeshURL: http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/ + NormalURL: http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/ + TypeIndex: 6 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 0da03e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Set-aside +PhysicsMaterial: + BounceCombine: 0 + Bounciness: 0.0 + DynamicFriction: 0.6 + FrictionCombine: 0 + StaticFriction: 0.6 +Rigidbody: + AngularDrag: 5.0 + Drag: 5.0 + Mass: 1.375 + UseGravity: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 1.56 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Bag Act 2 Locations e0001a.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Bag Act 2 Locations e0001a.yaml new file mode 100644 index 000000000..352b4960c --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Bag Act 2 Locations e0001a.yaml @@ -0,0 +1,329 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101500 + CustomDeck: + '1015': + BackIsHidden: true + BackURL: https://i.imgur.com/TIiYIaL.jpg + FaceURL: https://i.imgur.com/GFcoiyW.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"07c69435-3963-4ee9-a716-2fd06bb1a9c3","type":"Location","class":"Mythos","traits":"Cathedral. + Laboratory. Fifth Floor","locationFront":{"icons":"Hourglass","connections":"DoubleSlash|T|Quote","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"Hourglass","connections":"DoubleSlash|T|Quote"}}' + GUID: e00014 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood Healing Laboratory + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101600 + CustomDeck: + '1016': + BackIsHidden: true + BackURL: https://i.imgur.com/IoGT2K1.jpg + FaceURL: https://i.imgur.com/sCC6RHe.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b2a112c5-9ab4-4888-b5f7-d7abf30a8134","type":"Location","class":"Mythos","traits":"Cathedral. + Third Floor","locationFront":{"icons":"Slash","connections":"Diamond|T","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Slash","connections":"Diamond|T"}}' + GUID: e00015 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Bridge of Saints + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101800 + CustomDeck: + '1018': + BackIsHidden: true + BackURL: https://i.imgur.com/gI7Sew9.jpg + FaceURL: https://i.imgur.com/moLuBmX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f5dd5ae7-ec85-43d6-815c-2452c8d16d02","type":"Location","class":"Mythos","traits":"Cathedral. + Garden. Fourth Floor","locationFront":{"icons":"T","connections":"Slash|Hourglass|Heart","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"T","connections":"Slash|Hourglass|Heart"}}' + GUID: e00017 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Lumenflower Gardens + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 331100 + CustomDeck: + '1019': + BackIsHidden: true + BackURL: https://i.imgur.com/22eTg4S.jpg + FaceURL: https://i.imgur.com/SCzi3ki.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"35b7fd44-1480-453a-8903-99587b2f85ae","type":"Location","class":"Mythos","traits":"Cathedral. + Second Floor","locationFront":{"icons":"Diamond","connections":"Cross|Slash","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"Diamond","connections":"Cross|Slash"}}' + GUID: e00018 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Steps of Penance + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1015': + BackIsHidden: true + BackURL: https://i.imgur.com/TIiYIaL.jpg + FaceURL: https://i.imgur.com/GFcoiyW.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1016': + BackIsHidden: true + BackURL: https://i.imgur.com/IoGT2K1.jpg + FaceURL: https://i.imgur.com/sCC6RHe.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1018': + BackIsHidden: true + BackURL: https://i.imgur.com/gI7Sew9.jpg + FaceURL: https://i.imgur.com/moLuBmX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3311': + BackIsHidden: true + BackURL: https://i.imgur.com/22eTg4S.jpg + FaceURL: https://i.imgur.com/SCzi3ki.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + DeckIDs: + - 101500 + - 101600 + - 101800 + - 331100 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e00019 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: Tower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.06 + posY: 3.6 + posZ: -35.52 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e0001a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Act 2 Locations +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.62 + posY: 3.47 + posZ: 14.44 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Bag Facedown Keys d38aeb.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Bag Facedown Keys d38aeb.yaml new file mode 100644 index 000000000..8db3f4fe4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Bag Facedown Keys d38aeb.yaml @@ -0,0 +1,48 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.5 + g: 0.5 + r: 0.5 +ContainedObjects: +- !include 'Bag Facedown Keys d38aeb/Custom_Tile f2a6d9.yaml' +- !include 'Bag Facedown Keys d38aeb/Custom_Tile 480325.yaml' +- !include 'Bag Facedown Keys d38aeb/Custom_Tile 8bde30.yaml' +Description: Be sure to shuffle this bag! +DragSelectable: true +GMNotes: '' +GUID: d38aeb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Facedown Keys +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69 + posY: 3.53 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 0.65 + scaleY: 0.65 + scaleZ: 0.65 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Bag Facedown Keys d38aeb/Custom_Tile 480325.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Bag Facedown Keys d38aeb/Custom_Tile 480325.yaml new file mode 100644 index 000000000..5c650319a --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Bag Facedown Keys d38aeb/Custom_Tile 480325.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125353191/BDEBB5121A07EC12A04E749B335D01A4D4702A43/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125357797/FD3A585D86E22574B815CC630924027284122EF3/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '480325' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.42 + posY: 2.62 + posZ: -25.73 + rotX: 0.0 + rotY: 225.0 + rotZ: 180.0 + scaleX: 0.55 + scaleY: 1.0 + scaleZ: 0.55 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Bag Facedown Keys d38aeb/Custom_Tile 8bde30.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Bag Facedown Keys d38aeb/Custom_Tile 8bde30.yaml new file mode 100644 index 000000000..b2f043c79 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Bag Facedown Keys d38aeb/Custom_Tile 8bde30.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125353191/BDEBB5121A07EC12A04E749B335D01A4D4702A43/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125361354/DB7B50BCF6C275C3C25843331D5C8EC68A6F9E57/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8bde30 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.37 + posY: 2.59 + posZ: -27.26 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 0.55 + scaleY: 1.0 + scaleZ: 0.55 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Bag Facedown Keys d38aeb/Custom_Tile f2a6d9.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Bag Facedown Keys d38aeb/Custom_Tile f2a6d9.yaml new file mode 100644 index 000000000..1b6659cff --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Bag Facedown Keys d38aeb/Custom_Tile f2a6d9.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125353191/BDEBB5121A07EC12A04E749B335D01A4D4702A43/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125360284/CBE3FFC95062445A9B6BC2B585BED340504256F7/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f2a6d9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.62 + posY: 2.66 + posZ: -23.63 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 0.55 + scaleY: 1.0 + scaleZ: 0.55 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Bag Spoils eb20a9.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Bag Spoils eb20a9.yaml new file mode 100644 index 000000000..e53207df2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Bag Spoils eb20a9.yaml @@ -0,0 +1,812 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315900 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/iAgnB10.jpg + FaceURL: https://i.imgur.com/HockzvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Gateway to a Tragic Land + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d1e30cf2-c292-429d-99ab-edce2ecd2ca9","type":"Asset","permanent":true,"class":"Neutral","traits":"Item. + Charm. Occult"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ailing Loran Chalice + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315600 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/fM8NK9t.jpg + FaceURL: https://i.imgur.com/GBsIKbP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: The Ghastly Reverie + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b4c646de-d449-4798-93cc-a30e89116c0d","type":"Asset","class":"Neutral","traits":"Condition. + Cursed. ","agilityIcons":2,"fightIcons":2,"cost":0}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beast's Embrace + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100200 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/PvxI9C4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: The Pride of Hemwick + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"09eacbbb-bfbc-4bd1-b12a-9d616c041b97","type":"Asset","class":"Neutral","traits":"Item. + Supply","agilityIcons":1,"cost":3}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bone Marrow Ash + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100300 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/5T7pHbT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Symbol of Stern Golden Spirit + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"21c25218-2071-4d07-bc3f-82688bcdbe49","type":"Asset","class":"Neutral","traits":"Item. + Armor. Occult","willpowerIcons":1,"wildIcons":1,"cost":2}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gold Ardeo + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100400 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/aylUt1v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: The Measured Tread of Gods + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8eecf68f-42d7-4c4d-a40e-ec3f0a216cf2","type":"Asset","class":"Neutral","traits":"Ritual","intellectIcons":1,"willpowerIcons":1,"wildIcons":1,"cost":5}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Make Contact + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315800 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/0hB7mzi.jpg + FaceURL: https://i.imgur.com/Lpal9JU.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Sidereal Beacon + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6752da73-cb22-475c-8691-de1275b28e28","type":"Asset","class":"Neutral","traits":"Item. + Armor. Occult","intellectIcons":1,"wildIcons":1,"cost":4}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mensis Cage + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100600 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/eAQYYCV.jpg + FaceURL: https://i.imgur.com/MOZTlcr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Paleblood Stillbirth + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d7cfea5e-a8b3-4424-9d3f-36141ca93f7e","type":"Asset","class":"Neutral","traits":"Item. + Occult. Cursed","wildIcons":3,"cost":1}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pale Cord of the Eye + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315400 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/R6nTlVN.jpg + FaceURL: https://i.imgur.com/iY9tmyP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Sacred Aria + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5dbb3575-59a5-4312-a134-6c92b59f7648","type":"Asset","class":"Neutral","traits":"Item. + Weapon. Science","fightIcons":1,"willpowerIcons":1,"wildIcons":1,"cost":3}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rosmarinus + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100800 + CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/ZyDWXxL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Useless Memento + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"4874a8eb-9f6a-421f-991f-0e6957187188","type":"Asset","class":"Neutral","traits":"Item. + Charm","fightIcons":1,"cost":3}' + GUID: e00009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Saw Hunter Badge + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315700 + CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/NmPvmKH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: For the Gentleman Hunter + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"3efb091b-1321-404f-8bf6-43eff4aceebc","type":"Asset","class":"Neutral","traits":"Item. + Weapon. Melee. ","agilityIcons":1,"cost":3}' + GUID: e0000a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Threaded Cane + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315500 + CustomDeck: + '1010': + BackIsHidden: true + BackURL: https://i.imgur.com/AUtNKgd.jpg + FaceURL: https://i.imgur.com/EsVypo5.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '"If your weapon ain''t got kick..."' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c38372ec-9d1e-4911-bfda-89695d89cebc","type":"Asset","class":"Neutral","traits":"Item. + Weapon. Melee. ","fightIcons":3,"cost":4}' + GUID: e0000b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Whirligig Saw + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 316000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3160': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/iajVyjP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Cainhurst's Grace + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6e4d7936-b2f1-4cc3-a1b5-6453243bc200","type":"Asset","class":"Neutral","traits":"Item. + Firearm. Weapon","fightIcons":1,"wildIcons":2,"cost":5}' + GUID: e0000d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Evelyn + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: -19.237 + posY: 1.902 + posZ: 41.881 + rotX: 0.0 + rotY: 270.0 + rotZ: 348.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/PvxI9C4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/5T7pHbT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/aylUt1v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/eAQYYCV.jpg + FaceURL: https://i.imgur.com/MOZTlcr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/ZyDWXxL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3154': + BackIsHidden: true + BackURL: https://i.imgur.com/R6nTlVN.jpg + FaceURL: https://i.imgur.com/iY9tmyP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3155': + BackIsHidden: true + BackURL: https://i.imgur.com/AUtNKgd.jpg + FaceURL: https://i.imgur.com/EsVypo5.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3156': + BackIsHidden: true + BackURL: https://i.imgur.com/fM8NK9t.jpg + FaceURL: https://i.imgur.com/GBsIKbP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3157': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/NmPvmKH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3158': + BackIsHidden: true + BackURL: https://i.imgur.com/0hB7mzi.jpg + FaceURL: https://i.imgur.com/Lpal9JU.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3159': + BackIsHidden: true + BackURL: https://i.imgur.com/iAgnB10.jpg + FaceURL: https://i.imgur.com/HockzvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3160': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/iajVyjP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 315900 + - 315600 + - 100200 + - 100300 + - 100400 + - 315800 + - 100600 + - 315400 + - 100800 + - 315700 + - 315500 + - 316000 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e0000c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: Spoils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.201 + posY: 3.531 + posZ: 44.276 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: eb20a9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Spoils +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.23 + posY: 2.31 + posZ: -22.83 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card Audience Chamber e00001.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card Audience Chamber e00001.yaml new file mode 100644 index 000000000..eedeb45e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card Audience Chamber e00001.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100000 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/RftyNkP.jpg + FaceURL: https://i.imgur.com/c0ICib7.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: The Altar of Despair +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"8f89c866-0c22-4328-a2f0-47c44eb7db42","type":"Location","class":"Mythos","traits":"Depths. + Sanctum","locationFront":{"icons":"Star","connections":"Clover","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":"Star","connections":"Clover"}}' +GUID: e00001 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Audience Chamber +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: 1.69 + posY: 3.67 + posZ: 14.24 + rotX: 0.0 + rotY: 45.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card Bloodied Cord of the Eye e00002.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card Bloodied Cord of the Eye e00002.yaml new file mode 100644 index 000000000..b2a166b35 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card Bloodied Cord of the Eye e00002.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100100 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/4qmN1o9.jpg + FaceURL: https://i.imgur.com/sohdBoA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"fbc1c1d0-4a99-4bd0-89dc-57d7ac5ab1df"}' +GUID: e00002 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Bloodied Cord of the Eye +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 3.67 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card Dr. Hamatani e00006.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card Dr. Hamatani e00006.yaml new file mode 100644 index 000000000..f0a65b0bf --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card Dr. Hamatani e00006.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100500 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/coqrSeS.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Yurie, The Last Scholar +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"b0218c1f-1887-47ec-84ad-a7db56c2b8d6"}' +GUID: e00006 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Dr. Hamatani +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 3.67 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card Ebrietas e00003.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card Ebrietas e00003.yaml new file mode 100644 index 000000000..0cfcb509c --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card Ebrietas e00003.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100200 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/OUuyWgN.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Daughter of the Cosmos +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"787f4ffc-f53c-4fcf-a6f2-97dfff3df86f"}' +GUID: e00003 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Ebrietas +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 3.68 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card Hidden Lift e0000e.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card Hidden Lift e0000e.yaml new file mode 100644 index 000000000..708c17f82 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card Hidden Lift e0000e.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 319500 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3195': + BackIsHidden: true + BackURL: https://i.imgur.com/Qp11Kq7.jpg + FaceURL: https://i.imgur.com/3SDN62q.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"48ac8881-90fb-45f2-9f60-d27351e01f19","type":"Location","class":"Mythos","traits":"Elevator","locationFront":{"icons":"DoubleSlash","uses":[{"token":"clue","type":"Clue","count":0}]},"locationBack":{"icons":"DoubleSlash"}}' +GUID: e0000e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Hidden Lift +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -4.22 + posY: 2.53 + posZ: -100.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card The Altar of Despair ac8f35.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card The Altar of Despair ac8f35.yaml new file mode 100644 index 000000000..efe3f8afa --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card The Altar of Despair ac8f35.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 319600 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3196': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/GVqJ7c0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"cd3621bd-c05d-48fa-856d-c0359f188599","type":"Asset","victory":2,"class":"Neutral","traits":"Altar"}' +GUID: ac8f35 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Altar of Despair +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Asset +- PlayerCard +Tooltip: true +Transform: + posX: 1.69 + posY: 3.67 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card The Augur of Ebrietas e00005.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card The Augur of Ebrietas e00005.yaml new file mode 100644 index 000000000..5ffe23014 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card The Augur of Ebrietas e00005.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/6QVFsPr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"599fa232-6e41-469d-a95c-25a3cd257a70"}' +GUID: e00005 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Augur of Ebrietas +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.21 + posY: 2.5 + posZ: -24.37 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card The Surgery Altar e00011.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card The Surgery Altar e00011.yaml new file mode 100644 index 000000000..8e530368f --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Card The Surgery Altar e00011.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1014': + BackIsHidden: true + BackURL: https://i.imgur.com/ze5Avob.jpg + FaceURL: https://i.imgur.com/XBLoMYb.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"e5f2f7e4-0880-41f0-8129-dac9b5b1cf93","type":"Location","class":"Mythos","traits":"Altar","locationFront":{"icons":"Clover","uses":[{"token":"clue","type":"Clue","countPerInvestigator":3}]},"locationBack":{"icons":"Clover","connections":"Star","uses":[{"token":"clue","type":"Clue","count":0}]}}' +GUID: e00011 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Surgery Altar +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -7.16 + posY: 2.52 + posZ: -96.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Custom_Tile d70b36.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Custom_Tile d70b36.yaml new file mode 100644 index 000000000..3d49135b9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Custom_Tile d70b36.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125353191/BDEBB5121A07EC12A04E749B335D01A4D4702A43/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125354344/74C3014A27A00100FE3A719677CB50677285CB58/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d70b36 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 3.64 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 0.55 + scaleY: 1.0 + scaleZ: 0.55 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Deck Portrait Assets 9e1c8f.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Deck Portrait Assets 9e1c8f.yaml new file mode 100644 index 000000000..4211d29f7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Custom_Model_Bag Set-aside 0da03e/Deck Portrait Assets 9e1c8f.yaml @@ -0,0 +1,524 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 266700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2667': + BackIsHidden: true + BackURL: https://i.imgur.com/cDx2bS2.png + FaceURL: https://i.imgur.com/O6NTtDx.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 31e857 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*Portrait of the First Vicar' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.677 + posY: 1.624 + posZ: -15.28 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 266600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/JBOLHwS.png + FaceURL: https://i.imgur.com/O6NTtDx.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 10edc3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*Portrait of the First Vicar' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.677 + posY: 1.661 + posZ: -15.28 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 267000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2670': + BackIsHidden: true + BackURL: https://i.imgur.com/8bRDm3z.png + FaceURL: https://i.imgur.com/CxPaqqz.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d339c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*The Portrait of the Holy Blade' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.565 + posY: 1.725 + posZ: -13.392 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 267100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2671': + BackIsHidden: true + BackURL: https://i.imgur.com/FoyJ1zS.png + FaceURL: https://i.imgur.com/CxPaqqz.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3ff5dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*The Portrait of the Holy Blade' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.305 + posY: 1.705 + posZ: -13.091 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 266800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2668': + BackIsHidden: true + BackURL: https://i.imgur.com/SHPD3xc.png + FaceURL: https://i.imgur.com/UdZKuit.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ae2e31 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*The Portrait of the Headmaster' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.867 + posY: 1.711 + posZ: -13.502 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 266900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2669': + BackIsHidden: true + BackURL: https://i.imgur.com/EZZ2OqQ.png + FaceURL: https://i.imgur.com/UdZKuit.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9c0d95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*The Portrait of the Headmaster' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.198 + posY: 1.727 + posZ: -13.1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 266400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/6XbBfgC.png + FaceURL: https://i.imgur.com/JIo15zs.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 10edc3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*The Portrait of the Governess' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.799 + posY: 1.737 + posZ: -13.496 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 266500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/JD6OL69.png + FaceURL: https://i.imgur.com/JIo15zs.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 37096d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '*The Portrait of the Governess' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.259 + posY: 1.755 + posZ: -13.647 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/6XbBfgC.png + FaceURL: https://i.imgur.com/JIo15zs.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/JD6OL69.png + FaceURL: https://i.imgur.com/JIo15zs.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/JBOLHwS.png + FaceURL: https://i.imgur.com/O6NTtDx.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2667': + BackIsHidden: true + BackURL: https://i.imgur.com/cDx2bS2.png + FaceURL: https://i.imgur.com/O6NTtDx.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2668': + BackIsHidden: true + BackURL: https://i.imgur.com/SHPD3xc.png + FaceURL: https://i.imgur.com/UdZKuit.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2669': + BackIsHidden: true + BackURL: https://i.imgur.com/EZZ2OqQ.png + FaceURL: https://i.imgur.com/UdZKuit.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2670': + BackIsHidden: true + BackURL: https://i.imgur.com/8bRDm3z.png + FaceURL: https://i.imgur.com/CxPaqqz.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2671': + BackIsHidden: true + BackURL: https://i.imgur.com/FoyJ1zS.png + FaceURL: https://i.imgur.com/CxPaqqz.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 266700 +- 266600 +- 267000 +- 267100 +- 266800 +- 266900 +- 266400 +- 266500 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9e1c8f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Portrait Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 3.72 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Deck 88e9c8.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Deck 88e9c8.yaml new file mode 100644 index 000000000..c927b6695 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Deck 88e9c8.yaml @@ -0,0 +1,224 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1020': + BackIsHidden: true + BackURL: https://i.imgur.com/UeSKU1V.jpg + FaceURL: https://i.imgur.com/XWrjyJF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"4f72b3a8-58dd-4258-ab5c-5de14564e88c"}' + GUID: e00018 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Daughter of the Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.725 + posY: 1.599 + posZ: 0.373 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1019': + BackIsHidden: true + BackURL: https://i.imgur.com/UC9u4Is.jpg + FaceURL: https://i.imgur.com/bbRwyCX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"66fa2c37-1027-4353-b218-94dbbcc6add6"}' + GUID: e00017 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Calling the Stars Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.725 + posY: 1.629 + posZ: 0.373 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 286400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2864': + BackIsHidden: true + BackURL: https://i.imgur.com/y8wrAZI.jpg + FaceURL: https://i.imgur.com/kWNpIXT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9eee473f-68c7-4b21-9d79-a89ee478f76c"}' + GUID: '635915' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Heavens at Hand + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.725 + posY: 1.687 + posZ: 0.373 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1019': + BackIsHidden: true + BackURL: https://i.imgur.com/UC9u4Is.jpg + FaceURL: https://i.imgur.com/bbRwyCX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1020': + BackIsHidden: true + BackURL: https://i.imgur.com/UeSKU1V.jpg + FaceURL: https://i.imgur.com/XWrjyJF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '2864': + BackIsHidden: true + BackURL: https://i.imgur.com/y8wrAZI.jpg + FaceURL: https://i.imgur.com/kWNpIXT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +DeckIDs: +- 102000 +- 101900 +- 286400 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 88e9c8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.73 + posY: 1.62 + posZ: 0.37 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Deck Hunters of Yharnam 198eac.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Deck Hunters of Yharnam 198eac.yaml new file mode 100644 index 000000000..213782252 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 5 The Altar of Despair 9b4b47/Deck Hunters of Yharnam 198eac.yaml @@ -0,0 +1,802 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3085': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/vE7O0Ra.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e56a85cb-fc19-4ddc-8566-2f1fe96c1c6a","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Blood-Drunk. Hunter of Yharnam. Elite"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Drunk Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.985 + posY: 1.495 + posZ: -28.492 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3088': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i5NXyz4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d0b6eeaa-aa99-4aa2-b111-11f603d6b3f6","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Healing Church Doctor + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.825 + posY: 1.531 + posZ: -28.437 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3090': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2lnY2Es.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"843a9709-60a8-4b70-87f1-941470854caf","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Choir Assassin + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.656 + posY: 1.573 + posZ: -28.031 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3084': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/e15jXj1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5363b6cf-c71a-45da-a6a0-9b67a87bd18f","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunter of the Old Workshop + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.025 + posY: 1.582 + posZ: -29.212 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3094': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/BDAuOZG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6930b87f-8066-4e7f-8628-79b9143ec63e","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Servitor. Hunter of Yharnam. Elite"}' + GUID: fbf974 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Healing Church Executioner + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.064 + posY: 1.592 + posZ: -28.811 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3093': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/eYt1jRE.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0e0bf47f-8483-4818-a138-ddb26ba901f0","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Pthumerian. Hunter of Yharnam. Elite"}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Keeper of the Old Lords + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.842 + posY: 1.602 + posZ: -27.87 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/VwF1BDL/16413c15ef3b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e830c002-ba0c-4e93-96fb-fd72128e587a","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e0000a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Powder Keg Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.467 + posY: 1.611 + posZ: -29.442 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3086': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/US5wPNi.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"834bf275-d36b-4446-a690-91e220099e0a","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Beast. Hunter of Yharnam. Elite"}' + GUID: e0000b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge-Touched Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.685 + posY: 1.682 + posZ: -28.304 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3087': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/uSX3Fzg.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f0ceca69-63de-4ae4-9ff6-4da00c815a9a","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e00009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Moon-Scented Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.952 + posY: 1.631 + posZ: -29.179 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GGgyNcv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"eb50c9bd-0fc4-413a-b6ab-770dde2973d8","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e0000c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tomb Prospector + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.09 + posY: 1.638 + posZ: -28.596 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/hLRXku8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"82baaac1-ae4f-4cbc-ac8f-34da27161ff3","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e0000d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vileblood Knight + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.939 + posY: 1.65 + posZ: -28.875 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3092': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/OSGZbtr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7d8901c5-d475-4e5e-995e-055e9b707186","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Servitor. Hunter of Yharnam. Elite"}' + GUID: e0000e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yahar'gul Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.574 + posY: 1.657 + posZ: -29.055 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/VwF1BDL/16413c15ef3b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GGgyNcv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/hLRXku8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3084': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/e15jXj1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3085': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/vE7O0Ra.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3086': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/US5wPNi.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3087': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/uSX3Fzg.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3088': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i5NXyz4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3090': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2lnY2Es.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3092': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/OSGZbtr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3093': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/eYt1jRE.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3094': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/BDAuOZG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 308500 +- 308800 +- 309000 +- 308400 +- 309400 +- 309300 +- 100900 +- 308600 +- 308700 +- 101100 +- 101200 +- 309200 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 198eac +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Hunters of Yharnam +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: -17.12 + posY: 1.6 + posZ: 3.86 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838.ttslua new file mode 100644 index 000000000..d3a91c848 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838.ttslua @@ -0,0 +1,503 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + +function onload(saved_data) + fresh = true + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + moveList = {} + moveGuid = nil + + if next(memoryList) == nil then + createSetupButton() + else + fresh = false + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects(move) + local howManyButtons = 0 + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + 2 + objPos.z = objPos.z * globalScaleFactor * 0.9 + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=500, width=500, + color=color, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons(move) + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} + local color = {0,1,0,0.6} + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + theList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end + self.editButton({index=index, color=color}) + theList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + moveList = {} + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil +end + +--Saves selections +function buttonClick_submit() + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + memoryListBackup[guid] = nil + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +--Resets bag to starting status +function buttonClick_reset() + fresh = true + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end + local deltaPos = {} + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + yOffset + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838.yaml new file mode 100644 index 000000000..11ac907c5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838.yaml @@ -0,0 +1,95 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +AttachedDecals: +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ + Name: dunwich_back + Size: 7.4 + Transform: + posX: -0.0021877822 + posY: -0.08963572 + posZ: -0.00288731651 + rotX: 270.0 + rotY: 359.869568 + rotZ: 0.0 + scaleX: 2.00000215 + scaleY: 2.00000238 + scaleZ: 2.00000262 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag 6 A Call Beyond c09838/Notecard Encounter Deck Setup + Instructions 08fc24.yaml' +- !include 'Custom_Model_Bag 6 A Call Beyond c09838/Deck Hunters of Yharnam 2d1501.yaml' +- !include 'Custom_Model_Bag 6 A Call Beyond c09838/Deck 3f7895.yaml' +- !include 'Custom_Model_Bag 6 A Call Beyond c09838/CardCustom 515b62.yaml' +- !include 'Custom_Model_Bag 6 A Call Beyond c09838/Custom_Model_Bag Set-aside 614563.yaml' +- !include 'Custom_Model_Bag 6 A Call Beyond c09838/CardCustom Micolash Ceverny 753184.yaml' +- !include 'Custom_Model_Bag 6 A Call Beyond c09838/Deck Milkweed (Nightmare Frontier + - Insight Enemies) e00005.yaml' +- !include 'Custom_Model_Bag 6 A Call Beyond c09838/Bag Encounter Deck Setup e00010.yaml' +- !include 'Custom_Model_Bag 6 A Call Beyond c09838/Card Mirror Chamber e00013.yaml' +- !include 'Custom_Model_Bag 6 A Call Beyond c09838/Card Mirror Chamber e00014.yaml' +- !include 'Custom_Model_Bag 6 A Call Beyond c09838/Card The Host of the Nightmare + e00015.yaml' +- !include 'Custom_Model_Bag 6 A Call Beyond c09838/Deck Scenario 6 - A Call Beyond + ed675b.yaml' +- !include 'Custom_Model_Bag 6 A Call Beyond c09838/Notecard Empty Space setup instructions + f9b461.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: https://i.imgur.com/1Q5d7w0.jpghttps://i.imgur.com/1Q5d7w0.jpg + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c09838 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model_Bag 6 A Call Beyond c09838.ttslua' +LuaScriptState: '{"ml":{"08fc24":{"lock":false,"pos":{"x":-12.4853,"y":1.59,"z":11.915},"rot":{"x":0,"y":90.0002,"z":0}},"2d1501":{"lock":false,"pos":{"x":-17.1197,"y":1.5987,"z":11.4604},"rot":{"x":0,"y":270.0106,"z":0}},"3f7895":{"lock":false,"pos":{"x":-2.689,"y":1.6232,"z":-5.049},"rot":{"x":0,"y":270,"z":0}},"515b62":{"lock":false,"pos":{"x":-3.9561,"y":1.5966,"z":-10.4415},"rot":{"x":0,"y":270.0029,"z":0}},"614563":{"lock":false,"pos":{"x":1.6963,"y":1.558,"z":14.2789},"rot":{"x":0,"y":225.0002,"z":0}},"753184":{"lock":false,"pos":{"x":-33.2425,"y":1.5336,"z":-0.1534},"rot":{"x":0,"y":269.9994,"z":0}},"e00005":{"lock":false,"pos":{"x":-17.1196,"y":1.5602,"z":15.1907},"rot":{"x":0,"y":270.0018,"z":0}},"e00010":{"lock":false,"pos":{"x":-3.9286,"y":1.398,"z":5.7574},"rot":{"x":0,"y":270.0002,"z":0}},"e00013":{"lock":false,"pos":{"x":-36.7719,"y":1.5336,"z":-11.5316},"rot":{"x":0,"y":270.0024,"z":180}},"e00014":{"lock":false,"pos":{"x":-36.7731,"y":1.5335,"z":11.4603},"rot":{"x":0.0018,"y":270.0073,"z":359.992}},"e00015":{"lock":false,"pos":{"x":-2.7248,"y":1.5966,"z":0.3733},"rot":{"x":0,"y":269.9997,"z":0}},"ed675b":{"lock":false,"pos":{"x":-12.134,"y":1.5746,"z":-20.8009},"rot":{"x":0,"y":269.9994,"z":180}},"f9b461":{"lock":false,"pos":{"x":-12.3358,"y":1.59,"z":-13.7156},"rot":{"x":0,"y":90.0002,"z":0}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: 6 A Call Beyond +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.58 + posY: 1.48 + posZ: -11.75 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Bag Encounter Deck Setup e00010.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Bag Encounter Deck Setup e00010.yaml new file mode 100644 index 000000000..7d1e587cc --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Bag Encounter Deck Setup e00010.yaml @@ -0,0 +1,47 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- !include 'Bag Encounter Deck Setup e00010/Bag 12 or Higher recognition dc5e2e.yaml' +- !include 'Bag Encounter Deck Setup e00010/Bag 11 or Lower Recognition 8f1556.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e00010 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Encounter Deck Setup +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.93 + posY: 1.4 + posZ: 5.76 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Bag Encounter Deck Setup e00010/Bag 11 or Lower Recognition 8f1556.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Bag Encounter Deck Setup e00010/Bag 11 or Lower Recognition 8f1556.yaml new file mode 100644 index 000000000..df808ea7a --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Bag Encounter Deck Setup e00010/Bag 11 or Lower Recognition 8f1556.yaml @@ -0,0 +1,2101 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 297100 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/zNkD4TT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"27c12434-447b-4c72-8b8e-fa5f29d95ff4"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nightmare Apostle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 296800 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/zNkD4TT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"27c12434-447b-4c72-8b8e-fa5f29d95ff4"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nightmare Apostle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 297000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2970': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/zNkD4TT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"27c12434-447b-4c72-8b8e-fa5f29d95ff4"}' + GUID: fe7276 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nightmare Apostle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.568 + posY: 1.697 + posZ: 5.35 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 296900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2969': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/zNkD4TT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"27c12434-447b-4c72-8b8e-fa5f29d95ff4"}' + GUID: 53bee6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nightmare Apostle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.511 + posY: 1.707 + posZ: 5.578 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 296300 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/krh5n8j.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"25de31db-2b41-41cb-ba0a-e5c2de5fc746"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Apocryphal Understanding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"32dc122f-fcf7-454a-81fe-f5e2c78f6722","type":"Treachery","class":"Mythos","traits":"Scheme"}' + GUID: bf8fb0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Polite Exchange + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 6.793 + posY: 2.505 + posZ: -79.255 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"32dc122f-fcf7-454a-81fe-f5e2c78f6722","type":"Treachery","class":"Mythos","traits":"Scheme"}' + GUID: ff8ff2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Polite Exchange + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 8.967 + posY: 3.288 + posZ: -77.077 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 296500 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/krh5n8j.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"25de31db-2b41-41cb-ba0a-e5c2de5fc746"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Apocryphal Understanding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 326900 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ikyzjnA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e659dbe8-6ff6-454b-b82d-21c600ed2bfc"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hypogean Snatcher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 295800 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ikyzjnA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e659dbe8-6ff6-454b-b82d-21c600ed2bfc"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hypogean Snatcher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 327000 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mNOAq1P.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e4ab07eb-8d61-4ba6-a982-19dc6a6f37d0"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Madman's Epiphany + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 296400 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mNOAq1P.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e4ab07eb-8d61-4ba6-a982-19dc6a6f37d0"}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Madman's Epiphany + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 296600 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GojaL1Q.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f76fb76b-d9f7-4dc3-a89b-e79db45ec6b5"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Paleblood Sky + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 327100 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GojaL1Q.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f76fb76b-d9f7-4dc3-a89b-e79db45ec6b5"}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Paleblood Sky + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 295200 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ijKzri1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9a758e94-98c7-4dc8-90e3-db70a30e08ab"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Amygdalan Measure + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 295700 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ijKzri1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9a758e94-98c7-4dc8-90e3-db70a30e08ab"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Amygdalan Measure + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 295500 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/UiurfVF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d2aa4f68-3edb-40a1-ba56-354aaebbb6dd"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lesser Amygdala + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 295400 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/UiurfVF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d2aa4f68-3edb-40a1-ba56-354aaebbb6dd"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lesser Amygdala + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 295600 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QGqndjd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e01dc2ef-bc2d-4b57-a130-ec7f68e9dd3a"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eldritch Spectator + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 295100 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QGqndjd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e01dc2ef-bc2d-4b57-a130-ec7f68e9dd3a"}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eldritch Spectator + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 295300 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QGqndjd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e01dc2ef-bc2d-4b57-a130-ec7f68e9dd3a"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eldritch Spectator + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 292800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2928': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/fWcrMnG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9f3edb01-a858-4ea6-b9a3-34e048210e41"}' + GUID: e0000d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Through the Looking Glass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.622 + posZ: 11.46 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 324600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3246': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/RpkPtYP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d1d4b396-125c-4935-9d8c-50c8db37ba2f","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: c87793 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Nightmare Swirls + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -2.596 + posY: 2.645 + posZ: -46.811 + rotX: 348.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 325200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3252': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/RpkPtYP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d1d4b396-125c-4935-9d8c-50c8db37ba2f","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: 14dfa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Nightmare Swirls + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -2.221 + posY: 2.319 + posZ: -46.392 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 324800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3248': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/RpkPtYP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d1d4b396-125c-4935-9d8c-50c8db37ba2f","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: 0f32f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Nightmare Swirls + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -3.578 + posY: 2.369 + posZ: -46.832 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 292300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2923': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Ogm6p1T.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9aed000b-9c4b-47e0-918a-caa3ab518649"}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mensis Ritual + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.745 + posZ: 11.46 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 293000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2930': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Ogm6p1T.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9aed000b-9c4b-47e0-918a-caa3ab518649"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mensis Ritual + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.755 + posZ: 11.46 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 292500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/x6BLI0Z.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6d84cfb2-a480-4f2c-8860-3cec5e2e5a4a"}' + GUID: c0ada1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mensis Puppet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.764 + posZ: 11.46 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 327400 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/laKjKxm.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"441e8056-e3a5-41cc-8c57-6775722b1470","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Nightmare Churns + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 293200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2932': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GAqSjiP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"54e91235-6143-4e7a-b4c8-c2c0d31fa2c6"}' + GUID: 9312ca + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Majestic Prayers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.438 + posY: 3.019 + posZ: -81.835 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 292500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/x6BLI0Z.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6d84cfb2-a480-4f2c-8860-3cec5e2e5a4a"}' + GUID: 7e9f02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mensis Puppet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.712 + posY: 3.035 + posZ: -85.685 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 292500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/x6BLI0Z.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6d84cfb2-a480-4f2c-8860-3cec5e2e5a4a"}' + GUID: 2142f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mensis Puppet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.113 + posY: 2.451 + posZ: -81.687 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 327200 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/laKjKxm.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"441e8056-e3a5-41cc-8c57-6775722b1470","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Nightmare Churns + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 327300 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/laKjKxm.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"441e8056-e3a5-41cc-8c57-6775722b1470","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Nightmare Churns + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 292400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2924': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GAqSjiP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"54e91235-6143-4e7a-b4c8-c2c0d31fa2c6"}' + GUID: e249a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Majestic Prayers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.793 + posZ: 11.46 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '2923': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Ogm6p1T.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2924': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GAqSjiP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/x6BLI0Z.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2928': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/fWcrMnG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2930': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Ogm6p1T.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2932': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GAqSjiP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2951': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QGqndjd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2952': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ijKzri1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2953': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QGqndjd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2954': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/UiurfVF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2955': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/UiurfVF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2956': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QGqndjd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2957': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ijKzri1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2958': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ikyzjnA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2963': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/krh5n8j.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2964': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mNOAq1P.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2965': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/krh5n8j.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2966': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GojaL1Q.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2968': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/zNkD4TT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2969': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/zNkD4TT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2970': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/zNkD4TT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2971': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/zNkD4TT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3246': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/RpkPtYP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3248': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/RpkPtYP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3252': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/RpkPtYP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3269': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ikyzjnA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3270': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mNOAq1P.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3271': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GojaL1Q.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3272': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/laKjKxm.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3273': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/laKjKxm.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3274': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/laKjKxm.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 297100 + - 296800 + - 297000 + - 296900 + - 296300 + - 339700 + - 339700 + - 296500 + - 326900 + - 295800 + - 327000 + - 296400 + - 296600 + - 327100 + - 295200 + - 295700 + - 295500 + - 295400 + - 295600 + - 295100 + - 295300 + - 292800 + - 324600 + - 325200 + - 324800 + - 292300 + - 293000 + - 292500 + - 327400 + - 293200 + - 292500 + - 292500 + - 327200 + - 327300 + - 292400 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ddea2f + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.653 + posY: 3.797 + posZ: -0.078 + rotX: 0.0 + rotY: 255.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8f1556 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 11 or Lower Recognition +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.93 + posY: 3.49 + posZ: 5.72 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Bag Encounter Deck Setup e00010/Bag 12 or Higher recognition dc5e2e.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Bag Encounter Deck Setup e00010/Bag 12 or Higher recognition dc5e2e.yaml new file mode 100644 index 000000000..6901fb714 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Bag Encounter Deck Setup e00010/Bag 12 or Higher recognition dc5e2e.yaml @@ -0,0 +1,2429 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 297100 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/zNkD4TT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"27c12434-447b-4c72-8b8e-fa5f29d95ff4"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nightmare Apostle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 296800 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/zNkD4TT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"27c12434-447b-4c72-8b8e-fa5f29d95ff4"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nightmare Apostle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 297000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2970': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/zNkD4TT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"27c12434-447b-4c72-8b8e-fa5f29d95ff4"}' + GUID: fe7276 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nightmare Apostle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.568 + posY: 1.697 + posZ: 5.35 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 296900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2969': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/zNkD4TT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"27c12434-447b-4c72-8b8e-fa5f29d95ff4"}' + GUID: 53bee6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nightmare Apostle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.511 + posY: 1.707 + posZ: 5.578 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 295200 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ijKzri1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9a758e94-98c7-4dc8-90e3-db70a30e08ab"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Amygdalan Measure + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 295700 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ijKzri1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9a758e94-98c7-4dc8-90e3-db70a30e08ab"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Amygdalan Measure + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 295500 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/UiurfVF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d2aa4f68-3edb-40a1-ba56-354aaebbb6dd"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lesser Amygdala + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 295400 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/UiurfVF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d2aa4f68-3edb-40a1-ba56-354aaebbb6dd"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lesser Amygdala + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 295600 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QGqndjd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e01dc2ef-bc2d-4b57-a130-ec7f68e9dd3a"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eldritch Spectator + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 295100 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QGqndjd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e01dc2ef-bc2d-4b57-a130-ec7f68e9dd3a"}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eldritch Spectator + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 295300 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QGqndjd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e01dc2ef-bc2d-4b57-a130-ec7f68e9dd3a"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eldritch Spectator + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 328500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3285': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/9Iq4bHd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9f106d3e-a66b-476d-bdef-45fa406934ab","type":"Treachery","class":"Mythos","traits":"Pact"}' + GUID: 2ec428 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Invite Madness + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -3.188 + posY: 2.318 + posZ: -67.458 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 328800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3288': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GlsGoUL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"fe786e72-65dc-4dd2-a9cf-ac3bf1bd962f","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: 71e115 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unspeakable Truth + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -1.415 + posY: 2.319 + posZ: -68.564 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 329000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3290': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GlsGoUL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"fe786e72-65dc-4dd2-a9cf-ac3bf1bd962f","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: 3c54ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unspeakable Truth + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.537 + posY: 2.319 + posZ: -68.152 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 292800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2928': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/fWcrMnG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9f3edb01-a858-4ea6-b9a3-34e048210e41"}' + GUID: e0000d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Through the Looking Glass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.622 + posZ: 11.46 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 328900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3289': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/0qfenWs.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5644f737-93b1-422e-b47a-a8efcb6d3b96","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: 7a77d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beckoning Moon + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -4.594 + posY: 2.354 + posZ: -66.382 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 324600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3246': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/RpkPtYP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d1d4b396-125c-4935-9d8c-50c8db37ba2f","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: c87793 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Nightmare Swirls + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -2.596 + posY: 2.645 + posZ: -46.811 + rotX: 348.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"32dc122f-fcf7-454a-81fe-f5e2c78f6722","type":"Treachery","class":"Mythos","traits":"Scheme"}' + GUID: 1882d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Polite Exchange + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -29.345 + posY: 2.645 + posZ: -58.885 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"32dc122f-fcf7-454a-81fe-f5e2c78f6722","type":"Treachery","class":"Mythos","traits":"Scheme"}' + GUID: ab4818 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Polite Exchange + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -28.913 + posY: 2.645 + posZ: -64.06 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 328700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3287': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/0qfenWs.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5644f737-93b1-422e-b47a-a8efcb6d3b96","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: 5d2525 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beckoning Moon + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -3.134 + posY: 2.319 + posZ: -65.121 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 328600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3286': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/9Iq4bHd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9f106d3e-a66b-476d-bdef-45fa406934ab","type":"Treachery","class":"Mythos","traits":"Pact"}' + GUID: 2446ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Invite Madness + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -3.997 + posY: 2.354 + posZ: -70.987 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 325200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3252': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/RpkPtYP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d1d4b396-125c-4935-9d8c-50c8db37ba2f","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: 14dfa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Nightmare Swirls + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -2.221 + posY: 2.319 + posZ: -46.392 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 324800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3248': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/RpkPtYP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d1d4b396-125c-4935-9d8c-50c8db37ba2f","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: 0f32f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Nightmare Swirls + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -3.578 + posY: 2.369 + posZ: -46.832 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 292300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2923': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Ogm6p1T.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9aed000b-9c4b-47e0-918a-caa3ab518649"}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mensis Ritual + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.745 + posZ: 11.46 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 293000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2930': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Ogm6p1T.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9aed000b-9c4b-47e0-918a-caa3ab518649"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mensis Ritual + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.755 + posZ: 11.46 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 292500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/x6BLI0Z.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6d84cfb2-a480-4f2c-8860-3cec5e2e5a4a"}' + GUID: c0ada1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mensis Puppet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.764 + posZ: 11.46 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 327400 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/laKjKxm.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"441e8056-e3a5-41cc-8c57-6775722b1470","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Nightmare Churns + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 293200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2932': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GAqSjiP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"54e91235-6143-4e7a-b4c8-c2c0d31fa2c6"}' + GUID: 9312ca + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Majestic Prayers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.438 + posY: 3.019 + posZ: -81.835 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 292500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/x6BLI0Z.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6d84cfb2-a480-4f2c-8860-3cec5e2e5a4a"}' + GUID: 7e9f02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mensis Puppet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.712 + posY: 3.035 + posZ: -85.685 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 292500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/x6BLI0Z.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6d84cfb2-a480-4f2c-8860-3cec5e2e5a4a"}' + GUID: 2142f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mensis Puppet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.113 + posY: 2.451 + posZ: -81.687 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 327200 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/laKjKxm.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"441e8056-e3a5-41cc-8c57-6775722b1470","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Nightmare Churns + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 327300 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/laKjKxm.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"441e8056-e3a5-41cc-8c57-6775722b1470","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Nightmare Churns + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 292400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2924': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GAqSjiP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"54e91235-6143-4e7a-b4c8-c2c0d31fa2c6"}' + GUID: e249a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Majestic Prayers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.793 + posZ: 11.46 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2987': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/PeW17lH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6f053c72-7468-40f1-9853-f7730db00a83"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Frenzy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.189 + posY: 2.724 + posZ: -25.553 + rotX: 0.0 + rotY: 268.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 299000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2990': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/PeW17lH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6f053c72-7468-40f1-9853-f7730db00a83"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Frenzy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.277 + posY: 2.867 + posZ: -25.39 + rotX: 0.0 + rotY: 272.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 299400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2994': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g3D7rh0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6ad4d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Winter Lantern + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.844 + posY: 2.792 + posZ: -24.443 + rotX: 0.0 + rotY: 272.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 299400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2994': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g3D7rh0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b24b67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Winter Lantern + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.207 + posY: 2.753 + posZ: -25.417 + rotX: 0.0 + rotY: 262.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2989': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/1H47z5I.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7ff4c827-bf33-4caf-975a-8e73158f1d50"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunter's Lullaby + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.055 + posY: 2.843 + posZ: -25.641 + rotX: 0.0 + rotY: 273.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 299400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2994': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g3D7rh0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7a71e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Winter Lantern + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.443 + posY: 1.39 + posZ: -47.28 + rotX: 0.0 + rotY: 270.0 + rotZ: 181.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 298600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2986': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/1H47z5I.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7ff4c827-bf33-4caf-975a-8e73158f1d50"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunter's Lullaby + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.215 + posY: 1.341 + posZ: -47.656 + rotX: 0.0 + rotY: 270.0 + rotZ: 181.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '2923': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Ogm6p1T.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2924': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GAqSjiP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/x6BLI0Z.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2928': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/fWcrMnG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2930': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Ogm6p1T.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2932': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GAqSjiP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2951': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QGqndjd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2952': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ijKzri1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2953': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QGqndjd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2954': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/UiurfVF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2955': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/UiurfVF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2956': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QGqndjd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2957': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ijKzri1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2968': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/zNkD4TT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2969': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/zNkD4TT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2970': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/zNkD4TT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2971': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/zNkD4TT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2986': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/1H47z5I.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2987': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/PeW17lH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2989': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/1H47z5I.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2990': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/PeW17lH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2994': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/g3D7rh0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3246': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/RpkPtYP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3248': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/RpkPtYP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3252': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/RpkPtYP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3272': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/laKjKxm.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3273': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/laKjKxm.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3274': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/laKjKxm.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3285': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/9Iq4bHd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3286': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/9Iq4bHd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3287': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/0qfenWs.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3288': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GlsGoUL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3289': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/0qfenWs.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3290': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GlsGoUL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 297100 + - 296800 + - 297000 + - 296900 + - 295200 + - 295700 + - 295500 + - 295400 + - 295600 + - 295100 + - 295300 + - 328500 + - 328800 + - 329000 + - 292800 + - 328900 + - 324600 + - 339700 + - 339700 + - 328700 + - 328600 + - 325200 + - 324800 + - 292300 + - 293000 + - 292500 + - 327400 + - 293200 + - 292500 + - 292500 + - 327200 + - 327300 + - 292400 + - 298700 + - 299000 + - 299400 + - 299400 + - 298900 + - 299400 + - 298600 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6caecd + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.762 + posY: 3.805 + posZ: 6.384 + rotX: 0.0 + rotY: 270.0 + rotZ: 181.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: dc5e2e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 12 or Higher recognition +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.93 + posY: 3.49 + posZ: 5.72 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Card Mirror Chamber e00013.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Card Mirror Chamber e00013.yaml new file mode 100644 index 000000000..e294d9e8e --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Card Mirror Chamber e00013.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 323700 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3237': + BackIsHidden: true + BackURL: https://i.imgur.com/Fe0DCyr.jpg + FaceURL: https://i.imgur.com/5yigK6p.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"0b4a8a42-6324-42a5-822d-7b6f0531f8f5","type":"Location","class":"Mythos","traits":"College + of Mensis. Nightmare","locationFront":{"icons":"HeartAlt","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"HeartAlt"}}' +GUID: e00013 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Mirror Chamber +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -36.77 + posY: 1.53 + posZ: -11.53 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Card Mirror Chamber e00014.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Card Mirror Chamber e00014.yaml new file mode 100644 index 000000000..221fd0589 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Card Mirror Chamber e00014.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 324000 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3240': + BackIsHidden: true + BackURL: https://i.imgur.com/mG5yeEH.jpg + FaceURL: https://i.imgur.com/5PolveJ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"aba5a5ff-7332-46ee-b954-5fe49e767dd4","type":"Location","class":"Mythos","traits":"College + of Mensis. Nightmare","locationFront":{"icons":"Hourglass","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Hourglass"}}' +GUID: e00014 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Mirror Chamber +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -36.77 + posY: 1.53 + posZ: 11.46 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Card The Host of the Nightmare e00015.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Card The Host of the Nightmare e00015.yaml new file mode 100644 index 000000000..ca7138f35 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Card The Host of the Nightmare e00015.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101700 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1017': + BackIsHidden: true + BackURL: https://i.imgur.com/rOTDuTt.jpg + FaceURL: https://i.imgur.com/xVrlSKb.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"ef4c3620-5d75-4d78-a816-42f16bc68ed1"}' +GUID: e00015 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Host of the Nightmare +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.73 + posY: 1.6 + posZ: 0.37 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/CardCustom 515b62.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/CardCustom 515b62.yaml new file mode 100644 index 000000000..3ba083e44 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/CardCustom 515b62.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 321800 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3218': + BackIsHidden: true + BackURL: https://i.imgur.com/FcfdVpi.jpg + FaceURL: https://i.imgur.com/Jk873UJ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 515b62 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.96 + posY: 1.6 + posZ: -10.44 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/CardCustom Micolash Ceverny 753184.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/CardCustom Micolash Ceverny 753184.yaml new file mode 100644 index 000000000..d173d9159 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/CardCustom Micolash Ceverny 753184.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 291400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '2914': + BackIsHidden: true + BackURL: https://i.imgur.com/bhuxLpb.jpg + FaceURL: https://i.imgur.com/LhmcDrA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '753184' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: '*Micolash Ceverny' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.24 + posY: 1.53 + posZ: -0.15 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Custom_Model_Bag Set-aside 614563.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Custom_Model_Bag Set-aside 614563.yaml new file mode 100644 index 000000000..2897aa68e --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Custom_Model_Bag Set-aside 614563.yaml @@ -0,0 +1,68 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.02149 + g: 0.00101 + r: 0.02149 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 614563/Card Mirror Chamber e00012.yaml' +- !include 'Custom_Model_Bag Set-aside 614563/Card Mirror Chamber e00011.yaml' +- !include 'Custom_Model_Bag Set-aside 614563/Bag Spoils 654669.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/ + MaterialIndex: 1 + MeshURL: http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/ + NormalURL: http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/ + TypeIndex: 6 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '614563' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Set-aside +PhysicsMaterial: + BounceCombine: 0 + Bounciness: 0.0 + DynamicFriction: 0.6 + FrictionCombine: 0 + StaticFriction: 0.6 +Rigidbody: + AngularDrag: 5.0 + Drag: 5.0 + Mass: 1.375 + UseGravity: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 1.56 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Custom_Model_Bag Set-aside 614563/Bag Spoils 654669.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Custom_Model_Bag Set-aside 614563/Bag Spoils 654669.yaml new file mode 100644 index 000000000..e3e794a12 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Custom_Model_Bag Set-aside 614563/Bag Spoils 654669.yaml @@ -0,0 +1,812 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315900 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/iAgnB10.jpg + FaceURL: https://i.imgur.com/HockzvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Gateway to a Tragic Land + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d1e30cf2-c292-429d-99ab-edce2ecd2ca9","type":"Asset","permanent":true,"class":"Neutral","traits":"Item. + Charm. Occult"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ailing Loran Chalice + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315600 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/fM8NK9t.jpg + FaceURL: https://i.imgur.com/GBsIKbP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: The Ghastly Reverie + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b4c646de-d449-4798-93cc-a30e89116c0d","type":"Asset","class":"Neutral","traits":"Condition. + Cursed. ","agilityIcons":2,"fightIcons":2,"cost":0}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beast's Embrace + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100200 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/PvxI9C4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: The Pride of Hemwick + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"09eacbbb-bfbc-4bd1-b12a-9d616c041b97","type":"Asset","class":"Neutral","traits":"Item. + Supply","agilityIcons":1,"cost":3}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bone Marrow Ash + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100300 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/5T7pHbT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Symbol of Stern Golden Spirit + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"21c25218-2071-4d07-bc3f-82688bcdbe49","type":"Asset","class":"Neutral","traits":"Item. + Armor. Occult","willpowerIcons":1,"wildIcons":1,"cost":2}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gold Ardeo + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100400 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/aylUt1v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: The Measured Tread of Gods + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8eecf68f-42d7-4c4d-a40e-ec3f0a216cf2","type":"Asset","class":"Neutral","traits":"Ritual","intellectIcons":1,"willpowerIcons":1,"wildIcons":1,"cost":5}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Make Contact + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315800 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/0hB7mzi.jpg + FaceURL: https://i.imgur.com/Lpal9JU.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Sidereal Beacon + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6752da73-cb22-475c-8691-de1275b28e28","type":"Asset","class":"Neutral","traits":"Item. + Armor. Occult","intellectIcons":1,"wildIcons":1,"cost":4}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mensis Cage + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100600 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/eAQYYCV.jpg + FaceURL: https://i.imgur.com/MOZTlcr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Paleblood Stillbirth + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d7cfea5e-a8b3-4424-9d3f-36141ca93f7e","type":"Asset","class":"Neutral","traits":"Item. + Occult. Cursed","wildIcons":3,"cost":1}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pale Cord of the Eye + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315400 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/R6nTlVN.jpg + FaceURL: https://i.imgur.com/iY9tmyP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Sacred Aria + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5dbb3575-59a5-4312-a134-6c92b59f7648","type":"Asset","class":"Neutral","traits":"Item. + Weapon. Science","fightIcons":1,"willpowerIcons":1,"wildIcons":1,"cost":3}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rosmarinus + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100800 + CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/ZyDWXxL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Useless Memento + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"4874a8eb-9f6a-421f-991f-0e6957187188","type":"Asset","class":"Neutral","traits":"Item. + Charm","fightIcons":1,"cost":3}' + GUID: e00009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Saw Hunter Badge + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315700 + CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/NmPvmKH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: For the Gentleman Hunter + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"3efb091b-1321-404f-8bf6-43eff4aceebc","type":"Asset","class":"Neutral","traits":"Item. + Weapon. Melee. ","agilityIcons":1,"cost":3}' + GUID: e0000a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Threaded Cane + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315500 + CustomDeck: + '1010': + BackIsHidden: true + BackURL: https://i.imgur.com/AUtNKgd.jpg + FaceURL: https://i.imgur.com/EsVypo5.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '"If your weapon ain''t got kick..."' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c38372ec-9d1e-4911-bfda-89695d89cebc","type":"Asset","class":"Neutral","traits":"Item. + Weapon. Melee. ","fightIcons":3,"cost":4}' + GUID: e0000b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Whirligig Saw + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 316000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3160': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/iajVyjP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Cainhurst's Grace + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6e4d7936-b2f1-4cc3-a1b5-6453243bc200","type":"Asset","class":"Neutral","traits":"Item. + Firearm. Weapon","fightIcons":1,"wildIcons":2,"cost":5}' + GUID: e0000d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Evelyn + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: -19.237 + posY: 1.902 + posZ: 41.881 + rotX: 0.0 + rotY: 270.0 + rotZ: 348.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/PvxI9C4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/5T7pHbT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/aylUt1v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/eAQYYCV.jpg + FaceURL: https://i.imgur.com/MOZTlcr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/ZyDWXxL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3154': + BackIsHidden: true + BackURL: https://i.imgur.com/R6nTlVN.jpg + FaceURL: https://i.imgur.com/iY9tmyP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3155': + BackIsHidden: true + BackURL: https://i.imgur.com/AUtNKgd.jpg + FaceURL: https://i.imgur.com/EsVypo5.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3156': + BackIsHidden: true + BackURL: https://i.imgur.com/fM8NK9t.jpg + FaceURL: https://i.imgur.com/GBsIKbP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3157': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/NmPvmKH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3158': + BackIsHidden: true + BackURL: https://i.imgur.com/0hB7mzi.jpg + FaceURL: https://i.imgur.com/Lpal9JU.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3159': + BackIsHidden: true + BackURL: https://i.imgur.com/iAgnB10.jpg + FaceURL: https://i.imgur.com/HockzvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3160': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/iajVyjP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 315900 + - 315600 + - 100200 + - 100300 + - 100400 + - 315800 + - 100600 + - 315400 + - 100800 + - 315700 + - 315500 + - 316000 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e0000c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: Spoils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.201 + posY: 3.531 + posZ: 44.276 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '654669' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Spoils +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.94 + posY: 2.33 + posZ: -58.49 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Custom_Model_Bag Set-aside 614563/Card Mirror Chamber e00011.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Custom_Model_Bag Set-aside 614563/Card Mirror Chamber e00011.yaml new file mode 100644 index 000000000..c81f39010 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Custom_Model_Bag Set-aside 614563/Card Mirror Chamber e00011.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 323800 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3238': + BackIsHidden: true + BackURL: https://i.imgur.com/Bp8IROp.jpg + FaceURL: https://i.imgur.com/xkf0In5.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"b688b104-96e8-42af-959e-d26f8831cdc6","type":"Location","class":"Mythos","traits":"College + of Mensis. Nightmare","locationFront":{"icons":"Moon","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Moon"}}' +GUID: e00011 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Mirror Chamber +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: 7.21 + posY: 2.53 + posZ: -61.26 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Custom_Model_Bag Set-aside 614563/Card Mirror Chamber e00012.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Custom_Model_Bag Set-aside 614563/Card Mirror Chamber e00012.yaml new file mode 100644 index 000000000..cfed0b7ba --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Custom_Model_Bag Set-aside 614563/Card Mirror Chamber e00012.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 323900 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3239': + BackIsHidden: true + BackURL: https://i.imgur.com/wGWhrJS.jpg + FaceURL: https://i.imgur.com/Rpy5qbn.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"f15d87fc-489b-4586-9536-ea45f7b9c551","type":"Location","class":"Mythos","traits":"College + of Mensis. Nightmare","locationFront":{"icons":"Star","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Star"}}' +GUID: e00012 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Mirror Chamber +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: 4.31 + posY: 2.54 + posZ: -54.27 + rotX: 8.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Deck 3f7895.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Deck 3f7895.yaml new file mode 100644 index 000000000..f7da951e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Deck 3f7895.yaml @@ -0,0 +1,294 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1015': + BackIsHidden: true + BackURL: https://i.imgur.com/koU2pAQ.jpg + FaceURL: https://i.imgur.com/lHIOVJO.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e37aa4a5-0dab-45b5-8d55-96b08c514fdc","type":"Act","class":"Mythos"}' + GUID: e00011 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The End of Mensis + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -10.108 + posY: 1.495 + posZ: -26.046 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 330300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3303': + BackIsHidden: true + BackURL: https://i.imgur.com/GEArn7L.jpg + FaceURL: https://i.imgur.com/qRpdbjh.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0cf2d4f9-5769-4a59-ae3e-d03ee4033a98","type":"Act","class":"Mythos"}' + GUID: e327d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rude Awakening + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -10.027 + posY: 1.537 + posZ: -26.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/e3fPsBA.jpg + FaceURL: https://i.imgur.com/2fFMv5M.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8b873d34-6f44-448e-9cc3-ec002b49bd2e","type":"Act","class":"Mythos"}' + GUID: e0000f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Recurring Nightmare + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.721 + posY: 1.571 + posZ: -26.005 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1016': + BackIsHidden: true + BackURL: https://i.imgur.com/6FMjKRp.jpg + FaceURL: https://i.imgur.com/6pixj2Q.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0b56666e-0cf1-4937-bf9d-9d70695a47c6","type":"Act","class":"Mythos"}' + GUID: e00012 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Long Nightmare + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.979 + posY: 1.58 + posZ: -26.802 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/e3fPsBA.jpg + FaceURL: https://i.imgur.com/2fFMv5M.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1015': + BackIsHidden: true + BackURL: https://i.imgur.com/koU2pAQ.jpg + FaceURL: https://i.imgur.com/lHIOVJO.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1016': + BackIsHidden: true + BackURL: https://i.imgur.com/6FMjKRp.jpg + FaceURL: https://i.imgur.com/6pixj2Q.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3303': + BackIsHidden: true + BackURL: https://i.imgur.com/GEArn7L.jpg + FaceURL: https://i.imgur.com/qRpdbjh.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +DeckIDs: +- 101500 +- 330300 +- 101300 +- 101600 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3f7895 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: -2.69 + posY: 1.62 + posZ: -5.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Deck Hunters of Yharnam 2d1501.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Deck Hunters of Yharnam 2d1501.yaml new file mode 100644 index 000000000..b0becf45b --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Deck Hunters of Yharnam 2d1501.yaml @@ -0,0 +1,802 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3085': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/vE7O0Ra.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e56a85cb-fc19-4ddc-8566-2f1fe96c1c6a","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Blood-Drunk. Hunter of Yharnam. Elite"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Drunk Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.985 + posY: 1.495 + posZ: -28.492 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3088': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i5NXyz4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d0b6eeaa-aa99-4aa2-b111-11f603d6b3f6","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Healing Church Doctor + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.825 + posY: 1.531 + posZ: -28.437 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3090': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2lnY2Es.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"843a9709-60a8-4b70-87f1-941470854caf","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Choir Assassin + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.656 + posY: 1.573 + posZ: -28.031 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3084': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/e15jXj1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5363b6cf-c71a-45da-a6a0-9b67a87bd18f","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunter of the Old Workshop + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.025 + posY: 1.582 + posZ: -29.212 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3094': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/BDAuOZG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6930b87f-8066-4e7f-8628-79b9143ec63e","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Servitor. Hunter of Yharnam. Elite"}' + GUID: fbf974 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Healing Church Executioner + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.064 + posY: 1.592 + posZ: -28.811 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3093': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/eYt1jRE.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0e0bf47f-8483-4818-a138-ddb26ba901f0","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Pthumerian. Hunter of Yharnam. Elite"}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Keeper of the Old Lords + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.842 + posY: 1.602 + posZ: -27.87 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/VwF1BDL/16413c15ef3b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e830c002-ba0c-4e93-96fb-fd72128e587a","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e0000a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Powder Keg Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.467 + posY: 1.611 + posZ: -29.442 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3086': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/US5wPNi.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"834bf275-d36b-4446-a690-91e220099e0a","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Beast. Hunter of Yharnam. Elite"}' + GUID: e0000b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge-Touched Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.685 + posY: 1.682 + posZ: -28.304 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3087': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/uSX3Fzg.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f0ceca69-63de-4ae4-9ff6-4da00c815a9a","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e00009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Moon-Scented Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.952 + posY: 1.631 + posZ: -29.179 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GGgyNcv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"eb50c9bd-0fc4-413a-b6ab-770dde2973d8","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e0000c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tomb Prospector + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.09 + posY: 1.638 + posZ: -28.596 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/hLRXku8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"82baaac1-ae4f-4cbc-ac8f-34da27161ff3","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e0000d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vileblood Knight + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.939 + posY: 1.65 + posZ: -28.875 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3092': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/OSGZbtr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7d8901c5-d475-4e5e-995e-055e9b707186","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Servitor. Hunter of Yharnam. Elite"}' + GUID: e0000e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yahar'gul Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.574 + posY: 1.657 + posZ: -29.055 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/VwF1BDL/16413c15ef3b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GGgyNcv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/hLRXku8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3084': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/e15jXj1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3085': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/vE7O0Ra.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3086': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/US5wPNi.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3087': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/uSX3Fzg.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3088': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i5NXyz4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3090': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2lnY2Es.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3092': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/OSGZbtr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3093': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/eYt1jRE.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3094': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/BDAuOZG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 308500 +- 308800 +- 309000 +- 308400 +- 309400 +- 309300 +- 100900 +- 308600 +- 308700 +- 101100 +- 101200 +- 309200 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 2d1501 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Hunters of Yharnam +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: -17.12 + posY: 1.6 + posZ: 11.46 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Deck Milkweed (Nightmare Frontier - Insight Enemies) e00005.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Deck Milkweed (Nightmare Frontier - Insight Enemies) e00005.yaml new file mode 100644 index 000000000..f714cac5e --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Deck Milkweed (Nightmare Frontier - Insight Enemies) e00005.yaml @@ -0,0 +1,282 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 322000 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/CnHBzDA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Captain of the Hunt + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"fc08401d-dddc-4412-8d1a-31972e25da76"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ludwig, the Accursed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 299500 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/436ZErX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: The False God + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"2f92c329-db19-4036-997b-f3b2d5507668"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Greater Amygdala + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 330700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3307': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/LQuyekr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Miskatonic's Finest + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c51a0e59-530c-4c66-a918-3d29e128010b","type":"Enemy","victory":3,"class":"Mythos","traits":"Humanoid. + Beast. Nightmare. Paradox. Elite"}' + GUID: 304f45 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Laurence, the First Vicar + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.783 + posY: 2.318 + posZ: -53.893 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 330500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3305': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/AUR3JSR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: The Pthumerian Queen + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5f53c24f-d999-4c2e-ab1a-a43ea36c42b4","type":"Enemy","victory":2,"class":"Mythos","traits":"Humanoid. + Pthumerian. Nightmare. Elite"}' + GUID: 69a6c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yharnam + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -2.416 + posY: 2.318 + posZ: -45.701 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '2995': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/436ZErX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3220': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/CnHBzDA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3305': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/AUR3JSR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3307': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/LQuyekr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 322000 +- 299500 +- 330700 +- 330500 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e00005 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Milkweed (Nightmare Frontier - Insight Enemies) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.56 + posZ: 15.19 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Deck Scenario 6 - A Call Beyond ed675b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Deck Scenario 6 - A Call Beyond ed675b.yaml new file mode 100644 index 000000000..e662b73d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Deck Scenario 6 - A Call Beyond ed675b.yaml @@ -0,0 +1,944 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 350200 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/WfWBfuV.jpg + FaceURL: https://i.imgur.com/Q6OraK6.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d1cb9c90-1f4f-4bd3-8f47-8b60f672231d","type":"Location","class":"Mythos","traits":"Mergo''s + Loft. Nightmare","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":null}}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Apostle's Gallery + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 350300 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/tZCRKH3.jpg + FaceURL: https://i.imgur.com/ehXgsuE.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"129dee1d-6d1d-411f-aa5e-d88ab0d2fb86","type":"Location","class":"Mythos","traits":"College + of Mensis. Nightmare","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","count":1}]},"locationBack":{"icons":null}}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Branching Corridors + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100200 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/uB0hIUY.jpg + FaceURL: https://i.imgur.com/jYOUQyw.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Lecture Building, Second Floor + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"3fc9a70c-6c6e-4ad0-9d84-1645b40b3313","type":"Location","class":"Mythos","traits":"Byrgenwerth. + Nightmare","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":null}}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Byrgenwerth + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100300 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/Zdqyp8p.jpg + FaceURL: https://i.imgur.com/i1fFL23.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"fd66a5e9-0ca5-41fb-a407-7cd4741a3745","type":"Location","class":"Mythos","traits":"College + of Mensis. Prison. Nightmare","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":null}}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dangling Cells + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100400 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/bAQ0N7N.jpg + FaceURL: https://i.imgur.com/Uyuxox8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Antiquities Department + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"911f9084-4f0d-41ec-bad3-af85bb46bfe0","type":"Location","class":"Mythos","traits":"Miskatonic. + Nightmare","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","count":0}]},"locationBack":{"icons":null}}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Decimated Auditorium + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 350400 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/eX67Dyh.jpg + FaceURL: https://i.imgur.com/j7GWj3H.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"baddf439-8f43-4016-98a2-56c3724b1212","type":"Location","class":"Mythos","traits":"Mergo''s + Loft. Nightmare","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":null}}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Depths of the Loft + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100600 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/VvY5Vee.jpg + FaceURL: https://i.imgur.com/BVeEahJ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Artifacts of the Scythian Steppe + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"4f4ed704-289d-40df-b6e0-d1b05c0eeebc","type":"Location","class":"Mythos","traits":"Miskatonic. + Nightmare","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":null}}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Featured Exhibit + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100700 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/gw4QI0z.jpg + FaceURL: https://i.imgur.com/jTavc29.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"77630501-a7d1-4fa5-acd7-8ba43550e8f0","type":"Location","class":"Mythos","traits":"Mergo''s + Loft. Nightmare","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":null}}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gates of the Loft + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100800 + CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/L9U94cG.jpg + FaceURL: https://i.imgur.com/qLy2SLi.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Shrine to Amygdala + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c93a6041-7611-4546-94e6-c58bb2c93d9e","type":"Location","class":"Mythos","traits":"Yahar''gul. + Prison. Nightmare","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":null}}' + GUID: e00009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Hypogean Gaol + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 330900 + CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/AUdALzy.jpg + FaceURL: https://i.imgur.com/ZWTM94k.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"2861bef1-c6fc-45c1-be37-ed41d2d99613","type":"Location","class":"Mythos","traits":"College + of Mensis. Nightmare","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","count":0}]},"locationBack":{"icons":null}}' + GUID: e0000a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lamplit Balcony + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101000 + CustomDeck: + '1010': + BackIsHidden: true + BackURL: https://i.imgur.com/FPOH5fz.jpg + FaceURL: https://i.imgur.com/yNC6lXz.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e48e9bfb-961b-483b-989c-bc9b8d0009cf","type":"Location","class":"Mythos","traits":"College + of Mensis. Nightmare","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":null}}' + GUID: e0000b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mensis Refectory + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 330800 + CustomDeck: + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/hk2roAw.jpg + FaceURL: https://i.imgur.com/NJKSCky.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c210e4f2-ba4f-4e17-8016-daf90a89f276","type":"Location","class":"Mythos","traits":"Ritual + Site. Yahar''gul. Nightmare","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":null}}' + GUID: e0000c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ritual Cloister + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 331100 + CustomDeck: + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/s8BF9uq.jpg + FaceURL: https://i.imgur.com/BNa0Nh6.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"3f238e5e-1fad-4024-be82-cfb24b56d555","type":"Location","class":"Mythos","traits":"Caspian + Sea. Nightmare","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","count":1}]},"locationBack":{"icons":null}}' + GUID: e0000d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Cimmerian Descent + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 331000 + CustomDeck: + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/81WUVWA.jpg + FaceURL: https://i.imgur.com/vfK1mJy.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: University Gates + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9484a6cf-c653-45ad-a187-17ffcb80a7e0","type":"Location","class":"Mythos","traits":"College + of Mensis. Nightmare","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":null}}' + GUID: e0000e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The College of Mensis + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101400 + CustomDeck: + '1014': + BackIsHidden: true + BackURL: https://i.imgur.com/hZlty2a.jpg + FaceURL: https://i.imgur.com/PISs6uc.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: New Haven, Connecticut + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"2d08ec99-ede8-4323-82f1-630b8bf19f78","type":"Location","class":"Mythos","traits":"Yale. + Nightmare","locationFront":{"icons":null,"uses":[{"token":"clue","type":"Clue","count":1}]},"locationBack":{"icons":null}}' + GUID: e0000f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yale University + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/uB0hIUY.jpg + FaceURL: https://i.imgur.com/jYOUQyw.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/Zdqyp8p.jpg + FaceURL: https://i.imgur.com/i1fFL23.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/bAQ0N7N.jpg + FaceURL: https://i.imgur.com/Uyuxox8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/VvY5Vee.jpg + FaceURL: https://i.imgur.com/BVeEahJ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/gw4QI0z.jpg + FaceURL: https://i.imgur.com/jTavc29.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/L9U94cG.jpg + FaceURL: https://i.imgur.com/qLy2SLi.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1010': + BackIsHidden: true + BackURL: https://i.imgur.com/FPOH5fz.jpg + FaceURL: https://i.imgur.com/yNC6lXz.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1014': + BackIsHidden: true + BackURL: https://i.imgur.com/hZlty2a.jpg + FaceURL: https://i.imgur.com/PISs6uc.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3308': + BackIsHidden: true + BackURL: https://i.imgur.com/hk2roAw.jpg + FaceURL: https://i.imgur.com/NJKSCky.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3309': + BackIsHidden: true + BackURL: https://i.imgur.com/AUdALzy.jpg + FaceURL: https://i.imgur.com/ZWTM94k.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3310': + BackIsHidden: true + BackURL: https://i.imgur.com/81WUVWA.jpg + FaceURL: https://i.imgur.com/vfK1mJy.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3311': + BackIsHidden: true + BackURL: https://i.imgur.com/s8BF9uq.jpg + FaceURL: https://i.imgur.com/BNa0Nh6.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3502': + BackIsHidden: true + BackURL: https://i.imgur.com/WfWBfuV.jpg + FaceURL: https://i.imgur.com/Q6OraK6.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3503': + BackIsHidden: true + BackURL: https://i.imgur.com/tZCRKH3.jpg + FaceURL: https://i.imgur.com/ehXgsuE.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3504': + BackIsHidden: true + BackURL: https://i.imgur.com/eX67Dyh.jpg + FaceURL: https://i.imgur.com/j7GWj3H.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +DeckIDs: +- 350200 +- 350300 +- 100200 +- 100300 +- 100400 +- 350400 +- 100600 +- 100700 +- 100800 +- 330900 +- 101000 +- 330800 +- 331100 +- 331000 +- 101400 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ed675b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Scenario 6 - A Call Beyond +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.13 + posY: 1.57 + posZ: -20.8 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Notecard Empty Space setup instructions f9b461.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Notecard Empty Space setup instructions f9b461.yaml new file mode 100644 index 000000000..b9426de1c --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Notecard Empty Space setup instructions f9b461.yaml @@ -0,0 +1,42 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: " After drawing your opening hands, have the Lead Investigator construct + the Nightmare of Mensis by putting facedown player cards from the top of their deck + as depicted in \u201CLocation Placement for Setup.\u201D (p43)" +DragSelectable: true +GMNotes: '' +GUID: f9b461 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Notecard +Nickname: Empty Space setup instructions +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.34 + posY: 1.59 + posZ: -13.72 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Notecard Encounter Deck Setup Instructions 08fc24.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Notecard Encounter Deck Setup Instructions 08fc24.yaml new file mode 100644 index 000000000..dbc84174f --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 6 A Call Beyond c09838/Notecard Encounter Deck Setup Instructions 08fc24.yaml @@ -0,0 +1,48 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: ' + + 1. If Recognition 11 or lower: Bag 1 + + 2. If Recognition 12 or Higher: Bag 2 + + 3. If Recognition 13 or Higher: Add undefeated enemy from Milkweed Set (Optional) + + 4. Add 1 Random undefeated enemy from Hunters of Yharnam set' +DragSelectable: true +GMNotes: '' +GUID: 08fc24 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Notecard +Nickname: Encounter Deck Setup Instructions +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.48 + posY: 1.59 + posZ: 11.91 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd.ttslua new file mode 100644 index 000000000..d3a91c848 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd.ttslua @@ -0,0 +1,503 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + +function onload(saved_data) + fresh = true + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + moveList = {} + moveGuid = nil + + if next(memoryList) == nil then + createSetupButton() + else + fresh = false + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects(move) + local howManyButtons = 0 + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + 2 + objPos.z = objPos.z * globalScaleFactor * 0.9 + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=500, width=500, + color=color, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons(move) + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} + local color = {0,1,0,0.6} + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + theList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end + self.editButton({index=index, color=color}) + theList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + moveList = {} + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil +end + +--Saves selections +function buttonClick_submit() + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + memoryListBackup[guid] = nil + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +--Resets bag to starting status +function buttonClick_reset() + fresh = true + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end + local deltaPos = {} + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + yOffset + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd.yaml new file mode 100644 index 000000000..093843a4b --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd.yaml @@ -0,0 +1,111 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +AttachedDecals: +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ + Name: dunwich_back + Size: 7.4 + Transform: + posX: -0.0021877822 + posY: -0.08963572 + posZ: -0.00288731651 + rotX: 270.0 + rotY: 359.869568 + rotZ: 0.0 + scaleX: 2.00000215 + scaleY: 2.00000238 + scaleZ: 2.00000262 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 00bb28.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Card Lord Amygdala''s Tower 0795f4.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Card Communion 0836bc.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 0bbee2.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Card Ailing Loran Frontier 163951.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 172be8.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 196c57.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Deck Milkweed (Nightmare Frontier + - Insight Enemies) 3050d8.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Card Underground Corpse Pile 343b4e.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Deck 465257.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Card The Eastern Cathedral 48b873.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 514e1e.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Card The Hunter''s Nightmare 59c219.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 65182d.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 662760.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Deck 9caeb9.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Card Sanguine River 9f07f6.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Card Bloodstained Gate a154b9.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Card The Western Cathedral aa4c61.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Deck ae7012.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile af5f9b.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Deck Hunters of Yharnam b3c935.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile c8cd13.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Bag Facedown Keys d38aeb.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Bag Act E Deck e0000a.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Deck Mensis Rooms (Squares and Moons) + e0001a.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Bag Act C Deck e4f4bd.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Card Mergo''s Loft e5058c.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile ea5a8d.yaml' +- !include 'Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile fd4ea3.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: https://i.imgur.com/IeL73tF.jpghttps://i.imgur.com/IeL73tF.jpg + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ddd5dd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model_Bag 7 Communion ddd5dd.ttslua' +LuaScriptState: '{"ml":{"00bb28":{"lock":false,"pos":{"x":-36.7733,"y":1.52,"z":3.86},"rot":{"x":0,"y":0.0193,"z":0}},"0795f4":{"lock":false,"pos":{"x":-23.64,"y":1.5336,"z":7.65},"rot":{"x":0,"y":270.0002,"z":180}},"0836bc":{"lock":false,"pos":{"x":-3.956,"y":1.5966,"z":-10.4413},"rot":{"x":0,"y":269.9998,"z":0}},"0bbee2":{"lock":false,"pos":{"x":-33.2712,"y":1.52,"z":7.7223},"rot":{"x":0,"y":270.0118,"z":0}},"163951":{"lock":false,"pos":{"x":-36.84,"y":1.5336,"z":0},"rot":{"x":0,"y":270.0009,"z":180}},"172be8":{"lock":false,"pos":{"x":-26.7954,"y":1.52,"z":-7.7224},"rot":{"x":0,"y":270.0115,"z":0}},"196c57":{"lock":false,"pos":{"x":-30.2242,"y":1.52,"z":3.86},"rot":{"x":0,"y":0.0194,"z":0}},"3050d8":{"lock":false,"pos":{"x":-11.635,"y":1.5602,"z":7.1016},"rot":{"x":0,"y":270.0001,"z":0}},"343b4e":{"lock":false,"pos":{"x":-36.84,"y":1.5336,"z":-7.6501},"rot":{"x":0,"y":270.0001,"z":180}},"465257":{"lock":false,"pos":{"x":-2.6886,"y":1.6184,"z":-5.0486},"rot":{"x":0,"y":269.9999,"z":0}},"48b873":{"lock":false,"pos":{"x":-30.24,"y":1.5336,"z":-7.65},"rot":{"x":0,"y":270.0002,"z":180}},"514e1e":{"lock":false,"pos":{"x":-30.2242,"y":1.52,"z":-3.83},"rot":{"x":0,"y":0.0191,"z":0}},"59c219":{"lock":false,"pos":{"x":-30.24,"y":1.5336,"z":0},"rot":{"x":0,"y":270,"z":180}},"5e6a84":{"lock":false,"pos":{"x":1.6964,"y":1.558,"z":14.279},"rot":{"x":0,"y":225.0015,"z":0}},"65182d":{"lock":false,"pos":{"x":-23.6765,"y":1.52,"z":3.86},"rot":{"x":0,"y":0.0196,"z":0}},"662760":{"lock":false,"pos":{"x":-36.7731,"y":1.52,"z":-3.83},"rot":{"x":0,"y":0.0194,"z":0}},"7234af":{"lock":false,"pos":{"x":-26.9434,"y":1.52,"z":7.3995},"rot":{"x":0,"y":270.0116,"z":0}},"9caeb9":{"lock":false,"pos":{"x":-3.928,"y":1.7291,"z":5.7573},"rot":{"x":0,"y":270.0008,"z":180}},"9f07f6":{"lock":false,"pos":{"x":-23.64,"y":1.5336,"z":0},"rot":{"x":0,"y":270.0002,"z":180}},"a154b9":{"lock":false,"pos":{"x":-23.64,"y":1.5336,"z":-7.6501},"rot":{"x":0,"y":269.9999,"z":180}},"aa4c61":{"lock":false,"pos":{"x":-30.2401,"y":1.5336,"z":7.6502},"rot":{"x":0,"y":270,"z":180}},"ae7012":{"lock":false,"pos":{"x":-2.7247,"y":1.6184,"z":0.3733},"rot":{"x":0,"y":270.0002,"z":0}},"af5f9b":{"lock":false,"pos":{"x":-33.4024,"y":1.52,"z":0.1596},"rot":{"x":0,"y":270.0117,"z":0}},"b3c935":{"lock":false,"pos":{"x":-11.8851,"y":1.5987,"z":10.8504},"rot":{"x":0,"y":269.999,"z":0}},"c8cd13":{"lock":false,"pos":{"x":-26.7498,"y":1.52,"z":0.222},"rot":{"x":0,"y":270.0116,"z":0}},"d38aeb":{"lock":false,"pos":{"x":-2.0145,"y":1.4627,"z":15.063},"rot":{"x":0,"y":224.9993,"z":0}},"e0000a":{"lock":false,"pos":{"x":-9.8458,"y":1.335,"z":-7.2612},"rot":{"x":0,"y":270.002,"z":0}},"e0001a":{"lock":false,"pos":{"x":-5.506,"y":1.6617,"z":15.6729},"rot":{"x":0,"y":270.0001,"z":180}},"e4f4bd":{"lock":false,"pos":{"x":-10.0812,"y":1.335,"z":-2.9581},"rot":{"x":0,"y":270.0009,"z":0}},"e5058c":{"lock":false,"pos":{"x":-36.8843,"y":1.5336,"z":7.658},"rot":{"x":0,"y":270.7573,"z":180}},"ea5a8d":{"lock":false,"pos":{"x":-33.589,"y":1.52,"z":-7.7497},"rot":{"x":0,"y":270.0115,"z":0}},"fd4ea3":{"lock":false,"pos":{"x":-23.6765,"y":1.52,"z":-3.83},"rot":{"x":0,"y":0.0197,"z":0}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '7: Communion' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.64 + posY: 1.48 + posZ: -19.86 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Act C Deck e4f4bd.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Act C Deck e4f4bd.yaml new file mode 100644 index 000000000..042b116cb --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Act C Deck e4f4bd.yaml @@ -0,0 +1,271 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 334500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3345': + BackIsHidden: true + BackURL: https://i.imgur.com/jObPqw8.jpg + FaceURL: https://i.imgur.com/cUftAaF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"1f984d46-b2c2-4d95-80e4-7e2868609b32","type":"Act","class":"Mythos"}' + GUID: 9ef462 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Absolution of Lady Maria + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -12.983 + posY: 1.695 + posZ: -14.811 + rotX: 0.0 + rotY: 270.0 + rotZ: 183.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2715': + BackIsHidden: true + BackURL: https://i.imgur.com/whszJYx.jpg + FaceURL: https://i.imgur.com/hdTADQc.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ca699a8b-3575-42b9-a9cf-c1ee2ec25b83"}' + GUID: 58849a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Astral Prison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.09 + posY: 1.575 + posZ: -23.974 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2718': + BackIsHidden: true + BackURL: https://i.imgur.com/FPQXnJN.jpg + FaceURL: https://i.imgur.com/VzlIrDt.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f1522a90-c7d4-4543-99a8-666285a37739"}' + GUID: e12e42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Origin of the Nightmare II + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.505 + posY: 1.565 + posZ: -24.566 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '2715': + BackIsHidden: true + BackURL: https://i.imgur.com/whszJYx.jpg + FaceURL: https://i.imgur.com/hdTADQc.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '2718': + BackIsHidden: true + BackURL: https://i.imgur.com/FPQXnJN.jpg + FaceURL: https://i.imgur.com/VzlIrDt.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3345': + BackIsHidden: true + BackURL: https://i.imgur.com/jObPqw8.jpg + FaceURL: https://i.imgur.com/cUftAaF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + DeckIDs: + - 334500 + - 271500 + - 271800 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e19cd5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.656 + posY: 2.876 + posZ: -1.786 + rotX: 350.0 + rotY: 268.0 + rotZ: 356.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e4f4bd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Act C Deck +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.08 + posY: 1.33 + posZ: -2.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Act E Deck e0000a.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Act E Deck e0000a.yaml new file mode 100644 index 000000000..b62d4ad28 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Act E Deck e0000a.yaml @@ -0,0 +1,269 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 272700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2727': + BackIsHidden: true + BackURL: https://i.imgur.com/KSwjt8Z.jpg + FaceURL: https://i.imgur.com/WMMlYOs.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ac36a806-d560-44f1-a308-d99c87da9f31"}' + GUID: 773e8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Stilbirth of the Mind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.384 + posY: 1.491 + posZ: -34.823 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 272900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2729': + BackIsHidden: true + BackURL: https://i.imgur.com/yIMU84J.jpg + FaceURL: https://i.imgur.com/UGH1cgg.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e70a13bf-dc90-403f-bcb3-bbc866d22ff9"}' + GUID: d518e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Befouled Great One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.198 + posY: 1.533 + posZ: -34.645 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 285900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2859': + BackIsHidden: true + BackURL: https://i.imgur.com/CYuiDad.jpg + FaceURL: https://i.imgur.com/mca2mGG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0a1a90aa-d551-46a8-b639-be6661f2f027"}' + GUID: c5617e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Origin of the Nightmare III + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.456 + posY: 1.687 + posZ: -14.069 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '2727': + BackIsHidden: true + BackURL: https://i.imgur.com/KSwjt8Z.jpg + FaceURL: https://i.imgur.com/WMMlYOs.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '2729': + BackIsHidden: true + BackURL: https://i.imgur.com/yIMU84J.jpg + FaceURL: https://i.imgur.com/UGH1cgg.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '2859': + BackIsHidden: true + BackURL: https://i.imgur.com/CYuiDad.jpg + FaceURL: https://i.imgur.com/mca2mGG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + DeckIDs: + - 272700 + - 272900 + - 285900 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f5da1b + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.173 + posY: 2.36 + posZ: -50.974 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e0000a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Act E Deck +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.85 + posY: 1.33 + posZ: -7.26 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Facedown Keys d38aeb.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Facedown Keys d38aeb.yaml new file mode 100644 index 000000000..919c8003d --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Facedown Keys d38aeb.yaml @@ -0,0 +1,49 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.5 + g: 0.5 + r: 0.5 +ContainedObjects: +- !include 'Bag Facedown Keys d38aeb/Custom_Tile 8bde30.yaml' +- !include 'Bag Facedown Keys d38aeb/Custom_Tile d70b36.yaml' +- !include 'Bag Facedown Keys d38aeb/Custom_Tile f2a6d9.yaml' +- !include 'Bag Facedown Keys d38aeb/Custom_Tile 480325.yaml' +Description: Be sure to shuffle this bag! +DragSelectable: true +GMNotes: '' +GUID: d38aeb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Facedown Keys +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.02 + posY: 1.46 + posZ: 15.06 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 0.65 + scaleY: 0.65 + scaleZ: 0.65 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Facedown Keys d38aeb/Custom_Tile 480325.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Facedown Keys d38aeb/Custom_Tile 480325.yaml new file mode 100644 index 000000000..97143924c --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Facedown Keys d38aeb/Custom_Tile 480325.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125353191/BDEBB5121A07EC12A04E749B335D01A4D4702A43/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125357797/FD3A585D86E22574B815CC630924027284122EF3/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '480325' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.98 + posY: 2.66 + posZ: 48.75 + rotX: 353.0 + rotY: 270.0 + rotZ: 176.0 + scaleX: 0.55 + scaleY: 1.0 + scaleZ: 0.55 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Facedown Keys d38aeb/Custom_Tile 8bde30.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Facedown Keys d38aeb/Custom_Tile 8bde30.yaml new file mode 100644 index 000000000..d3e0cfb56 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Facedown Keys d38aeb/Custom_Tile 8bde30.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125353191/BDEBB5121A07EC12A04E749B335D01A4D4702A43/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125361354/DB7B50BCF6C275C3C25843331D5C8EC68A6F9E57/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8bde30 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.85 + posY: 2.3 + posZ: -65.81 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 0.55 + scaleY: 1.0 + scaleZ: 0.55 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Facedown Keys d38aeb/Custom_Tile d70b36.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Facedown Keys d38aeb/Custom_Tile d70b36.yaml new file mode 100644 index 000000000..f18d4462e --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Facedown Keys d38aeb/Custom_Tile d70b36.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125353191/BDEBB5121A07EC12A04E749B335D01A4D4702A43/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125354344/74C3014A27A00100FE3A719677CB50677285CB58/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d70b36 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 43.96 + posY: 2.29 + posZ: -71.08 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 0.55 + scaleY: 1.0 + scaleZ: 0.55 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Facedown Keys d38aeb/Custom_Tile f2a6d9.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Facedown Keys d38aeb/Custom_Tile f2a6d9.yaml new file mode 100644 index 000000000..c30a47042 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Bag Facedown Keys d38aeb/Custom_Tile f2a6d9.yaml @@ -0,0 +1,50 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125353191/BDEBB5121A07EC12A04E749B335D01A4D4702A43/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125360284/CBE3FFC95062445A9B6BC2B585BED340504256F7/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f2a6d9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 46.18 + posY: 2.29 + posZ: -77.71 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 0.55 + scaleY: 1.0 + scaleZ: 0.55 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Ailing Loran Frontier 163951.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Ailing Loran Frontier 163951.yaml new file mode 100644 index 000000000..8b2240c17 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Ailing Loran Frontier 163951.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 350200 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3502': + BackIsHidden: true + BackURL: https://i.imgur.com/3M6KFTX.jpg + FaceURL: https://i.imgur.com/HlkX1ex.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"67b334a5-53f5-4c6b-89fb-119bfba2126e","type":"Location","class":"Mythos","traits":"Nightmare. + Loran. Wastes","locationFront":{"icons":"Circle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"Circle"}}' +GUID: '163951' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Ailing Loran Frontier +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -36.84 + posY: 1.53 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Bloodstained Gate a154b9.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Bloodstained Gate a154b9.yaml new file mode 100644 index 000000000..957721075 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Bloodstained Gate a154b9.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 350400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3504': + BackIsHidden: true + BackURL: https://i.imgur.com/GiZsIAx.jpg + FaceURL: https://i.imgur.com/EanNPyj.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"af0f75c7-8859-46d7-aba5-b45b1c5ef12f","type":"Location","class":"Mythos","traits":"Nightmare. + Yharnam","locationFront":{"icons":"Triangle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Triangle"}}' +GUID: a154b9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Bloodstained Gate +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -23.64 + posY: 1.53 + posZ: -7.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Communion 0836bc.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Communion 0836bc.yaml new file mode 100644 index 000000000..018906592 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Communion 0836bc.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 284800 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '2848': + BackIsHidden: true + BackURL: https://i.imgur.com/SvrXJJ0.jpg + FaceURL: https://i.imgur.com/KZGP2Zp.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"74a9825c-fdc9-43d8-b68b-842d4146611f"}' +GUID: 0836bc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Communion +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.96 + posY: 1.6 + posZ: -10.44 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Lord Amygdala's Tower 0795f4.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Lord Amygdala's Tower 0795f4.yaml new file mode 100644 index 000000000..0c93f5f3e --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Lord Amygdala's Tower 0795f4.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100300 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/wU8N87s.jpg + FaceURL: https://i.imgur.com/sSTVS6h.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"24a452cd-a728-4c96-804f-6c2f596d08b4","type":"Location","class":"Mythos","traits":"Nightmare. + Shrine. Lair","locationFront":{"icons":"Slash","uses":[{"token":"clue","type":"Clue","count":0}]},"locationBack":{"icons":"Slash"}}' +GUID: 0795f4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Lord Amygdala's Tower +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -23.64 + posY: 1.53 + posZ: 7.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Mergo's Loft e5058c.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Mergo's Loft e5058c.yaml new file mode 100644 index 000000000..e54870fbb --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Mergo's Loft e5058c.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/rLBeERY.jpg + FaceURL: https://i.imgur.com/qHzGmG5.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"88df03c7-0311-4c56-8f83-b6b06cdbc0b1","type":"Location","class":"Mythos","traits":"Nightmare. + Mergo''s Loft","locationFront":{"icons":"T","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"T"}}' +GUID: e5058c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Mergo's Loft +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -36.88 + posY: 1.53 + posZ: 7.66 + rotX: 0.0 + rotY: 271.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Sanguine River 9f07f6.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Sanguine River 9f07f6.yaml new file mode 100644 index 000000000..d4ca9c14b --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Sanguine River 9f07f6.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 350300 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3503': + BackIsHidden: true + BackURL: https://i.imgur.com/lKdOnvr.jpg + FaceURL: https://i.imgur.com/oZWiAs0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"147ba853-49f1-42bc-8616-7921eae4872c","type":"Location","class":"Mythos","traits":"Nightmare. + River. Yharnam","locationFront":{"icons":"Quote","uses":[{"token":"clue","type":"Clue","countPerInvestigator":3}]},"locationBack":{"icons":"Quote"}}' +GUID: 9f07f6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Sanguine River +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -23.64 + posY: 1.53 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card The Eastern Cathedral 48b873.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card The Eastern Cathedral 48b873.yaml new file mode 100644 index 000000000..117b3d14d --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card The Eastern Cathedral 48b873.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100200 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/8ghVOkp.jpg + FaceURL: https://i.imgur.com/PSdx6dO.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"0cb35d76-1f92-4fab-bd6a-f669852afa1e","type":"Location","class":"Mythos","traits":"Nightmare. + Cathedral","locationFront":{"icons":"Cross","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Cross"}}' +GUID: 48b873 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Eastern Cathedral +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -30.24 + posY: 1.53 + posZ: -7.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card The Hunter's Nightmare 59c219.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card The Hunter's Nightmare 59c219.yaml new file mode 100644 index 000000000..b5f8e244d --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card The Hunter's Nightmare 59c219.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100600 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/RGJsc92.jpg + FaceURL: https://i.imgur.com/T7S4Sml.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"8c640fff-5907-432b-9df5-3096c590a30b","type":"Location","class":"Mythos","traits":"Nightmare. + Yharnam. Central","locationFront":{"icons":"CrossAlt","uses":[{"token":"clue","type":"Clue","count":0}]},"locationBack":{"icons":"CrossAlt"}}' +GUID: 59c219 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Hunter's Nightmare +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -30.24 + posY: 1.53 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card The Western Cathedral aa4c61.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card The Western Cathedral aa4c61.yaml new file mode 100644 index 000000000..6a1a42f28 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card The Western Cathedral aa4c61.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100800 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/BHG3A4R.jpg + FaceURL: https://i.imgur.com/GozwMSL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"fa83ec0b-8972-45ee-ba83-6c7c61dab56c","type":"Location","class":"Mythos","traits":"Nightmare. + Cathedral. ","locationFront":{"icons":"Star","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Star"}}' +GUID: aa4c61 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Western Cathedral +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -30.24 + posY: 1.53 + posZ: 7.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Underground Corpse Pile 343b4e.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Underground Corpse Pile 343b4e.yaml new file mode 100644 index 000000000..c531d512a --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Card Underground Corpse Pile 343b4e.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100700 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/ADeyOK7.jpg + FaceURL: https://i.imgur.com/KBXfrOc.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"2fdedcb9-b0d9-4fb0-8f73-1ed23fa64ae0","type":"Location","class":"Mythos","traits":"Nightmare. + Cathedral. Lair","locationFront":{"icons":"Clover","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"Clover"}}' +GUID: 343b4e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Underground Corpse Pile +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -36.84 + posY: 1.53 + posZ: -7.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84.yaml new file mode 100644 index 000000000..31b650e6a --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84.yaml @@ -0,0 +1,77 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.02149 + g: 0.00101 + r: 0.02149 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 5e6a84/Card The Spire of Mensis e0000d.yaml' +- !include 'Custom_Model_Bag Set-aside 5e6a84/Card Astral Clocktower e0000b.yaml' +- !include 'Custom_Model_Bag Set-aside 5e6a84/Card The Wet Nurse''s Lunarium e0000c.yaml' +- !include 'Custom_Model_Bag Set-aside 5e6a84/Bag Spoils 9daf8a.yaml' +- !include 'Custom_Model_Bag Set-aside 5e6a84/Bag Act 2E Additions d5773b.yaml' +- !include 'Custom_Model_Bag Set-aside 5e6a84/Card Caryll Rune Moon da425f.yaml' +- !include 'Custom_Model_Bag Set-aside 5e6a84/Card Rakuyo 0c8535.yaml' +- !include 'Custom_Model_Bag Set-aside 5e6a84/Card The Queen''s Stone 3f8801.yaml' +- !include 'Custom_Model_Bag Set-aside 5e6a84/Card Formless Cord of the Eye 9bbd22.yaml' +- !include 'Custom_Model_Bag Set-aside 5e6a84/Bag Act 3C Additions e0000b.yaml' +- !include 'Custom_Model_Bag Set-aside 5e6a84/Bag Act 2A Additions f8b7ed.yaml' +- !include 'Custom_Model_Bag Set-aside 5e6a84/Bag Act 2C Additions f89a78.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/ + MaterialIndex: 1 + MeshURL: http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/ + NormalURL: http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/ + TypeIndex: 6 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 5e6a84 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Set-aside +PhysicsMaterial: + BounceCombine: 0 + Bounciness: 0.0 + DynamicFriction: 0.6 + FrictionCombine: 0 + StaticFriction: 0.6 +Rigidbody: + AngularDrag: 5.0 + Drag: 5.0 + Mass: 1.375 + UseGravity: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 1.56 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2A Additions f8b7ed.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2A Additions f8b7ed.yaml new file mode 100644 index 000000000..f57aab960 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2A Additions f8b7ed.yaml @@ -0,0 +1,47 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- !include 'Bag Act 2A Additions f8b7ed/CardCustom Mergo''s Wet Nurse bc3134.yaml' +- !include 'Bag Act 2A Additions f8b7ed/Deck Pthumerian Heir + Agents of Mergo 187a78.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f8b7ed +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Act 2A Additions +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69 + posY: 3.47 + posZ: 14.24 + rotX: 0.0 + rotY: 45.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2A Additions f8b7ed/CardCustom Mergo's Wet Nurse bc3134.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2A Additions f8b7ed/CardCustom Mergo's Wet Nurse bc3134.yaml new file mode 100644 index 000000000..7757535be --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2A Additions f8b7ed/CardCustom Mergo's Wet Nurse bc3134.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 335900 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3359': + BackIsHidden: true + BackURL: https://i.imgur.com/RQOLfIv.png + FaceURL: https://i.imgur.com/grYrnmy.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Attendant to the Formless Prince +DragSelectable: true +GMNotes: '' +GUID: bc3134 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: '*Mergo''s Wet Nurse' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.75 + posY: 2.5 + posZ: -74.09 + rotX: 0.0 + rotY: 285.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2A Additions f8b7ed/Deck Pthumerian Heir + Agents of Mergo 187a78.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2A Additions f8b7ed/Deck Pthumerian Heir + Agents of Mergo 187a78.yaml new file mode 100644 index 000000000..0d8fd0a7c --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2A Additions f8b7ed/Deck Pthumerian Heir + Agents of Mergo 187a78.yaml @@ -0,0 +1,863 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 336100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3361': + BackIsHidden: true + BackURL: https://i.imgur.com/RQOLfIv.png + FaceURL: https://i.imgur.com/yFOXOP7.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: da077a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Suffocating Surrogate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.954 + posY: 1.495 + posZ: -28.891 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 336100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3361': + BackIsHidden: true + BackURL: https://i.imgur.com/RQOLfIv.png + FaceURL: https://i.imgur.com/yFOXOP7.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '280178' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Suffocating Surrogate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.124 + posY: 1.537 + posZ: -29.355 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 336100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3361': + BackIsHidden: true + BackURL: https://i.imgur.com/RQOLfIv.png + FaceURL: https://i.imgur.com/yFOXOP7.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1cec05 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Suffocating Surrogate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.124 + posY: 1.57 + posZ: -29.355 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 336700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3367': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i8i4fKT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ba959a72-7ab7-452f-8468-28d0df036568","type":"Treachery","class":"Mythos","traits":"Omen. + "}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vision of the Pthumerian Queen + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -12.713 + posY: 1.495 + posZ: -29.153 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 336400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3364': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i8i4fKT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ba959a72-7ab7-452f-8468-28d0df036568","type":"Treachery","class":"Mythos","traits":"Omen. + "}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vision of the Pthumerian Queen + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -12.392 + posY: 1.537 + posZ: -29.245 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 336500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3365': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i8i4fKT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ba959a72-7ab7-452f-8468-28d0df036568","type":"Treachery","class":"Mythos","traits":"Omen. + "}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vision of the Pthumerian Queen + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -12.96 + posY: 1.571 + posZ: -29.337 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 336200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3362': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/kdtbWc3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"07cdcb0e-1273-45d2-91f0-c8a2110fcfbf","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fury of the Bereaved + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -13.094 + posY: 1.58 + posZ: -29.143 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 336600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3366': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/kdtbWc3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"07cdcb0e-1273-45d2-91f0-c8a2110fcfbf","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fury of the Bereaved + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -12.915 + posY: 1.59 + posZ: -28.725 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 336300 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Y9MNHaZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a2be9add-6868-496d-8f70-72b927b76a5e","type":"Treachery","class":"Mythos","traits":"Terror. + Omen"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Invisible Opposition + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 336800 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Y9MNHaZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a2be9add-6868-496d-8f70-72b927b76a5e","type":"Treachery","class":"Mythos","traits":"Terror. + Omen"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Invisible Opposition + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1026': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/VIc9wfU.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ca1bacba-147b-4469-ab7c-6d40168f7c77"}' + GUID: ec6b60 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: On Wings of Black + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.631 + posY: 1.518 + posZ: -28.379 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1026': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/VIc9wfU.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ca1bacba-147b-4469-ab7c-6d40168f7c77"}' + GUID: e00020 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: On Wings of Black + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.776 + posY: 1.564 + posZ: -28.325 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1026': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/VIc9wfU.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ca1bacba-147b-4469-ab7c-6d40168f7c77"}' + GUID: bcd7a7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: On Wings of Black + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.507 + posY: 1.58 + posZ: -28.486 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1024': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/fCaup0N.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Sentinels of the Labyrinth + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c1d82921-dcd6-4c25-80ac-0b229d82975e"}' + GUID: e0001e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Merciless Watchers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.353 + posY: 1.584 + posZ: -26.603 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1024': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/fCaup0N.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1026': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/VIc9wfU.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3361': + BackIsHidden: true + BackURL: https://i.imgur.com/RQOLfIv.png + FaceURL: https://i.imgur.com/yFOXOP7.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3362': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/kdtbWc3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3363': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Y9MNHaZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3364': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i8i4fKT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3365': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i8i4fKT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3366': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/kdtbWc3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3367': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i8i4fKT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3368': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Y9MNHaZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 336100 +- 336100 +- 336100 +- 336700 +- 336400 +- 336500 +- 336200 +- 336600 +- 336300 +- 336800 +- 102600 +- 102600 +- 102600 +- 102400 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 187a78 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Pthumerian Heir + Agents of Mergo +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 3.8 + posY: 3.65 + posZ: -29.51 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2C Additions f89a78.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2C Additions f89a78.yaml new file mode 100644 index 000000000..3b5289e06 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2C Additions f89a78.yaml @@ -0,0 +1,1059 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 268800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2688': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QDlz96j.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"99c353fb-092c-4678-9843-ad6c24f4c30e"}' + GUID: 01d032 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Baneful Maiden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.359 + posY: 1.5 + posZ: -36.818 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 268200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2682': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QDlz96j.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"99c353fb-092c-4678-9843-ad6c24f4c30e"}' + GUID: '603932' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Baneful Maiden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.422 + posY: 1.542 + posZ: -36.834 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 268600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2686': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QDlz96j.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"99c353fb-092c-4678-9843-ad6c24f4c30e"}' + GUID: edd824 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Baneful Maiden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.752 + posY: 1.577 + posZ: -37.132 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 268100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2681': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/OO9c6j2.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b92addcb-60a1-4d0c-8884-0b6df442ecc4"}' + GUID: 3f31d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fishing Hamlet Goliath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.545 + posY: 1.586 + posZ: -37.085 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 270100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2701': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/HVy5tRh.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"734a8658-09d1-4e51-b4b5-badca908727b"}' + GUID: 83b4c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Remorse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.201 + posY: 1.643 + posZ: -36.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 270200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2702': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/HVy5tRh.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"734a8658-09d1-4e51-b4b5-badca908727b"}' + GUID: b945f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Remorse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.128 + posY: 1.653 + posZ: -36.794 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 269900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2699': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/fDr9W24/0a0107265696.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8c44940d-d6d0-4230-bf16-7f9b29aaf096"}' + GUID: d2e4ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fragmented Self + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.348 + posY: 1.663 + posZ: -37.152 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 270400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2704': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/fDr9W24/0a0107265696.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8c44940d-d6d0-4230-bf16-7f9b29aaf096"}' + GUID: b06229 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fragmented Self + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.978 + posY: 1.672 + posZ: -37.222 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 270000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2700': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/fDr9W24/0a0107265696.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8c44940d-d6d0-4230-bf16-7f9b29aaf096"}' + GUID: fd6a70 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fragmented Self + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.369 + posY: 1.682 + posZ: -37.169 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 270300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2703': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/jhWrXtF/d5dca75bbef9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"815bf166-e5b3-4f6f-8c63-d99d2b9e4d94"}' + GUID: 5920df + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Curious Mania + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.495 + posY: 1.692 + posZ: -36.897 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 269800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2698': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/Xyg7wCx/7fbddb4bfe68.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"308018cb-7c1f-4b1e-8cf3-3d4727fb760e"}' + GUID: d45aaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Curious Mania + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.418 + posY: 1.702 + posZ: -36.313 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 350800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3508': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/5CVNYTm.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"3a2126d6-aef5-4da6-ba65-654c4ce74195","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: c09fae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Grief + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.908 + posY: 1.661 + posZ: 43.355 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 350700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3507': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/5CVNYTm.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"3a2126d6-aef5-4da6-ba65-654c4ce74195","type":"Treachery","class":"Mythos","traits":"Curse"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Grief + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.358 + posY: 1.69 + posZ: 42.72 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 350500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3505': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/e3KrD9x.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b256124a-0ec8-4207-9a1a-c32bf7272de8","type":"Treachery","class":"Mythos","traits":"Pact"}' + GUID: e00009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mother's Mercy + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -26.018 + posY: 1.502 + posZ: 41.623 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 351200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3512': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/e3KrD9x.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b256124a-0ec8-4207-9a1a-c32bf7272de8","type":"Treachery","class":"Mythos","traits":"Pact"}' + GUID: a28b19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mother's Mercy + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -26.011 + posY: 1.556 + posZ: 41.849 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 350900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3509': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/e3KrD9x.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b256124a-0ec8-4207-9a1a-c32bf7272de8","type":"Treachery","class":"Mythos","traits":"Pact"}' + GUID: d73bc8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mother's Mercy + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -25.704 + posY: 1.977 + posZ: 41.706 + rotX: 0.0 + rotY: 15.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '2681': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/OO9c6j2.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2682': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QDlz96j.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2686': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QDlz96j.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2688': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/QDlz96j.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2698': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/Xyg7wCx/7fbddb4bfe68.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2699': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/fDr9W24/0a0107265696.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2700': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/fDr9W24/0a0107265696.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2701': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/HVy5tRh.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2702': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/HVy5tRh.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2703': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/jhWrXtF/d5dca75bbef9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2704': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/fDr9W24/0a0107265696.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3505': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/e3KrD9x.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3507': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/5CVNYTm.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3508': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/5CVNYTm.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3509': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/e3KrD9x.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3512': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/e3KrD9x.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 268800 + - 268200 + - 268600 + - 268100 + - 270100 + - 270200 + - 269900 + - 270400 + - 270000 + - 270300 + - 269800 + - 350800 + - 350700 + - 350500 + - 351200 + - 350900 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2c78c2 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: Agents of Kos + Great Deep Sea + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.148 + posY: 3.658 + posZ: -26.655 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f89a78 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Act 2C Additions +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.68 + posY: 3.47 + posZ: 14.24 + rotX: 0.0 + rotY: 45.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2E Additions d5773b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2E Additions d5773b.yaml new file mode 100644 index 000000000..fe6172cd8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2E Additions d5773b.yaml @@ -0,0 +1,47 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- !include 'Bag Act 2E Additions d5773b/Deck Living String + Agents of Paleblood 54ebd0.yaml' +- !include 'Bag Act 2E Additions d5773b/Card The Brain of Mensis 5e2bdc.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d5773b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Act 2E Additions +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 3.47 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2E Additions d5773b/Card The Brain of Mensis 5e2bdc.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2E Additions d5773b/Card The Brain of Mensis 5e2bdc.yaml new file mode 100644 index 000000000..a970f1a68 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2E Additions d5773b/Card The Brain of Mensis 5e2bdc.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 272600 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '2726': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/fLnGOcR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"aa04e28e-a01a-40c0-90a7-95fb39192423"}' +GUID: 5e2bdc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Brain of Mensis +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.77 + posY: 3.57 + posZ: -32.48 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2E Additions d5773b/Deck Living String + Agents of Paleblood 54ebd0.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2E Additions d5773b/Deck Living String + Agents of Paleblood 54ebd0.yaml new file mode 100644 index 000000000..20eac537f --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 2E Additions d5773b/Deck Living String + Agents of Paleblood 54ebd0.yaml @@ -0,0 +1,716 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 273000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2730': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/cmx5w45.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ee049643-54c9-4134-9476-38bffeab8ca8"}' + GUID: e5ed82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Brain Rot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.707 + posY: 1.495 + posZ: -27.213 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 273000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2730': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/cmx5w45.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ee049643-54c9-4134-9476-38bffeab8ca8"}' + GUID: f7e276 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Brain Rot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.609 + posY: 1.537 + posZ: -27.289 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 273000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2730': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/cmx5w45.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ee049643-54c9-4134-9476-38bffeab8ca8"}' + GUID: 60c6b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Brain Rot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.593 + posY: 1.571 + posZ: -27.608 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 273000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2730': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/cmx5w45.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ee049643-54c9-4134-9476-38bffeab8ca8"}' + GUID: ed1bf2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Brain Rot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.602 + posY: 1.581 + posZ: -26.711 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 273100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2731': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZrCAoqY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: The Church's Last Resort + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"48a509e7-269b-46dc-bb27-269e2342620d"}' + GUID: b0b1a0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Choir Assassin Brador + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.322 + posY: 1.59 + posZ: -27.78 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 274300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2743': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/1H47z5I.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7ff4c827-bf33-4caf-975a-8e73158f1d50"}' + GUID: a8087e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunter's Lullaby + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.466 + posY: 1.489 + posZ: -26.93 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 273800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2738': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/1H47z5I.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7ff4c827-bf33-4caf-975a-8e73158f1d50"}' + GUID: a61884 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunter's Lullaby + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.466 + posY: 1.519 + posZ: -26.93 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 273900 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/PeW17lH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6f053c72-7468-40f1-9853-f7730db00a83"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Frenzy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 274200 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/PeW17lH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6f053c72-7468-40f1-9853-f7730db00a83"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Frenzy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 275000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2750': + BackIsHidden: true + BackURL: https://i.imgur.com/RQOLfIv.png + FaceURL: https://i.imgur.com/Ay3QeSG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 561f74 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.99 + posY: 1.645 + posZ: -27.32 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 275000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2750': + BackIsHidden: true + BackURL: https://i.imgur.com/RQOLfIv.png + FaceURL: https://i.imgur.com/Ay3QeSG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 040b17 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.33 + posY: 1.648 + posZ: -27.223 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 275000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2750': + BackIsHidden: true + BackURL: https://i.imgur.com/RQOLfIv.png + FaceURL: https://i.imgur.com/Ay3QeSG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a5e999 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.759 + posY: 1.658 + posZ: -27.103 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '2730': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/cmx5w45.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2731': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZrCAoqY.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2738': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/1H47z5I.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2739': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/PeW17lH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/PeW17lH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2743': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/1H47z5I.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2750': + BackIsHidden: true + BackURL: https://i.imgur.com/RQOLfIv.png + FaceURL: https://i.imgur.com/Ay3QeSG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 273000 +- 273000 +- 273000 +- 273000 +- 273100 +- 274300 +- 273800 +- 273900 +- 274200 +- 275000 +- 275000 +- 275000 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 54ebd0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Living String + Agents of Paleblood +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.03 + posY: 2.4 + posZ: -61.62 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 3C Additions e0000b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 3C Additions e0000b.yaml new file mode 100644 index 000000000..df2d41e98 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 3C Additions e0000b.yaml @@ -0,0 +1,47 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- !include 'Bag Act 3C Additions e0000b/CardCustom Lady Maria 05298b.yaml' +- !include 'Bag Act 3C Additions e0000b/Deck Astral Clocktower Encounter Set 3e0e02.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e0000b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Act 3C Additions +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69 + posY: 3.47 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 3C Additions e0000b/CardCustom Lady Maria 05298b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 3C Additions e0000b/CardCustom Lady Maria 05298b.yaml new file mode 100644 index 000000000..f6fecd4cf --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 3C Additions e0000b/CardCustom Lady Maria 05298b.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 272600 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '2726': + BackIsHidden: true + BackURL: https://i.imgur.com/RQOLfIv.png + FaceURL: https://i.imgur.com/K6RV6MV.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Penitent Captive of the Astral Clocktower +DragSelectable: true +GMNotes: '' +GUID: 05298b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: '*Lady Maria' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.49 + posY: 2.33 + posZ: -79.91 + rotX: 0.0 + rotY: 285.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 3C Additions e0000b/Deck Astral Clocktower Encounter Set 3e0e02.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 3C Additions e0000b/Deck Astral Clocktower Encounter Set 3e0e02.yaml new file mode 100644 index 000000000..782d3a108 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Act 3C Additions e0000b/Deck Astral Clocktower Encounter Set 3e0e02.yaml @@ -0,0 +1,384 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2714': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/RzPF8Z0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c5e7da8a-18d2-4a82-bbaa-4c8a85cfeea9"}' + GUID: 5a8141 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scarlet Waltz + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.129 + posY: 1.536 + posZ: -29.346 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2714': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/RzPF8Z0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c5e7da8a-18d2-4a82-bbaa-4c8a85cfeea9"}' + GUID: '210331' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scarlet Waltz + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.345 + posY: 1.587 + posZ: -29.771 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2716': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/SRd4jfD.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e5870aeb-af3c-4dd7-9b9c-9023abe1fdf6"}' + GUID: 6a7cbd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Visceral Embrace + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.616 + posY: 1.505 + posZ: -24.67 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 271600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2716': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/SRd4jfD.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e5870aeb-af3c-4dd7-9b9c-9023abe1fdf6"}' + GUID: 70dd86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Visceral Embrace + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.42 + posY: 1.547 + posZ: -25.007 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 334200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3342': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/LlW73ej.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cf60ae16-6c3d-4713-a50a-9572802626eb","type":"Treachery","class":"Mythos","traits":"Attack"}' + GUID: 6d3565 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cainhurst's Inheritance + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -3.095 + posY: 2.319 + posZ: -46.574 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 334200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3342': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/LlW73ej.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"cf60ae16-6c3d-4713-a50a-9572802626eb","type":"Treachery","class":"Mythos","traits":"Attack"}' + GUID: 333dbf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cainhurst's Inheritance + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -5.444 + posY: 2.319 + posZ: -47.22 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '2714': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/RzPF8Z0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2716': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/SRd4jfD.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3342': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/LlW73ej.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 271400 +- 271400 +- 271600 +- 271600 +- 334200 +- 334200 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3e0e02 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Astral Clocktower Encounter Set +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.62 + posY: 3.65 + posZ: -17.0 + rotX: 1.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Spoils 9daf8a.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Spoils 9daf8a.yaml new file mode 100644 index 000000000..13b0ad575 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Bag Spoils 9daf8a.yaml @@ -0,0 +1,812 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315900 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/iAgnB10.jpg + FaceURL: https://i.imgur.com/HockzvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Gateway to a Tragic Land + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d1e30cf2-c292-429d-99ab-edce2ecd2ca9","type":"Asset","permanent":true,"class":"Neutral","traits":"Item. + Charm. Occult"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ailing Loran Chalice + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315600 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/fM8NK9t.jpg + FaceURL: https://i.imgur.com/GBsIKbP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: The Ghastly Reverie + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b4c646de-d449-4798-93cc-a30e89116c0d","type":"Asset","class":"Neutral","traits":"Condition. + Cursed. ","agilityIcons":2,"fightIcons":2,"cost":0}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beast's Embrace + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100200 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/PvxI9C4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: The Pride of Hemwick + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"09eacbbb-bfbc-4bd1-b12a-9d616c041b97","type":"Asset","class":"Neutral","traits":"Item. + Supply","agilityIcons":1,"cost":3}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bone Marrow Ash + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100300 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/5T7pHbT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Symbol of Stern Golden Spirit + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"21c25218-2071-4d07-bc3f-82688bcdbe49","type":"Asset","class":"Neutral","traits":"Item. + Armor. Occult","willpowerIcons":1,"wildIcons":1,"cost":2}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gold Ardeo + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100400 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/aylUt1v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: The Measured Tread of Gods + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8eecf68f-42d7-4c4d-a40e-ec3f0a216cf2","type":"Asset","class":"Neutral","traits":"Ritual","intellectIcons":1,"willpowerIcons":1,"wildIcons":1,"cost":5}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Make Contact + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315800 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/0hB7mzi.jpg + FaceURL: https://i.imgur.com/Lpal9JU.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Sidereal Beacon + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6752da73-cb22-475c-8691-de1275b28e28","type":"Asset","class":"Neutral","traits":"Item. + Armor. Occult","intellectIcons":1,"wildIcons":1,"cost":4}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mensis Cage + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100600 + CustomDeck: + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/eAQYYCV.jpg + FaceURL: https://i.imgur.com/MOZTlcr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Paleblood Stillbirth + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d7cfea5e-a8b3-4424-9d3f-36141ca93f7e","type":"Asset","class":"Neutral","traits":"Item. + Occult. Cursed","wildIcons":3,"cost":1}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pale Cord of the Eye + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315400 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: https://i.imgur.com/R6nTlVN.jpg + FaceURL: https://i.imgur.com/iY9tmyP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Sacred Aria + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5dbb3575-59a5-4312-a134-6c92b59f7648","type":"Asset","class":"Neutral","traits":"Item. + Weapon. Science","fightIcons":1,"willpowerIcons":1,"wildIcons":1,"cost":3}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rosmarinus + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100800 + CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/ZyDWXxL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Useless Memento + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"4874a8eb-9f6a-421f-991f-0e6957187188","type":"Asset","class":"Neutral","traits":"Item. + Charm","fightIcons":1,"cost":3}' + GUID: e00009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Saw Hunter Badge + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315700 + CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/NmPvmKH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: For the Gentleman Hunter + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"3efb091b-1321-404f-8bf6-43eff4aceebc","type":"Asset","class":"Neutral","traits":"Item. + Weapon. Melee. ","agilityIcons":1,"cost":3}' + GUID: e0000a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Threaded Cane + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 315500 + CustomDeck: + '1010': + BackIsHidden: true + BackURL: https://i.imgur.com/AUtNKgd.jpg + FaceURL: https://i.imgur.com/EsVypo5.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '"If your weapon ain''t got kick..."' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c38372ec-9d1e-4911-bfda-89695d89cebc","type":"Asset","class":"Neutral","traits":"Item. + Weapon. Melee. ","fightIcons":3,"cost":4}' + GUID: e0000b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Whirligig Saw + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 316000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3160': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/iajVyjP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Cainhurst's Grace + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6e4d7936-b2f1-4cc3-a1b5-6453243bc200","type":"Asset","class":"Neutral","traits":"Item. + Firearm. Weapon","fightIcons":1,"wildIcons":2,"cost":5}' + GUID: e0000d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Evelyn + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Asset + - PlayerCard + Tooltip: true + Transform: + posX: -19.237 + posY: 1.902 + posZ: 41.881 + rotX: 0.0 + rotY: 270.0 + rotZ: 348.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/PvxI9C4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/5T7pHbT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/aylUt1v.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1006': + BackIsHidden: true + BackURL: https://i.imgur.com/eAQYYCV.jpg + FaceURL: https://i.imgur.com/MOZTlcr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/ZyDWXxL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3154': + BackIsHidden: true + BackURL: https://i.imgur.com/R6nTlVN.jpg + FaceURL: https://i.imgur.com/iY9tmyP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3155': + BackIsHidden: true + BackURL: https://i.imgur.com/AUtNKgd.jpg + FaceURL: https://i.imgur.com/EsVypo5.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3156': + BackIsHidden: true + BackURL: https://i.imgur.com/fM8NK9t.jpg + FaceURL: https://i.imgur.com/GBsIKbP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3157': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/NmPvmKH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3158': + BackIsHidden: true + BackURL: https://i.imgur.com/0hB7mzi.jpg + FaceURL: https://i.imgur.com/Lpal9JU.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3159': + BackIsHidden: true + BackURL: https://i.imgur.com/iAgnB10.jpg + FaceURL: https://i.imgur.com/HockzvT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3160': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/iajVyjP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 315900 + - 315600 + - 100200 + - 100300 + - 100400 + - 315800 + - 100600 + - 315400 + - 100800 + - 315700 + - 315500 + - 316000 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e0000c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: Spoils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.201 + posY: 3.531 + posZ: 44.276 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9daf8a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Spoils +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.19 + posY: 2.12 + posZ: -85.57 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card Astral Clocktower e0000b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card Astral Clocktower e0000b.yaml new file mode 100644 index 000000000..ba529bcae --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card Astral Clocktower e0000b.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 336000 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3360': + BackIsHidden: true + BackURL: https://i.imgur.com/d6FeeNJ.jpg + FaceURL: https://i.imgur.com/PEbAXje.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"e72a0225-652e-4aea-bd3b-d04e1f32412b","type":"Location","class":"Mythos","traits":"Nightmare. + Central. Clocktower","locationFront":{"icons":"CrossAlt","uses":[{"token":"clue","type":"Clue","count":0}]},"locationBack":{"icons":"CrossAlt","uses":[{"token":"clue","type":"Clue","count":0}]}}' +GUID: e0000b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Astral Clocktower +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -13.05 + posY: 2.5 + posZ: -62.22 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card Caryll Rune Moon da425f.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card Caryll Rune Moon da425f.yaml new file mode 100644 index 000000000..313521441 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card Caryll Rune Moon da425f.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 275300 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '2753': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/x5yRC2j.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"fe95c51d-80bf-4852-937c-1cbe406a20dc"}' +GUID: da425f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: 'Caryll Rune: Moon' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 3.67 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card Formless Cord of the Eye 9bbd22.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card Formless Cord of the Eye 9bbd22.yaml new file mode 100644 index 000000000..a939f215c --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card Formless Cord of the Eye 9bbd22.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 275000 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '2750': + BackIsHidden: true + BackURL: https://i.imgur.com/xTvnfrY.jpg + FaceURL: https://i.imgur.com/CI4Adrs.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"e0a3851d-f202-42d9-94b7-5d8deb979e2d"}' +GUID: 9bbd22 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Formless Cord of the Eye +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 3.67 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card Rakuyo 0c8535.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card Rakuyo 0c8535.yaml new file mode 100644 index 000000000..1225bed78 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card Rakuyo 0c8535.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 275200 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/U0xgN6N.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Twinblade of Cainhurst +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"f7cccd40-8ddc-4cba-8b5f-56f6f2b0da6e"}' +GUID: 0c8535 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Rakuyo +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 3.67 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card The Queen's Stone 3f8801.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card The Queen's Stone 3f8801.yaml new file mode 100644 index 000000000..9ebd3ec0f --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card The Queen's Stone 3f8801.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100900 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/2636JIH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"4fc37c5a-4293-449d-9378-a63b02be5c0a"}' +GUID: 3f8801 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Queen's Stone +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 3.67 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card The Spire of Mensis e0000d.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card The Spire of Mensis e0000d.yaml new file mode 100644 index 000000000..efb50b168 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card The Spire of Mensis e0000d.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 335900 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3359': + BackIsHidden: true + BackURL: https://i.imgur.com/wTN0GtZ.jpg + FaceURL: https://i.imgur.com/l9Smzhj.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"3fcb7ec4-3015-4a32-b2f3-75ff08ef0b8c","type":"Location","class":"Mythos","traits":"Nightmare. + Spire. ","locationFront":{"icons":"CrossAlt","uses":[{"token":"clue","type":"Clue","count":0}]},"locationBack":{"icons":"CrossAlt","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]}}' +GUID: e0000d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Spire of Mensis +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -13.2 + posY: 2.5 + posZ: -59.83 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card The Wet Nurse's Lunarium e0000c.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card The Wet Nurse's Lunarium e0000c.yaml new file mode 100644 index 000000000..e4149b176 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Model_Bag Set-aside 5e6a84/Card The Wet Nurse's Lunarium e0000c.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101000 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1010': + BackIsHidden: true + BackURL: https://i.imgur.com/oljDir9.jpg + FaceURL: https://i.imgur.com/oeAQqQH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"e5388f38-fde3-4c01-b49c-beb2ea808b48","type":"Location","class":"Mythos","traits":"Nightmare. + Mergo''s Loft. Central","locationFront":{"icons":"CrossAlt","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":"CrossAlt"}}' +GUID: e0000c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Wet Nurse's Lunarium +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -13.22 + posY: 2.5 + posZ: -53.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 00bb28.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 00bb28.yaml new file mode 100644 index 000000000..3bc55d5ec --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 00bb28.yaml @@ -0,0 +1,153 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.60453 + g: 0.60453 + r: 0.60453 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 00bb28 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + '3': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + Value: 0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -36.77 + posY: 1.52 + posZ: 3.86 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 0bbee2.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 0bbee2.yaml new file mode 100644 index 000000000..7885ee813 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 0bbee2.yaml @@ -0,0 +1,153 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.60453 + g: 0.60453 + r: 0.60453 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 0bbee2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + '3': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + Value: 0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -33.27 + posY: 1.52 + posZ: 7.72 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 172be8.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 172be8.yaml new file mode 100644 index 000000000..5768c546f --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 172be8.yaml @@ -0,0 +1,153 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.60453 + g: 0.60453 + r: 0.60453 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 172be8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + '3': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + Value: 0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -26.8 + posY: 1.52 + posZ: -7.72 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 196c57.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 196c57.yaml new file mode 100644 index 000000000..38f0e5258 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 196c57.yaml @@ -0,0 +1,153 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.60453 + g: 0.60453 + r: 0.60453 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 196c57 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + '3': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + Value: 0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -30.22 + posY: 1.52 + posZ: 3.86 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 514e1e.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 514e1e.yaml new file mode 100644 index 000000000..38b0cb104 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 514e1e.yaml @@ -0,0 +1,153 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.60453 + g: 0.60453 + r: 0.60453 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 514e1e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + '3': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + Value: 0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -30.22 + posY: 1.52 + posZ: -3.83 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 65182d.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 65182d.yaml new file mode 100644 index 000000000..19532a2d3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 65182d.yaml @@ -0,0 +1,153 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.60453 + g: 0.60453 + r: 0.60453 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 65182d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + '3': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + Value: 0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -23.68 + posY: 1.52 + posZ: 3.86 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 662760.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 662760.yaml new file mode 100644 index 000000000..ee6b583ec --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 662760.yaml @@ -0,0 +1,153 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.60453 + g: 0.60453 + r: 0.60453 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '662760' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + '3': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + Value: 0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -36.77 + posY: 1.52 + posZ: -3.83 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..40ea837e0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile 7234af.yaml @@ -0,0 +1,153 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.60453 + g: 0.60453 + r: 0.60453 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + '3': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + Value: 0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -26.94 + posY: 1.52 + posZ: 7.4 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile af5f9b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile af5f9b.yaml new file mode 100644 index 000000000..19d084874 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile af5f9b.yaml @@ -0,0 +1,153 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.60453 + g: 0.60453 + r: 0.60453 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: af5f9b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + '3': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + Value: 0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -33.4 + posY: 1.52 + posZ: 0.16 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile c8cd13.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile c8cd13.yaml new file mode 100644 index 000000000..e82e80bd7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile c8cd13.yaml @@ -0,0 +1,153 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.60453 + g: 0.60453 + r: 0.60453 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c8cd13 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + '3': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + Value: 0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -26.75 + posY: 1.52 + posZ: 0.22 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile ea5a8d.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile ea5a8d.yaml new file mode 100644 index 000000000..e5dbe71b7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile ea5a8d.yaml @@ -0,0 +1,153 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.60453 + g: 0.60453 + r: 0.60453 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ea5a8d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + '3': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + Value: 0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -33.59 + posY: 1.52 + posZ: -7.75 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile fd4ea3.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile fd4ea3.yaml new file mode 100644 index 000000000..464080df8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Custom_Tile fd4ea3.yaml @@ -0,0 +1,153 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.60453 + g: 0.60453 + r: 0.60453 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: fd4ea3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + '3': + AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + Value: 0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -23.68 + posY: 1.52 + posZ: -3.83 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Deck 465257.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Deck 465257.yaml new file mode 100644 index 000000000..0ff7bb864 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Deck 465257.yaml @@ -0,0 +1,224 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 276800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2768': + BackIsHidden: true + BackURL: https://i.imgur.com/umyIu27.jpg + FaceURL: https://i.imgur.com/CVQUUyO.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8af7f026-7292-4c16-a70b-aa0708758c4a"}' + GUID: e0001d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cradle and All + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.534 + posY: 1.505 + posZ: -25.916 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1028': + BackIsHidden: true + BackURL: https://i.imgur.com/Q6dsPJL.jpg + FaceURL: https://i.imgur.com/pWKxLS0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"602f97b7-2797-493c-938f-18be81f1b78d"}' + GUID: e00022 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Prince's Keeper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.434 + posY: 1.547 + posZ: -26.392 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 285400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2854': + BackIsHidden: true + BackURL: https://i.imgur.com/hZa9H03.jpg + FaceURL: https://i.imgur.com/tLkGLiW.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"15a788cc-8c77-4375-a828-aaa00f6aef17"}' + GUID: c87b3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Origin of the Nightmare I + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.689 + posY: 1.662 + posZ: -5.049 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1028': + BackIsHidden: true + BackURL: https://i.imgur.com/Q6dsPJL.jpg + FaceURL: https://i.imgur.com/pWKxLS0.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '2768': + BackIsHidden: true + BackURL: https://i.imgur.com/umyIu27.jpg + FaceURL: https://i.imgur.com/CVQUUyO.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '2854': + BackIsHidden: true + BackURL: https://i.imgur.com/hZa9H03.jpg + FaceURL: https://i.imgur.com/tLkGLiW.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +DeckIDs: +- 276800 +- 102800 +- 285400 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '465257' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.69 + posY: 1.62 + posZ: -5.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Deck 9caeb9.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Deck 9caeb9.yaml new file mode 100644 index 000000000..f9a21edea --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Deck 9caeb9.yaml @@ -0,0 +1,1582 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 275800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2758': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6syfbk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"16b12e70-2f86-4621-b321-459799974390"}' + GUID: 538f4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bloodlicker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.032 + posY: 1.571 + posZ: -26.122 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 275800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2758': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6syfbk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"16b12e70-2f86-4621-b321-459799974390"}' + GUID: '238315' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bloodlicker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.013 + posY: 1.58 + posZ: -26.258 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 275700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2757': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Orimukk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0709cfde-8bcc-4b4b-8ffa-1851973f95af"}' + GUID: 8d66f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lost Child of Antiquity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.2 + posY: 1.495 + posZ: -21.628 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 334000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3340': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/SHrQCJn.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5f4fc7bd-012b-423f-aaa3-fbfd0fb7a271","type":"Enemy","class":"Mythos","traits":"Nightmare. + Beast"}' + GUID: 790af7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Loran Silverbeast + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 4.13 + posY: 2.527 + posZ: -71.843 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 334000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3340': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/SHrQCJn.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5f4fc7bd-012b-423f-aaa3-fbfd0fb7a271","type":"Enemy","class":"Mythos","traits":"Nightmare. + Beast"}' + GUID: e432ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Loran Silverbeast + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 3.144 + posY: 2.319 + posZ: -77.131 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 275700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2757': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Orimukk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0709cfde-8bcc-4b4b-8ffa-1851973f95af"}' + GUID: ce91ee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lost Child of Antiquity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.355 + posY: 1.537 + posZ: -21.831 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 278700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2787': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bQwc6tB/bfdab966d856.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9754dcfd-6b1f-400e-9239-b18042fe6ffe"}' + GUID: 389cf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Blood Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.307 + posY: 1.479 + posZ: -35.063 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 330800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2785': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bQwc6tB/bfdab966d856.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9754dcfd-6b1f-400e-9239-b18042fe6ffe"}' + GUID: 765b52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Blood Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.811 + posY: 1.509 + posZ: -35.651 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 331500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2784': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bQwc6tB/bfdab966d856.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9754dcfd-6b1f-400e-9239-b18042fe6ffe"}' + GUID: 696f41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashen Blood Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.733 + posY: 1.551 + posZ: -35.679 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 278600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2786': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/IR1b2AL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"77e60827-d242-4313-9d8c-60e3a55035c5"}' + GUID: 8a7002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.213 + posY: 1.569 + posZ: -35.753 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 278800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2788': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/IR1b2AL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"77e60827-d242-4313-9d8c-60e3a55035c5"}' + GUID: 7ee6c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.976 + posY: 1.579 + posZ: -35.706 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2799': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GojaL1Q.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f76fb76b-d9f7-4dc3-a89b-e79db45ec6b5"}' + GUID: 2add01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Paleblood Sky + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.518 + posY: 1.505 + posZ: -30.392 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 331600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2794': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GojaL1Q.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f76fb76b-d9f7-4dc3-a89b-e79db45ec6b5"}' + GUID: db8f57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Paleblood Sky + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.564 + posY: 1.547 + posZ: -30.349 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2797': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GojaL1Q.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f76fb76b-d9f7-4dc3-a89b-e79db45ec6b5"}' + GUID: 5c75e9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Paleblood Sky + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.785 + posY: 1.582 + posZ: -30.581 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"32dc122f-fcf7-454a-81fe-f5e2c78f6722","type":"Treachery","class":"Mythos","traits":"Scheme"}' + GUID: 292a23 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Polite Exchange + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -13.269 + posY: 2.505 + posZ: -72.899 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"32dc122f-fcf7-454a-81fe-f5e2c78f6722","type":"Treachery","class":"Mythos","traits":"Scheme"}' + GUID: 9286c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Polite Exchange + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -13.342 + posY: 2.505 + posZ: -77.058 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 280000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2800': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mNOAq1P.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e4ab07eb-8d61-4ba6-a982-19dc6a6f37d0"}' + GUID: b85ee0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Madman's Epiphany + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.687 + posY: 1.591 + posZ: -30.642 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 280100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2801': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mNOAq1P.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e4ab07eb-8d61-4ba6-a982-19dc6a6f37d0"}' + GUID: 4cf079 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Madman's Epiphany + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.61 + posY: 1.601 + posZ: -30.561 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2795': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/krh5n8j.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"25de31db-2b41-41cb-ba0a-e5c2de5fc746"}' + GUID: 08d32a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Apocryphal Understanding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.3 + posY: 1.61 + posZ: -30.271 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 279600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2796': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/krh5n8j.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"25de31db-2b41-41cb-ba0a-e5c2de5fc746"}' + GUID: f6e9ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Apocryphal Understanding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.377 + posY: 1.62 + posZ: -30.077 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 281400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2814': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/G7foW25.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"fe786e72-65dc-4dd2-a9cf-ac3bf1bd962f"}' + GUID: cb6cd6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unspeakable Truth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.862 + posY: 1.508 + posZ: -22.341 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 281700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2817': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/G7foW25.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"fe786e72-65dc-4dd2-a9cf-ac3bf1bd962f"}' + GUID: e3e4a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unspeakable Truth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.967 + posY: 1.55 + posZ: -21.864 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 281200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2812': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DFizLyn.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9f106d3e-a66b-476d-bdef-45fa406934ab"}' + GUID: '970101' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Invite Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.741 + posY: 1.584 + posZ: -21.706 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 281600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2816': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DFizLyn.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9f106d3e-a66b-476d-bdef-45fa406934ab"}' + GUID: 92d591 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Invite Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.46 + posY: 1.593 + posZ: -21.995 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 281500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2815': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/m0Hyzsw/cc09ec2072b3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5644f737-93b1-422e-b47a-a8efcb6d3b96"}' + GUID: 28fecd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beckoning Moon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.983 + posY: 1.603 + posZ: -22.259 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 281300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2813': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/m0Hyzsw/cc09ec2072b3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5644f737-93b1-422e-b47a-a8efcb6d3b96"}' + GUID: '624365' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beckoning Moon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.108 + posY: 1.613 + posZ: -22.362 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '2757': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Orimukk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2758': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/K6syfbk.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2786': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/IR1b2AL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2787': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bQwc6tB/bfdab966d856.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2788': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/IR1b2AL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2795': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/krh5n8j.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2796': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/krh5n8j.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2797': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GojaL1Q.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2799': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GojaL1Q.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2800': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mNOAq1P.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2801': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/mNOAq1P.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2812': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DFizLyn.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2813': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/m0Hyzsw/cc09ec2072b3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2814': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/G7foW25.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2815': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/m0Hyzsw/cc09ec2072b3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2816': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DFizLyn.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2817': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/G7foW25.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3308': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bQwc6tB/bfdab966d856.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3315': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/bQwc6tB/bfdab966d856.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GojaL1Q.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3340': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/SHrQCJn.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 275800 +- 275800 +- 275700 +- 334000 +- 334000 +- 275700 +- 278700 +- 330800 +- 331500 +- 278600 +- 278800 +- 279900 +- 331600 +- 279700 +- 339700 +- 339700 +- 280000 +- 280100 +- 279500 +- 279600 +- 281400 +- 281700 +- 281200 +- 281600 +- 281500 +- 281300 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9caeb9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.93 + posY: 1.73 + posZ: 5.76 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Deck ae7012.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Deck ae7012.yaml new file mode 100644 index 000000000..ccc285643 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Deck ae7012.yaml @@ -0,0 +1,226 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 275600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2756': + BackIsHidden: true + BackURL: https://i.imgur.com/K7JJu6x.jpg + FaceURL: https://i.imgur.com/EKLcTlz.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7c7bbbc8-e952-4da0-960e-a867994c68b2"}' + GUID: 0205fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood Rapture + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.725 + posY: 1.599 + posZ: 0.373 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 275100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '2751': + BackIsHidden: true + BackURL: https://i.imgur.com/jLDizzi.jpg + FaceURL: https://i.imgur.com/RpATQnR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f8b6a4f3-932a-4f61-83a8-55d5b9f450b6"}' + GUID: a5a51a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Foul Dreams and Beckoning Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.725 + posY: 1.629 + posZ: 0.373 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 335700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3357': + BackIsHidden: true + BackURL: https://i.imgur.com/P01G1Pi.jpg + FaceURL: https://i.imgur.com/cf8fF49.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"700e5403-a053-4441-bab4-edd3534f8cfd","type":"Agenda","class":"Mythos","doomThreshold":8}' + GUID: fbfb1f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Hunter's Nightmare + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -2.725 + posY: 1.669 + posZ: 0.373 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '2751': + BackIsHidden: true + BackURL: https://i.imgur.com/jLDizzi.jpg + FaceURL: https://i.imgur.com/RpATQnR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '2756': + BackIsHidden: true + BackURL: https://i.imgur.com/K7JJu6x.jpg + FaceURL: https://i.imgur.com/EKLcTlz.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3357': + BackIsHidden: true + BackURL: https://i.imgur.com/P01G1Pi.jpg + FaceURL: https://i.imgur.com/cf8fF49.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +DeckIDs: +- 275600 +- 275100 +- 335700 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ae7012 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.73 + posY: 1.62 + posZ: 0.37 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Deck Hunters of Yharnam b3c935.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Deck Hunters of Yharnam b3c935.yaml new file mode 100644 index 000000000..c87779c20 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Deck Hunters of Yharnam b3c935.yaml @@ -0,0 +1,802 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3085': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/vE7O0Ra.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e56a85cb-fc19-4ddc-8566-2f1fe96c1c6a","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Blood-Drunk. Hunter of Yharnam. Elite"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Drunk Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.985 + posY: 1.495 + posZ: -28.492 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3088': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i5NXyz4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d0b6eeaa-aa99-4aa2-b111-11f603d6b3f6","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Healing Church Doctor + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.825 + posY: 1.531 + posZ: -28.437 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3090': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2lnY2Es.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"843a9709-60a8-4b70-87f1-941470854caf","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Choir Assassin + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.656 + posY: 1.573 + posZ: -28.031 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3084': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/e15jXj1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5363b6cf-c71a-45da-a6a0-9b67a87bd18f","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e00007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hunter of the Old Workshop + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.025 + posY: 1.582 + posZ: -29.212 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3094': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/BDAuOZG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6930b87f-8066-4e7f-8628-79b9143ec63e","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Servitor. Hunter of Yharnam. Elite"}' + GUID: fbf974 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Healing Church Executioner + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.064 + posY: 1.592 + posZ: -28.811 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3093': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/eYt1jRE.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0e0bf47f-8483-4818-a138-ddb26ba901f0","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Pthumerian. Hunter of Yharnam. Elite"}' + GUID: e00008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Keeper of the Old Lords + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.842 + posY: 1.602 + posZ: -27.87 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/VwF1BDL/16413c15ef3b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e830c002-ba0c-4e93-96fb-fd72128e587a","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e0000a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Powder Keg Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.467 + posY: 1.611 + posZ: -29.442 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3086': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/US5wPNi.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"834bf275-d36b-4446-a690-91e220099e0a","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Beast. Hunter of Yharnam. Elite"}' + GUID: e0000b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scourge-Touched Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.685 + posY: 1.682 + posZ: -28.304 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 308700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3087': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/uSX3Fzg.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f0ceca69-63de-4ae4-9ff6-4da00c815a9a","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e00009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Moon-Scented Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.952 + posY: 1.631 + posZ: -29.179 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GGgyNcv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"eb50c9bd-0fc4-413a-b6ab-770dde2973d8","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e0000c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tomb Prospector + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.09 + posY: 1.638 + posZ: -28.596 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/hLRXku8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"82baaac1-ae4f-4cbc-ac8f-34da27161ff3","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' + GUID: e0000d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vileblood Knight + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.939 + posY: 1.65 + posZ: -28.875 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 309200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3092': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/OSGZbtr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7d8901c5-d475-4e5e-995e-055e9b707186","type":"Enemy","victory":0,"class":"Mythos","traits":"Humanoid. + Servitor. Hunter of Yharnam. Elite"}' + GUID: e0000e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yahar'gul Hunter + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 1.574 + posY: 1.657 + posZ: -29.055 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/VwF1BDL/16413c15ef3b.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GGgyNcv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/hLRXku8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3084': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/e15jXj1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3085': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/vE7O0Ra.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3086': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/US5wPNi.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3087': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/uSX3Fzg.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3088': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/i5NXyz4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3090': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/2lnY2Es.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3092': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/OSGZbtr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3093': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/eYt1jRE.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3094': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/BDAuOZG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 308500 +- 308800 +- 309000 +- 308400 +- 309400 +- 309300 +- 100900 +- 308600 +- 308700 +- 101100 +- 101200 +- 309200 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b3c935 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Hunters of Yharnam +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: -11.88 + posY: 1.6 + posZ: 10.85 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Deck Mensis Rooms (Squares and Moons) e0001a.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Deck Mensis Rooms (Squares and Moons) e0001a.yaml new file mode 100644 index 000000000..d6bfb4d1f --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Deck Mensis Rooms (Squares and Moons) e0001a.yaml @@ -0,0 +1,764 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101400 + CustomDeck: + '1014': + BackIsHidden: true + BackURL: https://i.imgur.com/gDslzqT.jpg + FaceURL: https://i.imgur.com/6qEUMJO.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ab544b9b-4299-4b09-9be8-072a85ac0920","type":"Location","class":"Mythos","traits":"Nightmare. + Hamlet. Coastline","locationFront":{"icons":"DoubleSlash","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":"DoubleSlash"}}' + GUID: e00012 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Forgotten Coast + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102300 + CustomDeck: + '1023': + BackIsHidden: true + BackURL: https://i.imgur.com/NWEUH9H.jpg + FaceURL: https://i.imgur.com/UJX5H1U.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c99fb1b6-b3f9-4e69-81a7-14e46aadeed4","type":"Location","class":"Mythos","traits":"Nightmare. + Graveyard. Yharnam","locationFront":{"icons":"Diamond","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"Diamond"}}' + GUID: e0001f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tomb of Oedon + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 335800 + CustomDeck: + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/wWjdod9.jpg + FaceURL: https://i.imgur.com/hCVRnbc.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f83d365e-5bd7-4885-a2cc-06decd5686b2","type":"Location","class":"Mythos","traits":"Nightmare. + Cathedral. Hospital","locationFront":{"icons":"Hourglass","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":"Hourglass"}}' + GUID: e00010 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Aeonian Sickbeds + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102200 + CustomDeck: + '1022': + BackIsHidden: true + BackURL: https://i.imgur.com/Fl1TMFv.jpg + FaceURL: https://i.imgur.com/sr33uJF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6423f078-1cc0-4bb4-9bd8-174c9c66d589","type":"Location","class":"Mythos","traits":"Nightmare. + Labyrinth. Tomb. Central","locationFront":{"icons":"DiamondAlt","uses":[{"token":"clue","type":"Clue","countPerInvestigator":3}],"victory":1},"locationBack":{"icons":"DiamondAlt"}}' + GUID: e0001e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pthumeru Ihyll Labyrinth + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101500 + CustomDeck: + '1015': + BackIsHidden: true + BackURL: https://i.imgur.com/Zooiyvr.jpg + FaceURL: https://i.imgur.com/xQUKXmW.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a0baf466-7773-4efd-a18d-2726aa19ff08","type":"Location","class":"Mythos","traits":"Nightmare. + Hospital. Garden","locationFront":{"icons":"DoubleSlashAlt","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}],"victory":1},"locationBack":{"icons":"DoubleSlashAlt"}}' + GUID: e00013 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lumenwood Garden + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101900 + CustomDeck: + '1019': + BackIsHidden: true + BackURL: https://i.imgur.com/Kl3squy.jpg + FaceURL: https://i.imgur.com/igwLIX5.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"b0782b07-3f73-4922-b029-d9f5f2bd314d","type":"Location","class":"Mythos","traits":"Nightmare. + Yahar''gul","locationFront":{"icons":"SquareAlt","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":"SquareAlt"}}' + GUID: e00019 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yahar'gul Commons + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102000 + CustomDeck: + '1020': + BackIsHidden: true + BackURL: https://i.imgur.com/nt6fDbU.jpg + FaceURL: https://i.imgur.com/aEspJ9I.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"88c3eaa0-6b77-4f23-8938-21fdb1744eb8","type":"Location","class":"Mythos","traits":"Nightmare. + Labyrinth. Ritual Site","locationFront":{"icons":"HeartAlt","uses":[{"token":"clue","type":"Clue","countPerInvestigator":3}],"victory":1},"locationBack":{"icons":"HeartAlt"}}' + GUID: e0001c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Defiled Pthumerian Shrine + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101700 + CustomDeck: + '1017': + BackIsHidden: true + BackURL: https://i.imgur.com/5N5k0u2.jpg + FaceURL: https://i.imgur.com/HPvaq0p.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"2176052f-7a04-49a5-a4fb-66801906f558","type":"Location","class":"Mythos","traits":"Nightmare. + Yahar''gul. Ritual Site","locationFront":{"icons":"Moon","uses":[{"token":"clue","type":"Clue","countPerInvestigator":3}],"victory":1},"locationBack":{"icons":"Moon"}}' + GUID: e00017 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sacrificial Pits + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101600 + CustomDeck: + '1016': + BackIsHidden: true + BackURL: https://i.imgur.com/VD5orli.jpg + FaceURL: https://i.imgur.com/3TTpHDR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: Yahar'gul Town Square + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e2b79923-2338-4dfb-a7a1-89b65b945ba9","type":"Location","class":"Mythos","traits":"Nightmare. + Yahar''gul. Ritual Site","locationFront":{"icons":"Square","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1},"locationBack":{"icons":"Square"}}' + GUID: e00016 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Advent Plaza + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102100 + CustomDeck: + '1021': + BackIsHidden: true + BackURL: https://i.imgur.com/jUa3JTE.jpg + FaceURL: https://i.imgur.com/drH40Oz.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"848d69be-4370-479d-913d-0785fd1f699b","type":"Location","class":"Mythos","traits":"Nightmare. + Byrgenwerth. Between","locationFront":{"icons":"Heart","uses":[{"token":"clue","type":"Clue","countPerInvestigator":3}]},"locationBack":{"icons":"Heart"}}' + GUID: e0001d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Moonside Lake + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101800 + CustomDeck: + '1018': + BackIsHidden: true + BackURL: https://i.imgur.com/Nm8xSZn.jpg + FaceURL: https://i.imgur.com/Ow616OG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"d1c36ce2-52fe-47f6-9011-ce0cf9cc6890","type":"Location","class":"Mythos","traits":"Nightmare. + Yahar''gul. Chapel. Jail","locationFront":{"icons":"MoonAlt","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}],"victory":1},"locationBack":{"icons":"MoonAlt"}}' + GUID: e00018 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yahar'gul Chapel + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101300 + CustomDeck: + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/XN5LNgX.jpg + FaceURL: https://i.imgur.com/OYL47MB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"05762eef-bdbc-46fa-bfcb-c8c1401cd84a","type":"Location","class":"Mythos","traits":"Nightmare. + Hamlet","locationFront":{"icons":"HourglassAlt","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}],"victory":1},"locationBack":{"icons":"HourglassAlt"}}' + GUID: e00011 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Decaying Fishing Hamlet + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - Location + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/XN5LNgX.jpg + FaceURL: https://i.imgur.com/OYL47MB.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1014': + BackIsHidden: true + BackURL: https://i.imgur.com/gDslzqT.jpg + FaceURL: https://i.imgur.com/6qEUMJO.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1015': + BackIsHidden: true + BackURL: https://i.imgur.com/Zooiyvr.jpg + FaceURL: https://i.imgur.com/xQUKXmW.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1016': + BackIsHidden: true + BackURL: https://i.imgur.com/VD5orli.jpg + FaceURL: https://i.imgur.com/3TTpHDR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1017': + BackIsHidden: true + BackURL: https://i.imgur.com/5N5k0u2.jpg + FaceURL: https://i.imgur.com/HPvaq0p.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1018': + BackIsHidden: true + BackURL: https://i.imgur.com/Nm8xSZn.jpg + FaceURL: https://i.imgur.com/Ow616OG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1019': + BackIsHidden: true + BackURL: https://i.imgur.com/Kl3squy.jpg + FaceURL: https://i.imgur.com/igwLIX5.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1020': + BackIsHidden: true + BackURL: https://i.imgur.com/nt6fDbU.jpg + FaceURL: https://i.imgur.com/aEspJ9I.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1021': + BackIsHidden: true + BackURL: https://i.imgur.com/jUa3JTE.jpg + FaceURL: https://i.imgur.com/drH40Oz.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1022': + BackIsHidden: true + BackURL: https://i.imgur.com/Fl1TMFv.jpg + FaceURL: https://i.imgur.com/sr33uJF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1023': + BackIsHidden: true + BackURL: https://i.imgur.com/NWEUH9H.jpg + FaceURL: https://i.imgur.com/UJX5H1U.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3358': + BackIsHidden: true + BackURL: https://i.imgur.com/wWjdod9.jpg + FaceURL: https://i.imgur.com/hCVRnbc.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +DeckIDs: +- 101400 +- 102300 +- 335800 +- 102200 +- 101500 +- 101900 +- 102000 +- 101700 +- 101600 +- 102100 +- 101800 +- 101300 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e0001a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Mensis Rooms (Squares and Moons) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.51 + posY: 1.66 + posZ: 15.67 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Deck Milkweed (Nightmare Frontier - Insight Enemies) 3050d8.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Deck Milkweed (Nightmare Frontier - Insight Enemies) 3050d8.yaml new file mode 100644 index 000000000..355b7fac4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 7 Communion ddd5dd/Deck Milkweed (Nightmare Frontier - Insight Enemies) 3050d8.yaml @@ -0,0 +1,282 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 282600 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/436ZErX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: The False God + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"2f92c329-db19-4036-997b-f3b2d5507668"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Greater Amygdala + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 330600 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/CnHBzDA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Captain of the Hunt + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"fc08401d-dddc-4412-8d1a-31972e25da76"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ludwig, the Accursed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 333200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3332': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/LQuyekr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Miskatonic's Finest + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c51a0e59-530c-4c66-a918-3d29e128010b","type":"Enemy","victory":3,"class":"Mythos","traits":"Humanoid. + Beast. Nightmare. Paradox. Elite"}' + GUID: 44a163 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Laurence, the First Vicar + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 8.169 + posY: 2.316 + posZ: -75.825 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 333000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/AUR3JSR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: The Pthumerian Queen + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5f53c24f-d999-4c2e-ab1a-a43ea36c42b4","type":"Enemy","victory":2,"class":"Mythos","traits":"Humanoid. + Pthumerian. Nightmare. Elite"}' + GUID: 39f040 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yharnam + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 2.374 + posY: 2.318 + posZ: -71.299 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '2826': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/436ZErX.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3306': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/CnHBzDA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/AUR3JSR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3332': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/LQuyekr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 282600 +- 330600 +- 333200 +- 333000 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3050d8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Milkweed (Nightmare Frontier - Insight Enemies) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.63 + posY: 1.56 + posZ: 7.1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d.ttslua new file mode 100644 index 000000000..d3a91c848 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d.ttslua @@ -0,0 +1,503 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + +function onload(saved_data) + fresh = true + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + moveList = {} + moveGuid = nil + + if next(memoryList) == nil then + createSetupButton() + else + fresh = false + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects(move) + local howManyButtons = 0 + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + 2 + objPos.z = objPos.z * globalScaleFactor * 0.9 + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=500, width=500, + color=color, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons(move) + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} + local color = {0,1,0,0.6} + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + theList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end + self.editButton({index=index, color=color}) + theList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + moveList = {} + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil +end + +--Saves selections +function buttonClick_submit() + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + memoryListBackup[guid] = nil + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +--Resets bag to starting status +function buttonClick_reset() + fresh = true + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end + local deltaPos = {} + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + yOffset + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d.yaml new file mode 100644 index 000000000..d08acc0e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d.yaml @@ -0,0 +1,97 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +AttachedDecals: +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ + Name: dunwich_back + Size: 7.4 + Transform: + posX: -0.0021877822 + posY: -0.08963572 + posZ: -0.00288731651 + rotX: 270.0 + rotY: 359.869568 + rotZ: 0.0 + scaleX: 2.00000215 + scaleY: 2.00000238 + scaleZ: 2.00000262 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag 8 Arkham Sunrise e5283d/Notecard Encounter Locations + Setup 4fdb2c.yaml' +- !include 'Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Act Deck Blood Rapture 66b646.yaml' +- !include 'Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup + 6ae08e.yaml' +- !include 'Custom_Model_Bag 8 Arkham Sunrise e5283d/Card Arkham Sunrise a34712.yaml' +- !include 'Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44.yaml' +- !include 'Custom_Model_Bag 8 Arkham Sunrise e5283d/Deck c6de77.yaml' +- !include 'Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup + d14543.yaml' +- !include 'Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set + e00006.yaml' +- !include 'Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise - Encounter + Deck e0001b.yaml' +- !include 'Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture - Encounter + Deck e0002c.yaml' +- !include 'Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Act Deck Arkham Sunrise + e0002d.yaml' +- !include 'Custom_Model_Bag 8 Arkham Sunrise e5283d/Notecard Encounter Deck Setup + fe1652.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: https://i.imgur.com/ug1L3VY.jpghttps://i.imgur.com/ug1L3VY.jpg + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e5283d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model_Bag 8 Arkham Sunrise e5283d.ttslua' +LuaScriptState: '{"ml":{"4fdb2c":{"lock":false,"pos":{"x":-17.12,"y":1.59,"z":-11.51},"rot":{"x":0,"y":90,"z":0}},"66b646":{"lock":false,"pos":{"x":0.2716,"y":1.398,"z":-6.6995},"rot":{"x":0,"y":270.0005,"z":0}},"6ae08e":{"lock":false,"pos":{"x":-12.0862,"y":1.335,"z":-13.5173},"rot":{"x":0,"y":89.9979,"z":0}},"a34712":{"lock":false,"pos":{"x":-3.956,"y":1.5966,"z":-10.441},"rot":{"x":0,"y":270.0001,"z":0}},"ad0d44":{"lock":false,"pos":{"x":1.694,"y":1.558,"z":14.2755},"rot":{"x":0,"y":224.998,"z":0}},"c6de77":{"lock":false,"pos":{"x":-2.725,"y":1.6184,"z":0.373},"rot":{"x":0,"y":270,"z":0}},"d14543":{"lock":false,"pos":{"x":-12.092,"y":1.335,"z":-9.5658},"rot":{"x":0,"y":89.9958,"z":0}},"e00001":{"lock":false,"pos":{"x":-3.956,"y":1.5966,"z":-10.441},"rot":{"x":0,"y":270,"z":0}},"e00006":{"lock":false,"pos":{"x":-12.9191,"y":1.335,"z":6.6908},"rot":{"x":0,"y":270,"z":0}},"e0001b":{"lock":false,"pos":{"x":-10.0172,"y":1.335,"z":7.7145},"rot":{"x":0,"y":270.1091,"z":0}},"e0002c":{"lock":false,"pos":{"x":-10.0716,"y":1.335,"z":4.5681},"rot":{"x":0,"y":225.0011,"z":0}},"e0002d":{"lock":false,"pos":{"x":0.4297,"y":1.398,"z":-3.3728},"rot":{"x":0,"y":270.0005,"z":0}},"fe1652":{"lock":false,"pos":{"x":-17.0805,"y":1.59,"z":11.4608},"rot":{"x":0,"y":89.9898,"z":0}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '8: Arkham Sunrise' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.71 + posY: 1.48 + posZ: -28.15 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Act Deck Arkham Sunrise e0002d.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Act Deck Arkham Sunrise e0002d.yaml new file mode 100644 index 000000000..74d3a0ed9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Act Deck Arkham Sunrise e0002d.yaml @@ -0,0 +1,403 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/qU48YRe.jpg + FaceURL: https://i.imgur.com/BqTrqyD.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9f444271-be84-4cdb-a753-40d344919f4c","type":"Act","class":"Mythos"}' + GUID: e0000d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Killing Moon + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.013 + posY: 1.495 + posZ: -24.186 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/MAcbXeo.jpg + FaceURL: https://i.imgur.com/pPokhVG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0637c516-219c-4fbb-9cab-ed134e89aaa3","type":"Act","class":"Mythos"}' + GUID: e0000c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Reclaiming Dawn + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.128 + posY: 1.537 + posZ: -24.578 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 337000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3370': + BackIsHidden: true + BackURL: https://i.imgur.com/MpwHwEg.jpg + FaceURL: https://i.imgur.com/BbSVWzu.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"3eacf15b-0532-464c-a1e1-0b7e2237feef","type":"Act","class":"Mythos"}' + GUID: e0000b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Nameless Moon + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.349 + posY: 1.571 + posZ: -24.312 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 336800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3368': + BackIsHidden: true + BackURL: https://i.imgur.com/eWXupVd.jpg + FaceURL: https://i.imgur.com/llUVgwo.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"fbf046ca-0a4f-4899-bcd9-66090f98ddf9","type":"Act","class":"Mythos"}' + GUID: e0000a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: 'Dirge of the First Hunter (v.I) + + ' + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.587 + posY: 1.58 + posZ: -23.903 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 336900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3369': + BackIsHidden: true + BackURL: https://i.imgur.com/QoFBR3u.jpg + FaceURL: https://i.imgur.com/MI2P5mQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"1dd17e3a-cb9c-43ed-950c-613aabbc2dc8","type":"Act","class":"Mythos","clueThresholdPerInvestigator":2}' + GUID: e00009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Requiem for the Dream + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -8.923 + posY: 1.59 + posZ: -24.418 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/MAcbXeo.jpg + FaceURL: https://i.imgur.com/pPokhVG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1009': + BackIsHidden: true + BackURL: https://i.imgur.com/qU48YRe.jpg + FaceURL: https://i.imgur.com/BqTrqyD.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3368': + BackIsHidden: true + BackURL: https://i.imgur.com/eWXupVd.jpg + FaceURL: https://i.imgur.com/llUVgwo.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3369': + BackIsHidden: true + BackURL: https://i.imgur.com/QoFBR3u.jpg + FaceURL: https://i.imgur.com/MI2P5mQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3370': + BackIsHidden: true + BackURL: https://i.imgur.com/MpwHwEg.jpg + FaceURL: https://i.imgur.com/BbSVWzu.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + DeckIDs: + - 100900 + - 100800 + - 337000 + - 336800 + - 336900 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1e1576 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -0.435 + posY: 3.705 + posZ: -3.372 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e0002d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 'Act Deck: Arkham Sunrise' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.43 + posY: 1.4 + posZ: -3.37 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Act Deck Blood Rapture 66b646.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Act Deck Blood Rapture 66b646.yaml new file mode 100644 index 000000000..d2f8e2a43 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Act Deck Blood Rapture 66b646.yaml @@ -0,0 +1,403 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 355000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3550': + BackIsHidden: true + BackURL: https://i.imgur.com/Jp3GjPy.jpg + FaceURL: https://i.imgur.com/9Qhrrxr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6ba458a4-b0c1-4c92-b1a4-617651f60b2f","type":"Agenda","class":"Mythos","doomThreshold":3}' + GUID: 57e2da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Requiem For the Blood + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -6.048 + posY: 1.595 + posZ: -38.686 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1024': + BackIsHidden: true + BackURL: https://i.imgur.com/0h3bmHY.jpg + FaceURL: https://i.imgur.com/b0zfDQ3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"10a1fa74-3e1c-4dd1-b21e-cf2b80d49d5a","type":"Act","class":"Mythos"}' + GUID: e0001e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood Sacrament + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -0.79 + posY: 1.534 + posZ: -34.554 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1023': + BackIsHidden: true + BackURL: https://i.imgur.com/IWq32KN.jpg + FaceURL: https://i.imgur.com/b7h87Dx.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"82ac759c-0b42-4df3-88e4-4c7e4e4e4f16","type":"Act","class":"Mythos"}' + GUID: e0001d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Formless Empire + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -1.067 + posY: 1.571 + posZ: -34.859 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1022': + BackIsHidden: true + BackURL: https://i.imgur.com/26pD3zu.jpg + FaceURL: https://i.imgur.com/MayMO5H.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5535cadf-8c95-4a78-b0b1-401c99675cc9","type":"Act","class":"Mythos"}' + GUID: e0001c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: 'Dirge of the First Hunter (v.II) + + ' + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -0.534 + posY: 1.58 + posZ: -33.991 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 336900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3369': + BackIsHidden: true + BackURL: https://i.imgur.com/QoFBR3u.jpg + FaceURL: https://i.imgur.com/MI2P5mQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"1dd17e3a-cb9c-43ed-950c-613aabbc2dc8","type":"Act","class":"Mythos","clueThresholdPerInvestigator":2}' + GUID: 2aec35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Requiem for the Dream + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -0.737 + posY: 1.59 + posZ: -34.425 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1022': + BackIsHidden: true + BackURL: https://i.imgur.com/26pD3zu.jpg + FaceURL: https://i.imgur.com/MayMO5H.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1023': + BackIsHidden: true + BackURL: https://i.imgur.com/IWq32KN.jpg + FaceURL: https://i.imgur.com/b7h87Dx.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '1024': + BackIsHidden: true + BackURL: https://i.imgur.com/0h3bmHY.jpg + FaceURL: https://i.imgur.com/b0zfDQ3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3369': + BackIsHidden: true + BackURL: https://i.imgur.com/QoFBR3u.jpg + FaceURL: https://i.imgur.com/MI2P5mQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3550': + BackIsHidden: true + BackURL: https://i.imgur.com/Jp3GjPy.jpg + FaceURL: https://i.imgur.com/9Qhrrxr.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + DeckIDs: + - 355000 + - 102400 + - 102300 + - 102200 + - 336900 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a6e538 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.611 + posY: 3.709 + posZ: -5.979 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 66b646 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 'Act Deck: Blood Rapture' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.27 + posY: 1.4 + posZ: -6.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise - Encounter Deck e0001b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise - Encounter Deck e0001b.yaml new file mode 100644 index 000000000..316791585 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise - Encounter Deck e0001b.yaml @@ -0,0 +1,1417 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1021': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/OEPajtg.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"1c0209a8-cfb3-48d7-be04-6e2a7a72e32e","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: '872134' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Winter of Dreams + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -4.477 + posY: 1.54 + posZ: -29.592 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1021': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/OEPajtg.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"1c0209a8-cfb3-48d7-be04-6e2a7a72e32e","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: e00019 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Winter of Dreams + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 25.219 + posY: 2.309 + posZ: -82.126 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1021': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/OEPajtg.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"1c0209a8-cfb3-48d7-be04-6e2a7a72e32e","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: 67fd50 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Winter of Dreams + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 24.801 + posY: 2.309 + posZ: -79.129 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/uqchLts.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"389fe0d2-8053-4bcd-a55a-685fde0b9619","type":"Treachery","class":"Mythos","traits":"Power. + Omen"}' + GUID: e00010 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Selenian Evils + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -8.045 + posY: 1.495 + posZ: -25.223 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/uqchLts.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"389fe0d2-8053-4bcd-a55a-685fde0b9619","type":"Treachery","class":"Mythos","traits":"Power. + Omen"}' + GUID: 38780a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Selenian Evils + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -8.079 + posY: 1.537 + posZ: -25.547 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/uqchLts.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"389fe0d2-8053-4bcd-a55a-685fde0b9619","type":"Treachery","class":"Mythos","traits":"Power. + Omen"}' + GUID: 2217c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Selenian Evils + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -7.533 + posY: 1.583 + posZ: -25.384 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/rIEYed3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c37a12e5-ddd1-4e43-bd0f-81c9a41e83ec","type":"Treachery","class":"Mythos","traits":"Hazard"}' + GUID: e0000f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Moonlit Night + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -3.932 + posY: 1.609 + posZ: -29.856 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 337100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3371': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/MZtaRVR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"fd66c993-aded-4098-95ea-e9eda355d953","type":"Treachery","class":"Mythos","traits":"Endtimes"}' + GUID: e0000e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dreamfall + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -4.2 + posY: 1.619 + posZ: -30.429 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 337100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3371': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/MZtaRVR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"fd66c993-aded-4098-95ea-e9eda355d953","type":"Treachery","class":"Mythos","traits":"Endtimes"}' + GUID: f2f0d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dreamfall + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -4.512 + posY: 1.628 + posZ: -28.82 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/rIEYed3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c37a12e5-ddd1-4e43-bd0f-81c9a41e83ec","type":"Treachery","class":"Mythos","traits":"Hazard"}' + GUID: 7dd3e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Moonlit Night + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 8.233 + posY: 2.318 + posZ: -81.127 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 101100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/rIEYed3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c37a12e5-ddd1-4e43-bd0f-81c9a41e83ec","type":"Treachery","class":"Mythos","traits":"Hazard"}' + GUID: d0dc92 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Moonlit Night + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 10.055 + posY: 2.319 + posZ: -79.673 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 352300 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/0qfenWs.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5644f737-93b1-422e-b47a-a8efcb6d3b96","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beckoning Moon + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 352400 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/0qfenWs.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5644f737-93b1-422e-b47a-a8efcb6d3b96","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beckoning Moon + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339600 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/9Iq4bHd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9f106d3e-a66b-476d-bdef-45fa406934ab","type":"Treachery","class":"Mythos","traits":"Pact"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Invite Madness + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 352500 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/9Iq4bHd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9f106d3e-a66b-476d-bdef-45fa406934ab","type":"Treachery","class":"Mythos","traits":"Pact"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Invite Madness + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 352600 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GlsGoUL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"fe786e72-65dc-4dd2-a9cf-ac3bf1bd962f","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unspeakable Truth + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 352700 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GlsGoUL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"fe786e72-65dc-4dd2-a9cf-ac3bf1bd962f","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unspeakable Truth + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 352800 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/PFB6Zh0/17918f33aa7c.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e13a83a0-f147-4649-8686-dd51baf2e0af","type":"Treachery","class":"Mythos","traits":"Pact. + Task"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Hunter Must Hunt + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 340000 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/F9RXRPZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7628d129-3b62-48ca-b00c-62222bef1b4e","type":"Treachery","class":"Mythos","traits":"Pact"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Flora of the Moon + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 352900 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/F9RXRPZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"7628d129-3b62-48ca-b00c-62222bef1b4e","type":"Treachery","class":"Mythos","traits":"Pact"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Flora of the Moon + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 353000 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/6gM7xcD/c58321087844.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ec711d3a-3178-4f3d-8246-88e0e8eff53c","type":"Treachery","victory":1,"class":"Mythos","traits":"Pact"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Guiding Moonlight + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"32dc122f-fcf7-454a-81fe-f5e2c78f6722","type":"Treachery","class":"Mythos","traits":"Scheme"}' + GUID: 9b7e95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Polite Exchange + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -36.189 + posY: 2.505 + posZ: -60.377 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339700 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"32dc122f-fcf7-454a-81fe-f5e2c78f6722","type":"Treachery","class":"Mythos","traits":"Scheme"}' + GUID: 1ed2f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Polite Exchange + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -36.164 + posY: 2.505 + posZ: -63.087 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1011': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/rIEYed3.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1012': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/uqchLts.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1021': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/OEPajtg.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3371': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/MZtaRVR.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3396': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/9Iq4bHd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3397': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/01JUbXd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3400': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/F9RXRPZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3523': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/0qfenWs.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3524': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/0qfenWs.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3525': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/9Iq4bHd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3526': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GlsGoUL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3527': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GlsGoUL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3528': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/PFB6Zh0/17918f33aa7c.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3529': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/F9RXRPZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3530': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.ibb.co/6gM7xcD/c58321087844.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 102100 + - 102100 + - 102100 + - 101200 + - 101200 + - 101200 + - 101100 + - 337100 + - 337100 + - 101100 + - 101100 + - 352300 + - 352400 + - 339600 + - 352500 + - 352600 + - 352700 + - 352800 + - 340000 + - 352900 + - 353000 + - 339700 + - 339700 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fcf5fc + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -10.111 + posY: 4.097 + posZ: 7.87 + rotX: 323.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e0001b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Arkham Sunrise - Encounter Deck +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.02 + posY: 1.33 + posZ: 7.71 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543.ttslua new file mode 100644 index 000000000..baa7b8b87 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1.25 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + objPos.z = objPos.z * globalScaleFactor + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + memoryList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + end +end + +--Resets bag to starting status +function buttonClick_reset() + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543.yaml new file mode 100644 index 000000000..da590c22a --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543.yaml @@ -0,0 +1,53 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- !include 'Bag Arkham Sunrise Location Setup d14543/Card Grave-Marked Trail e00003.yaml' +- !include 'Bag Arkham Sunrise Location Setup d14543/Card The Dream Aflame e00011.yaml' +- !include 'Bag Arkham Sunrise Location Setup d14543/Card Gates of the Dream e00002.yaml' +- !include 'Bag Arkham Sunrise Location Setup d14543/Card The Messengers'' Bath e00012.yaml' +- !include 'Bag Arkham Sunrise Location Setup d14543/Card Misty Garden Path e0000e.yaml' +- !include 'Bag Arkham Sunrise Location Setup d14543/Card Moon-Kissed Meadow e0000f.yaml' +- !include 'Bag Arkham Sunrise Location Setup d14543/Card Chalice Headstones e0000b.yaml' +- !include 'Bag Arkham Sunrise Location Setup d14543/Card The Burning Workshop e00010.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d14543 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Bag Arkham Sunrise Location Setup d14543.ttslua' +LuaScriptState: '{"ml":{"e00002":{"lock":false,"pos":{"x":-30.2396,"y":1.5336,"z":-7.6503},"rot":{"x":0,"y":269.9797,"z":0.0001}},"e00003":{"lock":false,"pos":{"x":-23.6427,"y":1.5336,"z":-7.6495},"rot":{"x":0,"y":270,"z":0}},"e0000b":{"lock":false,"pos":{"x":-36.84,"y":1.5335,"z":7.65},"rot":{"x":0.0018,"y":269.9995,"z":359.9908}},"e0000e":{"lock":false,"pos":{"x":-23.677,"y":1.5336,"z":7.57},"rot":{"x":0,"y":269.9979,"z":0}},"e0000f":{"lock":false,"pos":{"x":-17.12,"y":1.5336,"z":-0.03},"rot":{"x":0,"y":269.9846,"z":0}},"e00010":{"lock":false,"pos":{"x":-36.773,"y":1.5335,"z":-0.03},"rot":{"x":0.0017,"y":269.9936,"z":359.9924}},"e00011":{"lock":false,"pos":{"x":-30.224,"y":1.5335,"z":-0.03},"rot":{"x":0.0018,"y":269.9934,"z":359.9907}},"e00012":{"lock":false,"pos":{"x":-30.224,"y":1.5335,"z":7.57},"rot":{"x":0.0017,"y":270.004,"z":359.9926}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Arkham Sunrise Location Setup +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.14 + posY: 1.33 + posZ: -9.6 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card Chalice Headstones e0000b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card Chalice Headstones e0000b.yaml new file mode 100644 index 000000000..86ab67985 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card Chalice Headstones e0000b.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100800 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1008': + BackIsHidden: true + BackURL: https://i.imgur.com/BREtsjp.jpg + FaceURL: https://i.imgur.com/VkFD5t5.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"14e2747a-fa60-4c99-810d-d13796c05b35","type":"Location","class":"Mythos","traits":"Dream. + Graveyard","locationFront":{"icons":"Cross","connections":"Diamond|Square","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Cross","connections":"Diamond|Square","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]}}' +GUID: e0000b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Chalice Headstones +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -36.84 + posY: 1.53 + posZ: 7.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card Gates of the Dream e00002.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card Gates of the Dream e00002.yaml new file mode 100644 index 000000000..6e9c1c734 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card Gates of the Dream e00002.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100100 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/Eops8nR.jpg + FaceURL: https://i.imgur.com/ObE9ksF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"d88a635a-8e64-47fb-bfbe-056c52541ae9","type":"Location","class":"Mythos","traits":"Dream. + Gateway","locationFront":{"icons":"Hourglass","connections":"Circle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"Hourglass","connections":"Circle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1}}' +GUID: e00002 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Gates of the Dream +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -30.24 + posY: 1.53 + posZ: -7.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card Grave-Marked Trail e00003.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card Grave-Marked Trail e00003.yaml new file mode 100644 index 000000000..95bab3473 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card Grave-Marked Trail e00003.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100200 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/BTc1K7K.jpg + FaceURL: https://i.imgur.com/pTBThpW.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"6c91bb12-a51b-43fa-8a42-1e1b7748e2cd","type":"Location","class":"Mythos","traits":"Dream. + Graveyard. Meadow","locationFront":{"icons":"Moon","connections":"Circle|Triangle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Moon","connections":"Circle|Triangle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]}}' +GUID: e00003 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Grave-Marked Trail +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -23.64 + posY: 1.53 + posZ: -7.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card Misty Garden Path e0000e.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card Misty Garden Path e0000e.yaml new file mode 100644 index 000000000..d112574f1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card Misty Garden Path e0000e.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 353200 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3532': + BackIsHidden: true + BackURL: https://i.imgur.com/WVtiHyT.jpg + FaceURL: https://i.imgur.com/mGeanlt.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"eab6e9e0-5754-4799-8dd5-ecbdccbad36e","type":"Location","class":"Mythos","traits":"Dream. + Graveyard","locationFront":{"icons":"T","connections":"Diamond|Triangle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"T","connections":"Diamond|Triangle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]}}' +GUID: e0000e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Misty Garden Path +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -23.68 + posY: 1.53 + posZ: 7.57 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card Moon-Kissed Meadow e0000f.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card Moon-Kissed Meadow e0000f.yaml new file mode 100644 index 000000000..9c30d36c3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card Moon-Kissed Meadow e0000f.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 353300 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3533': + BackIsHidden: true + BackURL: https://i.imgur.com/ufzxcE7.jpg + FaceURL: https://i.imgur.com/anutvMZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"85dc6e64-f164-4300-b394-3ca07acae9fb","type":"Location","class":"Mythos","traits":"Dream. + Meadow","locationFront":{"icons":"Triangle","connections":"Moon|T","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"Triangle","connections":"Moon|T","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1}}' +GUID: e0000f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Moon-Kissed Meadow +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -17.12 + posY: 1.53 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card The Burning Workshop e00010.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card The Burning Workshop e00010.yaml new file mode 100644 index 000000000..874a45cb7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card The Burning Workshop e00010.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101300 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/3VIGJpx.jpg + FaceURL: https://i.imgur.com/ur6Gdpd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"98af0569-db7a-4a59-be91-006d69516744","type":"Location","class":"Mythos","traits":"Dream. + Workshop","locationFront":{"icons":"Square","connections":"Diamond|Cross|Circle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Square","connections":"Diamond|Cross|Circle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]}}' +GUID: e00010 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Burning Workshop +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -36.77 + posY: 1.53 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card The Dream Aflame e00011.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card The Dream Aflame e00011.yaml new file mode 100644 index 000000000..36f4ccbbb --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card The Dream Aflame e00011.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1014': + BackIsHidden: true + BackURL: https://i.imgur.com/Ch0JYp0.jpg + FaceURL: https://i.imgur.com/5qOkilz.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: Requiem for the Hunt +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"00d56ad5-b2c9-4181-9a18-66a9528c4367","type":"Location","class":"Mythos","traits":"Dream. + Graveyard. Central","locationFront":{"icons":"Circle","connections":"Moon|Diamond|Square|Hourglass","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Circle","connections":"Moon|Diamond|Square|Hourglass","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]}}' +GUID: e00011 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Dream Aflame +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -30.22 + posY: 1.53 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card The Messengers' Bath e00012.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card The Messengers' Bath e00012.yaml new file mode 100644 index 000000000..afdc4c3b6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Arkham Sunrise Location Setup d14543/Card The Messengers' Bath e00012.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101500 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1015': + BackIsHidden: true + BackURL: https://i.imgur.com/jj8sKTv.jpg + FaceURL: https://i.imgur.com/teMjCAP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"352d01f0-9781-4c25-be86-380463e3bdea","type":"Location","class":"Mythos","traits":"Dream. + Graveyard","locationFront":{"icons":"Diamond","connections":"T|Cross|Circle|Square","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Diamond","connections":"T|Cross|Circle|Square","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1}}' +GUID: e00012 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Messengers' Bath +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -30.22 + posY: 1.53 + posZ: 7.57 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture - Encounter Deck e0002c.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture - Encounter Deck e0002c.yaml new file mode 100644 index 000000000..1667932cf --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture - Encounter Deck e0002c.yaml @@ -0,0 +1,1839 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 348200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3482': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GfWuMwI.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Justice of the Oneiroi + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"140f50c1-195f-4ff3-bd5f-31f6ef2ebb73","type":"Enemy","class":"Mythos","traits":"Humanoid. + Cimmerian. Elite"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cimmerian Martyr + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 15.543 + posY: 2.505 + posZ: -85.954 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 348100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/z0RPIYQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ed028714-48d3-4f59-b30a-6ac4f7563fc8","type":"Enemy","class":"Mythos","traits":"Creature. + Elite"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Watchdog of the Oneiroi + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.7 + posY: 1.495 + posZ: 23.6 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 348100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/z0RPIYQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ed028714-48d3-4f59-b30a-6ac4f7563fc8","type":"Enemy","class":"Mythos","traits":"Creature. + Elite"}' + GUID: 34299d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Watchdog of the Oneiroi + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.7 + posY: 1.541 + posZ: 23.6 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 353300 + CustomDeck: + '1000': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/0qfenWs.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5644f737-93b1-422e-b47a-a8efcb6d3b96","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beckoning Moon + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 353400 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/0qfenWs.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"5644f737-93b1-422e-b47a-a8efcb6d3b96","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beckoning Moon + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 339600 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/9Iq4bHd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9f106d3e-a66b-476d-bdef-45fa406934ab","type":"Treachery","class":"Mythos","traits":"Pact"}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Invite Madness + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 353500 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/9Iq4bHd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9f106d3e-a66b-476d-bdef-45fa406934ab","type":"Treachery","class":"Mythos","traits":"Pact"}' + GUID: e00004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Invite Madness + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 353600 + CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GlsGoUL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"fe786e72-65dc-4dd2-a9cf-ac3bf1bd962f","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: e00005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unspeakable Truth + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 353700 + CustomDeck: + '1005': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GlsGoUL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"fe786e72-65dc-4dd2-a9cf-ac3bf1bd962f","type":"Treachery","class":"Mythos","traits":"Terror"}' + GUID: e00006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unspeakable Truth + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 103500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1035': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/5fVZ464.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6f196650-0c87-4381-a6e7-1baa3b6ddec4","type":"Treachery","class":"Mythos","traits":"Terror. + Power"}' + GUID: 01572e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Whispers of Somnus + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 3.892 + posY: 2.319 + posZ: -49.879 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 103500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1035': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/5fVZ464.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6f196650-0c87-4381-a6e7-1baa3b6ddec4","type":"Treachery","class":"Mythos","traits":"Terror. + Power"}' + GUID: 4ed36d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Whispers of Somnus + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: 4.211 + posY: 2.319 + posZ: -50.372 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 103500 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1035': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/5fVZ464.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"6f196650-0c87-4381-a6e7-1baa3b6ddec4","type":"Treachery","class":"Mythos","traits":"Terror. + Power"}' + GUID: e00029 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Whispers of Somnus + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -1.334 + posY: 1.495 + posZ: -36.869 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 103400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1034': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/PpLLEtG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9baba37a-b3cd-4d19-89e6-5b5a0c967b14","type":"Treachery","class":"Mythos","traits":"Power. + Omen"}' + GUID: e00028 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sanguine Evils + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -2.161 + posY: 1.495 + posZ: -23.599 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 103400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1034': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/PpLLEtG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9baba37a-b3cd-4d19-89e6-5b5a0c967b14","type":"Treachery","class":"Mythos","traits":"Power. + Omen"}' + GUID: 003db9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sanguine Evils + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -2.131 + posY: 1.556 + posZ: -23.544 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 103400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1034': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/PpLLEtG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"9baba37a-b3cd-4d19-89e6-5b5a0c967b14","type":"Treachery","class":"Mythos","traits":"Power. + Omen"}' + GUID: fdf81a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sanguine Evils + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -1.878 + posY: 1.969 + posZ: -23.395 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1029': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/P0q8ndH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f9869a4f-1d55-4a82-813d-8155f9c14148","type":"Enemy","class":"Mythos","traits":"Humanoid. + Cimmerian. Cultist"}' + GUID: 36d92c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cimmerian Ritekeeper + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -5.465 + posY: 1.495 + posZ: -32.643 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1029': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/P0q8ndH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f9869a4f-1d55-4a82-813d-8155f9c14148","type":"Enemy","class":"Mythos","traits":"Humanoid. + Cimmerian. Cultist"}' + GUID: 9bd15e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cimmerian Ritekeeper + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -5.357 + posY: 1.54 + posZ: -32.704 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1029': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/P0q8ndH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f9869a4f-1d55-4a82-813d-8155f9c14148","type":"Enemy","class":"Mythos","traits":"Humanoid. + Cimmerian. Cultist"}' + GUID: e00023 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cimmerian Ritekeeper + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -5.147 + posY: 1.571 + posZ: -32.579 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1028': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/AyUvCDh.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c9353145-0c9f-44d5-aa8f-7efd84072640","type":"Enemy","class":"Mythos","traits":"Humanoid. + Cimmerian"}' + GUID: c076c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cimmerian Pilgrim + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -5.277 + posY: 1.589 + posZ: -32.716 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1028': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/AyUvCDh.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c9353145-0c9f-44d5-aa8f-7efd84072640","type":"Enemy","class":"Mythos","traits":"Humanoid. + Cimmerian"}' + GUID: e00022 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cimmerian Pilgrim + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -5.07 + posY: 1.59 + posZ: -33.2 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102800 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1028': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/AyUvCDh.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"c9353145-0c9f-44d5-aa8f-7efd84072640","type":"Enemy","class":"Mythos","traits":"Humanoid. + Cimmerian"}' + GUID: a206c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cimmerian Pilgrim + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -5.108 + posY: 1.6 + posZ: -32.722 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1026': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JC4xPVj.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a0bf5185-87f8-46d6-b1eb-a1c52e68465a","type":"Enemy","class":"Mythos","traits":"Humanoid. + Cimmerian"}' + GUID: e00020 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cimmerian Chieftain + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -4.78 + posY: 1.495 + posZ: -29.835 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 102600 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1026': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JC4xPVj.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a0bf5185-87f8-46d6-b1eb-a1c52e68465a","type":"Enemy","class":"Mythos","traits":"Humanoid. + Cimmerian"}' + GUID: 5c0493 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cimmerian Chieftain + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -4.864 + posY: 1.537 + posZ: -29.365 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/3wKoGAf.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"26fe7b4b-908d-4cfe-a522-2e42c051853d","type":"Treachery","class":"Mythos","traits":"Power. + Hazard"}' + GUID: 8ae91d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: "Winds of Ph\uFFFDntasos" + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -42.095 + posY: 1.985 + posZ: -127.579 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/3wKoGAf.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"26fe7b4b-908d-4cfe-a522-2e42c051853d","type":"Treachery","class":"Mythos","traits":"Power. + Hazard"}' + GUID: 8efd01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: "Winds of Ph\uFFFDntasos" + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -18.354 + posY: 2.505 + posZ: -48.73 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/3wKoGAf.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"26fe7b4b-908d-4cfe-a522-2e42c051853d","type":"Treachery","class":"Mythos","traits":"Power. + Hazard"}' + GUID: 54ada9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: "Winds of Ph\uFFFDntasos" + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -17.277 + posY: 2.624 + posZ: -48.795 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZO2oDrS.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0f4cfa04-7c5a-449b-bcee-4508725b05ca","type":"Treachery","class":"Mythos","traits":"Power. + Hex"}' + GUID: c4593b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Illusions of Morpheus + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -17.051 + posY: 2.681 + posZ: -52.969 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100200 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZO2oDrS.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"0f4cfa04-7c5a-449b-bcee-4508725b05ca","type":"Treachery","class":"Mythos","traits":"Power. + Hex"}' + GUID: de508d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Illusions of Morpheus + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -17.052 + posY: 2.681 + posZ: -52.499 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/D16k0KA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f88f6e69-5b06-480b-a159-13cfc98d7825","type":"Treachery","class":"Mythos","traits":"Power. + Terror"}' + GUID: 4e217b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Horrors of Icelos + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -19.031 + posY: 2.505 + posZ: -49.268 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 100100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/D16k0KA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"f88f6e69-5b06-480b-a159-13cfc98d7825","type":"Treachery","class":"Mythos","traits":"Power. + Terror"}' + GUID: b7c9d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Horrors of Icelos + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -18.437 + posY: 2.624 + posZ: -49.591 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '1001': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/D16k0KA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ZO2oDrS.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1003': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/3wKoGAf.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1026': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/JC4xPVj.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1028': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/AyUvCDh.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1029': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/P0q8ndH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1034': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/PpLLEtG.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '1035': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/5fVZ464.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3396': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/9Iq4bHd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3481': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/z0RPIYQ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3482': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GfWuMwI.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3533': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/0qfenWs.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3534': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/0qfenWs.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3535': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/9Iq4bHd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3536': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GlsGoUL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3537': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/GlsGoUL.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 348200 + - 348100 + - 348100 + - 353300 + - 353400 + - 339600 + - 353500 + - 353600 + - 353700 + - 103500 + - 103500 + - 103500 + - 103400 + - 103400 + - 103400 + - 102900 + - 102900 + - 102900 + - 102800 + - 102800 + - 102800 + - 102600 + - 102600 + - 100300 + - 100300 + - 100300 + - 100200 + - 100200 + - 100100 + - 100100 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9f9aad + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -9.769 + posY: 3.76 + posZ: 5.335 + rotX: 0.0 + rotY: 270.0 + rotZ: 179.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e0002c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Blood Rapture - Encounter Deck +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.07 + posY: 1.33 + posZ: 4.57 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e.ttslua new file mode 100644 index 000000000..baa7b8b87 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1.25 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + objPos.z = objPos.z * globalScaleFactor + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + memoryList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + end +end + +--Resets bag to starting status +function buttonClick_reset() + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e.yaml new file mode 100644 index 000000000..f3990afd5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e.yaml @@ -0,0 +1,53 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- !include 'Bag Blood Rapture Location Setup 6ae08e/Card Gates of the Dream e00002.yaml' +- !include 'Bag Blood Rapture Location Setup 6ae08e/Card The Dream Aflame e00007.yaml' +- !include 'Bag Blood Rapture Location Setup 6ae08e/Card The Burning Workshop 07f729.yaml' +- !include 'Bag Blood Rapture Location Setup 6ae08e/Card Chalice Headstones e00001.yaml' +- !include 'Bag Blood Rapture Location Setup 6ae08e/Card The Messengers'' Bath e00008.yaml' +- !include 'Bag Blood Rapture Location Setup 6ae08e/Card Misty Garden Path e00004.yaml' +- !include 'Bag Blood Rapture Location Setup 6ae08e/Card Moon-Kissed Meadow e00005.yaml' +- !include 'Bag Blood Rapture Location Setup 6ae08e/Card Grave-Marked Trail e00003.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 6ae08e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Bag Blood Rapture Location Setup 6ae08e.ttslua' +LuaScriptState: '{"ml":{"07f729":{"lock":false,"pos":{"x":-36.773,"y":1.5335,"z":-0.03},"rot":{"x":0.0019,"y":270.0041,"z":359.9908}},"e00001":{"lock":false,"pos":{"x":-36.7733,"y":1.5336,"z":7.5698},"rot":{"x":0,"y":270.0057,"z":0}},"e00002":{"lock":false,"pos":{"x":-30.224,"y":1.5336,"z":-7.7},"rot":{"x":0,"y":270.0003,"z":0}},"e00003":{"lock":false,"pos":{"x":-23.64,"y":1.5336,"z":-7.65},"rot":{"x":0,"y":270,"z":0}},"e00004":{"lock":false,"pos":{"x":-23.677,"y":1.5332,"z":7.57},"rot":{"x":0.0044,"y":269.9889,"z":359.973}},"e00005":{"lock":false,"pos":{"x":-17.04,"y":1.5336,"z":0},"rot":{"x":0,"y":270,"z":0}},"e00007":{"lock":false,"pos":{"x":-30.224,"y":1.5335,"z":-0.03},"rot":{"x":0.0018,"y":270.0174,"z":359.992}},"e00008":{"lock":false,"pos":{"x":-30.224,"y":1.5336,"z":7.57},"rot":{"x":0,"y":269.9871,"z":0}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Blood Rapture Location Setup +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.19 + posY: 1.33 + posZ: -13.61 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card Chalice Headstones e00001.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card Chalice Headstones e00001.yaml new file mode 100644 index 000000000..c1badd274 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card Chalice Headstones e00001.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 340100 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3401': + BackIsHidden: true + BackURL: https://i.imgur.com/EW1LdGr.jpg + FaceURL: https://i.imgur.com/lGMvmlC.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"a233ac14-49d7-4f5d-96fb-cc00cb0741c1","type":"Location","class":"Mythos","traits":"Dream. + Graveyard","locationFront":{"icons":"Cross","connections":"Diamond|Square","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Cross","connections":"Diamond|Square","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]}}' +GUID: e00001 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Chalice Headstones +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -36.84 + posY: 1.53 + posZ: 7.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card Gates of the Dream e00002.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card Gates of the Dream e00002.yaml new file mode 100644 index 000000000..fc77eadb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card Gates of the Dream e00002.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 339600 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3396': + BackIsHidden: true + BackURL: https://i.imgur.com/vv3PDvN.jpg + FaceURL: https://i.imgur.com/tePPJVA.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"856e4869-885a-4c62-a7be-7dbd0b38744e","type":"Location","class":"Mythos","traits":"Dream. + Gateway","locationFront":{"icons":"Hourglass","connections":"Circle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"Hourglass","connections":"Circle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1}}' +GUID: e00002 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Gates of the Dream +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -30.22 + posY: 1.53 + posZ: -7.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card Grave-Marked Trail e00003.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card Grave-Marked Trail e00003.yaml new file mode 100644 index 000000000..ec3fadb91 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card Grave-Marked Trail e00003.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100200 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1002': + BackIsHidden: true + BackURL: https://i.imgur.com/Mt5F3hj.jpg + FaceURL: https://i.imgur.com/crQI1Ge.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"f68df7e6-9ffd-4b16-b9ba-416dfda8996c","type":"Location","class":"Mythos","traits":"Dream. + Graveyard. Meadow","locationFront":{"icons":"Moon","connections":"Circle|Triangle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Moon","connections":"Circle|Triangle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]}}' +GUID: e00003 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Grave-Marked Trail +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -23.64 + posY: 1.53 + posZ: -7.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card Misty Garden Path e00004.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card Misty Garden Path e00004.yaml new file mode 100644 index 000000000..a50277fa3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card Misty Garden Path e00004.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 340000 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3400': + BackIsHidden: true + BackURL: https://i.imgur.com/JVCOvYj.jpg + FaceURL: https://i.imgur.com/gLyjU0e.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"3f40961a-e58d-4f1b-a2c5-b89ef30f9410","type":"Location","class":"Mythos","traits":"Dream. + Graveyard","locationFront":{"icons":"T","connections":"Diamond|Triangle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"T","connections":"Diamond|Triangle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1}}' +GUID: e00004 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Misty Garden Path +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -23.68 + posY: 1.53 + posZ: 7.57 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card Moon-Kissed Meadow e00005.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card Moon-Kissed Meadow e00005.yaml new file mode 100644 index 000000000..9e33652f4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card Moon-Kissed Meadow e00005.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 100400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1004': + BackIsHidden: true + BackURL: https://i.imgur.com/lzP8cFl.jpg + FaceURL: https://i.imgur.com/Q1bC9Jc.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"297b8f2f-14f9-4a4c-a731-bd0f7b76b125","type":"Location","class":"Mythos","traits":"Dream. + Meadow","locationFront":{"icons":"Triangle","connections":"Moon|T","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]},"locationBack":{"icons":"Triangle","connections":"Moon|T","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}],"victory":1}}' +GUID: e00005 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Moon-Kissed Meadow +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -17.04 + posY: 1.53 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card The Burning Workshop 07f729.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card The Burning Workshop 07f729.yaml new file mode 100644 index 000000000..82a78afc4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card The Burning Workshop 07f729.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 353200 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3532': + BackIsHidden: true + BackURL: https://i.imgur.com/aTDQ8jq.jpg + FaceURL: https://i.imgur.com/VkvyXg9.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"87de1c33-e5df-45fe-8207-eb0ec750950b","type":"Location","class":"Mythos","traits":"Dream. + Workshop","locationFront":{"icons":"Square","connections":"Diamond|Cross|Circle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Square","connections":"Diamond|Cross|Circle","uses":[{"token":"clue","type":"Clue","countPerInvestigator":3}],"victory":1}}' +GUID: 07f729 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Burning Workshop +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -36.77 + posY: 1.53 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card The Dream Aflame e00007.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card The Dream Aflame e00007.yaml new file mode 100644 index 000000000..ade469c01 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card The Dream Aflame e00007.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 340200 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3402': + BackIsHidden: true + BackURL: https://i.imgur.com/3KzTbpR.jpg + FaceURL: https://i.imgur.com/mjYyL0O.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: Requiem for the Hunt +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"3f3b2342-bce8-4c81-849b-3db465095811","type":"Location","class":"Mythos","traits":"Dream. + Graveyard. Central","locationFront":{"icons":"Circle","connections":"Moon|Diamond|Square|Hourglass","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Circle","connections":"Moon|Diamond|Square|Hourglass","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]}}' +GUID: e00007 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Dream Aflame +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -30.22 + posY: 1.53 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card The Messengers' Bath e00008.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card The Messengers' Bath e00008.yaml new file mode 100644 index 000000000..d0e8e7d19 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Blood Rapture Location Setup 6ae08e/Card The Messengers' Bath e00008.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 353400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3534': + BackIsHidden: true + BackURL: https://i.imgur.com/xmm5PWh.jpg + FaceURL: https://i.imgur.com/4GucRdy.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"2a1d89d2-bca4-4241-bca3-993b6846c28e","type":"Location","class":"Mythos","traits":"Dream. + Graveyard","locationFront":{"icons":"Diamond","connections":"T|Cross|Circle|Square","uses":[{"token":"clue","type":"Clue","countPerInvestigator":1}]},"locationBack":{"icons":"Diamond","connections":"T|Cross|Circle|Square","uses":[{"token":"clue","type":"Clue","countPerInvestigator":2}]}}' +GUID: e00008 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Messengers' Bath +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Location +- ScenarioCard +Tooltip: true +Transform: + posX: -30.24 + posY: 1.53 + posZ: 7.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006.yaml new file mode 100644 index 000000000..6f41cbe14 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006.yaml @@ -0,0 +1,56 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- !include 'Bag Hanged Man encounter set e00006/Card The End of the Hunt (Alfred) + e00011.yaml' +- !include 'Bag Hanged Man encounter set e00006/Card The End of the Hunt (Walter) + e00015.yaml' +- !include 'Bag Hanged Man encounter set e00006/Card The End of the Hunt (Yamamura) + 026244.yaml' +- !include 'Bag Hanged Man encounter set e00006/Card The End of the Hunt (Cecily) + e00012.yaml' +- !include 'Bag Hanged Man encounter set e00006/Card The End of the Hunt (Djura) e00013.yaml' +- !include 'Bag Hanged Man encounter set e00006/Card The End of the Hunt (Eileen) + e00014.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e00006 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Hanged Man encounter set +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.92 + posY: 1.33 + posZ: 6.69 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006/Card The End of the Hunt (Alfred) e00011.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006/Card The End of the Hunt (Alfred) e00011.yaml new file mode 100644 index 000000000..fa17da884 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006/Card The End of the Hunt (Alfred) e00011.yaml @@ -0,0 +1,53 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101300 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1013': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/BV6qTVh.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"eeca8e8b-2ecb-47a8-8e87-15977740ce5c","type":"Treachery","class":"Mythos","traits":"Omen"}' +GUID: e00011 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The End of the Hunt (Alfred) +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: 1.69 + posY: 3.57 + posZ: -32.2 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006/Card The End of the Hunt (Cecily) e00012.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006/Card The End of the Hunt (Cecily) e00012.yaml new file mode 100644 index 000000000..2a39b1433 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006/Card The End of the Hunt (Cecily) e00012.yaml @@ -0,0 +1,53 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1014': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/NHZlA9I.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"4b101e9f-0fe9-4fb1-b516-8723e41fffbb","type":"Treachery","class":"Mythos","traits":"Omen"}' +GUID: e00012 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The End of the Hunt (Cecily) +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: 2.39 + posY: 3.57 + posZ: -32.59 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006/Card The End of the Hunt (Djura) e00013.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006/Card The End of the Hunt (Djura) e00013.yaml new file mode 100644 index 000000000..064b33778 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006/Card The End of the Hunt (Djura) e00013.yaml @@ -0,0 +1,53 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101500 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1015': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/EYCoXzg.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"c5d39345-af94-4ca2-9ad3-466a86a7b6f5","type":"Treachery","class":"Mythos","traits":"Omen"}' +GUID: e00013 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The End of the Hunt (Djura) +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: 2.38 + posY: 3.57 + posZ: -32.62 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006/Card The End of the Hunt (Eileen) e00014.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006/Card The End of the Hunt (Eileen) e00014.yaml new file mode 100644 index 000000000..9c3472444 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006/Card The End of the Hunt (Eileen) e00014.yaml @@ -0,0 +1,53 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101600 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1016': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ht6NSoe.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"9943cb54-1914-4645-9b68-be14f019237b","type":"Treachery","class":"Mythos","traits":"Omen"}' +GUID: e00014 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The End of the Hunt (Eileen) +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: 2.14 + posY: 3.58 + posZ: -31.81 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006/Card The End of the Hunt (Walter) e00015.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006/Card The End of the Hunt (Walter) e00015.yaml new file mode 100644 index 000000000..dcd1789b4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006/Card The End of the Hunt (Walter) e00015.yaml @@ -0,0 +1,53 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101700 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1017': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/FbUh6ot.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"7cdc25ee-3d22-4f52-900d-ef1c7c960329","type":"Treachery","class":"Mythos","traits":"Omen"}' +GUID: e00015 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The End of the Hunt (Walter) +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: 2.71 + posY: 3.57 + posZ: -32.83 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006/Card The End of the Hunt (Yamamura) 026244.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006/Card The End of the Hunt (Yamamura) 026244.yaml new file mode 100644 index 000000000..01c494c0a --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Bag Hanged Man encounter set e00006/Card The End of the Hunt (Yamamura) 026244.yaml @@ -0,0 +1,53 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101800 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1018': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/9emnjpz.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"18fccf4e-9b70-44f5-96f5-1c2bd2779094","type":"Treachery","class":"Mythos","traits":"Omen"}' +GUID: '026244' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The End of the Hunt (Yamamura) +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: 2.3 + posY: 3.57 + posZ: -32.41 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Card Arkham Sunrise a34712.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Card Arkham Sunrise a34712.yaml new file mode 100644 index 000000000..12edec635 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Card Arkham Sunrise a34712.yaml @@ -0,0 +1,53 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 348000 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3480': + BackIsHidden: true + BackURL: https://i.imgur.com/RvnbRzw.jpg + FaceURL: https://i.imgur.com/xvpzh1T.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"e13c2b4b-6aa5-48bd-8e10-ec4882ade45c"}' +GUID: a34712 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Arkham Sunrise +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: -3.96 + posY: 1.6 + posZ: -10.44 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44.yaml new file mode 100644 index 000000000..1b7bfb1cb --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44.yaml @@ -0,0 +1,71 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.02149 + g: 0.00101 + r: 0.02149 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside ad0d44/CardCustom Gehrman 4be5b4.yaml' +- !include 'Custom_Model_Bag Set-aside ad0d44/Bag Arkham Sunrise Assets e00010.yaml' +- !include 'Custom_Model_Bag Set-aside ad0d44/Bag Blood Rapture Assets e00008.yaml' +- !include 'Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a.yaml' +- !include 'Custom_Model_Bag Set-aside ad0d44/CardCustom c3ee62.yaml' +- !include 'Custom_Model_Bag Set-aside ad0d44/Bag Delicate Keepsake e00008.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/ + MaterialIndex: 1 + MeshURL: http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/ + NormalURL: http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/ + TypeIndex: 6 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ad0d44 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Set-aside +PhysicsMaterial: + BounceCombine: 0 + Bounciness: 0.0 + DynamicFriction: 0.6 + FrictionCombine: 0 + StaticFriction: 0.6 +Rigidbody: + AngularDrag: 5.0 + Drag: 5.0 + Mass: 1.375 + UseGravity: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69 + posY: 1.56 + posZ: 14.28 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Arkham Sunrise Assets e00010.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Arkham Sunrise Assets e00010.yaml new file mode 100644 index 000000000..c6b15cfcc --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Arkham Sunrise Assets e00010.yaml @@ -0,0 +1,47 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- !include 'Bag Arkham Sunrise Assets e00010/Card The Chosen Hunter e00017.yaml' +- !include 'Bag Arkham Sunrise Assets e00010/CardCustom The Moon Presence 14a56e.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e00010 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Arkham Sunrise Assets +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.27 + posY: 3.47 + posZ: 15.45 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Arkham Sunrise Assets e00010/Card The Chosen Hunter e00017.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Arkham Sunrise Assets e00010/Card The Chosen Hunter e00017.yaml new file mode 100644 index 000000000..5f489c6a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Arkham Sunrise Assets e00010/Card The Chosen Hunter e00017.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 101900 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '1019': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/t2axrKv.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Paleblood's Favored +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"36b532e9-f860-4508-9e0d-7be4e53aadec","type":"Enemy","class":"Mythos","traits":"Humanoid. + Hunter of Yharnam. Elite"}' +GUID: e00017 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Chosen Hunter +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: 7.47 + posY: 3.58 + posZ: -29.9 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Arkham Sunrise Assets e00010/CardCustom The Moon Presence 14a56e.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Arkham Sunrise Assets e00010/CardCustom The Moon Presence 14a56e.yaml new file mode 100644 index 000000000..f4a741b98 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Arkham Sunrise Assets e00010/CardCustom The Moon Presence 14a56e.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 339400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3394': + BackIsHidden: true + BackURL: https://i.imgur.com/zHDu7tE.png + FaceURL: https://i.imgur.com/ztSfJJN.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Nameless Paleblood +DragSelectable: true +GMNotes: '' +GUID: 14a56e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: '*The Moon Presence' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.36 + posY: 3.58 + posZ: -30.08 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Blood Rapture Assets e00008.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Blood Rapture Assets e00008.yaml new file mode 100644 index 000000000..5bf048844 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Blood Rapture Assets e00008.yaml @@ -0,0 +1,47 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- !include 'Bag Blood Rapture Assets e00008/Card Cimmerian Elder e00021.yaml' +- !include 'Bag Blood Rapture Assets e00008/CardCustom Oedon 37c6ef.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e00008 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Blood Rapture Assets +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.97 + posY: 3.45 + posZ: 12.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Blood Rapture Assets e00008/Card Cimmerian Elder e00021.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Blood Rapture Assets e00008/Card Cimmerian Elder e00021.yaml new file mode 100644 index 000000000..7dfe55669 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Blood Rapture Assets e00008/Card Cimmerian Elder e00021.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 336600 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3366': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Ikub7vP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"4d5db12c-02e3-4463-ab4d-6720aba5a706","type":"Enemy","victory":1,"class":"Mythos","traits":"Humanoid. + Cimmerian. Sorcerer. Elite"}' +GUID: e00021 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Cimmerian Elder +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: 11.3 + posY: 3.58 + posZ: -33.72 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Blood Rapture Assets e00008/CardCustom Oedon 37c6ef.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Blood Rapture Assets e00008/CardCustom Oedon 37c6ef.yaml new file mode 100644 index 000000000..818a8d61d --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Blood Rapture Assets e00008/CardCustom Oedon 37c6ef.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 339400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3394': + BackIsHidden: true + BackURL: https://i.imgur.com/zHDu7tE.png + FaceURL: https://i.imgur.com/DxkVJs4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Aegri Somnia Vana +DragSelectable: true +GMNotes: '' +GUID: 37c6ef +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: '*Oedon' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.6 + posY: 3.57 + posZ: -33.88 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a.yaml new file mode 100644 index 000000000..e53196d8c --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.607 + g: 0.694 + r: 0.129 +ContainedObjects: +- !include 'Bag Campaign Rewards 99972a/Bag The Seminarist b190c2.yaml' +- !include 'Bag Campaign Rewards 99972a/Bag The Sophisticate 4bc4fe.yaml' +- !include 'Bag Campaign Rewards 99972a/Bag The Libertine e00005.yaml' +- !include 'Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807.yaml' +- !include 'Bag Campaign Rewards 99972a/Bag The Enforcer e00008.yaml' +- !include 'Bag Campaign Rewards 99972a/Bag The Peacekeeper e00009.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 99972a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Campaign Rewards +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.94 + posY: 3.47 + posZ: 15.85 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Enforcer e00008.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Enforcer e00008.yaml new file mode 100644 index 000000000..e25016ebb --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Enforcer e00008.yaml @@ -0,0 +1,48 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.04659 + g: 0.22474 + r: 0.0711 +ContainedObjects: +- !include 'Bag The Enforcer e00008/Card Jack Crawford 5caa3c.yaml' +- !include 'Bag The Enforcer e00008/Card Eileen''s Blades of Mercy e00003.yaml' +- !include 'Bag The Enforcer e00008/Card Eileen MacRoe e00001.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e00008 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: The Enforcer +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.46 + posY: 3.18 + posZ: -39.71 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Enforcer e00008/Card Eileen MacRoe e00001.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Enforcer e00008/Card Eileen MacRoe e00001.yaml new file mode 100644 index 000000000..66af9d7dc --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Enforcer e00008/Card Eileen MacRoe e00001.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 344200 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3442': + BackIsHidden: true + BackURL: https://i.imgur.com/lTUTzmj.jpg + FaceURL: https://i.imgur.com/pFupk43.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: The Enforcer +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"d3d60acd-7dc7-43fc-88b1-ddf020bf1417","type":"Investigator","class":"Rogue","traits":"Criminal. + Hunter","agilityIcons":4,"fightIcons":3,"intellectIcons":2,"willpowerIcons":3}' +GUID: e00001 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Eileen MacRoe +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Investigator +- PlayerCard +Tooltip: true +Transform: + posX: 5.43 + posY: 2.32 + posZ: -45.86 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Enforcer e00008/Card Eileen's Blades of Mercy e00003.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Enforcer e00008/Card Eileen's Blades of Mercy e00003.yaml new file mode 100644 index 000000000..897a8e18e --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Enforcer e00008/Card Eileen's Blades of Mercy e00003.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 344500 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3445': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/Xx1T9Ru.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"e1f9688c-539e-4d46-9efa-f22818f8a70f","type":"Asset","class":"Neutral","traits":"Item. + Weapon. Melee. Relic","agilityIcons":3,"cost":3}' +GUID: e00003 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Eileen's Blades of Mercy +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Asset +- PlayerCard +Tooltip: true +Transform: + posX: 2.81 + posY: 2.33 + posZ: -46.24 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Enforcer e00008/Card Jack Crawford 5caa3c.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Enforcer e00008/Card Jack Crawford 5caa3c.yaml new file mode 100644 index 000000000..6b51456da --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Enforcer e00008/Card Jack Crawford 5caa3c.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 344700 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3447': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/CU95zUH.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"1df81c97-e1ff-4007-b11a-cd60f1a3877f","type":"Enemy","traits":"Humanoid. + Hunter. Elite","weakness":true}' +GUID: 5caa3c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Jack Crawford +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- PlayerCard +Tooltip: true +Transform: + posX: 4.17 + posY: 2.32 + posZ: -49.3 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Libertine e00005.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Libertine e00005.yaml new file mode 100644 index 000000000..57657c2dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Libertine e00005.yaml @@ -0,0 +1,48 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.28932 + g: 0.82032 + r: 0.95993 +ContainedObjects: +- !include 'Bag The Libertine e00005/Card Kegare e00001.yaml' +- !include 'Bag The Libertine e00005/Card Heirloom Fountain Pen e00003.yaml' +- !include 'Bag The Libertine e00005/Card Yamamura Isao e00002.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e00005 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: The Libertine +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.28 + posY: 3.18 + posZ: -43.1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Libertine e00005/Card Heirloom Fountain Pen e00003.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Libertine e00005/Card Heirloom Fountain Pen e00003.yaml new file mode 100644 index 000000000..e7cbf3f25 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Libertine e00005/Card Heirloom Fountain Pen e00003.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 342600 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3426': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/3kHtEcd.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"18244a58-9bcd-49ee-926b-084c7346c5f6","type":"Asset","class":"Neutral","traits":"Item. + Charm. Tool","cost":1}' +GUID: e00003 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Heirloom Fountain Pen +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Asset +- PlayerCard +Tooltip: true +Transform: + posX: 4.72 + posY: 2.53 + posZ: -60.37 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Libertine e00005/Card Kegare e00001.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Libertine e00005/Card Kegare e00001.yaml new file mode 100644 index 000000000..a8be7dda1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Libertine e00005/Card Kegare e00001.yaml @@ -0,0 +1,53 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 342400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3424': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/Ck7btB4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"9183cd57-77f7-4187-bcfe-5659c0b773a2","type":"Treachery","traits":"Curse","weakness":true}' +GUID: e00001 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Kegare +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- PlayerCard +Tooltip: true +Transform: + posX: 5.52 + posY: 2.53 + posZ: -71.18 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Libertine e00005/Card Yamamura Isao e00002.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Libertine e00005/Card Yamamura Isao e00002.yaml new file mode 100644 index 000000000..79a44d274 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Libertine e00005/Card Yamamura Isao e00002.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 342500 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3425': + BackIsHidden: true + BackURL: https://i.imgur.com/dPE2a3T.jpg + FaceURL: https://i.imgur.com/OWcvdOT.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: The Libertine +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"e8d96a62-5490-47a1-b486-dc700f2685ff","type":"Investigator","class":"Seeker","traits":"Writer. + Cursed","agilityIcons":5,"fightIcons":2,"intellectIcons":4,"willpowerIcons":1}' +GUID: e00002 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Yamamura Isao +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Investigator +- PlayerCard +Tooltip: true +Transform: + posX: 3.23 + posY: 2.32 + posZ: -56.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Peacekeeper e00009.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Peacekeeper e00009.yaml new file mode 100644 index 000000000..93593c3aa --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Peacekeeper e00009.yaml @@ -0,0 +1,48 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.06142 + g: 0.06142 + r: 0.37108 +ContainedObjects: +- !include 'Bag The Peacekeeper e00009/Card Survivor''s Guilt 902f76.yaml' +- !include 'Bag The Peacekeeper e00009/Card Numbing Mist e00004.yaml' +- !include 'Bag The Peacekeeper e00009/Card Djura Myswiliec e00002.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e00009 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: The Peacekeeper +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.46 + posY: 3.18 + posZ: -42.89 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Peacekeeper e00009/Card Djura Myswiliec e00002.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Peacekeeper e00009/Card Djura Myswiliec e00002.yaml new file mode 100644 index 000000000..6de9dc666 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Peacekeeper e00009/Card Djura Myswiliec e00002.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 345700 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3457': + BackIsHidden: true + BackURL: https://i.imgur.com/nFx5Cyz.jpg + FaceURL: https://i.imgur.com/Dt2B3B6.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: The Peacekeeper +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"9645a450-c157-4e89-8992-1d8a29e5b18c","type":"Investigator","class":"Survivor","traits":"Veteran","agilityIcons":1,"fightIcons":4,"intellectIcons":4,"willpowerIcons":3}' +GUID: e00002 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Djura Myswiliec +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Investigator +- PlayerCard +Tooltip: true +Transform: + posX: -4.26 + posY: 2.52 + posZ: -40.3 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Peacekeeper e00009/Card Numbing Mist e00004.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Peacekeeper e00009/Card Numbing Mist e00004.yaml new file mode 100644 index 000000000..7504be366 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Peacekeeper e00009/Card Numbing Mist e00004.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 345400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3454': + BackIsHidden: true + BackURL: https://i.imgur.com/IEe9iRd.jpg + FaceURL: https://i.imgur.com/5irxNlP.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"3d505a78-56fc-48e0-9d34-95b09e66d76e","type":"Asset","class":"Survivor","traits":"Item. + Tool","agilityIcons":1,"intellectIcons":1,"wildIcons":1,"cost":2}' +GUID: e00004 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Numbing Mist +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Asset +- PlayerCard +Tooltip: true +Transform: + posX: -3.54 + posY: 2.52 + posZ: -41.39 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Peacekeeper e00009/Card Survivor's Guilt 902f76.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Peacekeeper e00009/Card Survivor's Guilt 902f76.yaml new file mode 100644 index 000000000..fc7af4034 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Peacekeeper e00009/Card Survivor's Guilt 902f76.yaml @@ -0,0 +1,53 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 345900 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3459': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/IOscadF.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"4bb2b67a-34ac-4cd1-90c5-f8b8c723ac52","type":"Treachery","traits":"Flaw","weakness":true}' +GUID: 902f76 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Survivor's Guilt +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- PlayerCard +Tooltip: true +Transform: + posX: -4.62 + posY: 2.52 + posZ: -39.82 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807.yaml new file mode 100644 index 000000000..c603c2603 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807.yaml @@ -0,0 +1,53 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.60453 + g: 0.29384 + r: 0.52368 +ContainedObjects: +- !include 'Bag The Physician and The Scientist fce807/CardCustom Cecily Jossef b786c2.yaml' +- !include 'Bag The Physician and The Scientist fce807/CardCustom Cecily Jossef 1f5f3b.yaml' +- !include 'Bag The Physician and The Scientist fce807/CardCustom Cecily Jossef 055f7d.yaml' +- !include 'Bag The Physician and The Scientist fce807/CardCustom Cecily Jossef 3f3f4c.yaml' +- !include 'Bag The Physician and The Scientist fce807/Card Dr. Jossef''s Clarified + Blood 89a933.yaml' +- !include 'Bag The Physician and The Scientist fce807/Card Alternating Self e00002.yaml' +- !include 'Bag The Physician and The Scientist fce807/Card Alternating Self e00001.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: fce807 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: The Physician and The Scientist +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.31 + posY: 3.18 + posZ: -46.76 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/Card Alternating Self e00001.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/Card Alternating Self e00001.yaml new file mode 100644 index 000000000..cad4a3a69 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/Card Alternating Self e00001.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 343500 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3435': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/YetgGo1.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"4110c818-948a-4745-8007-f0ea96a0e374","type":"Treachery","traits":"Madness. + Paradox","weakness":true}' +GUID: e00001 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Alternating Self +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- PlayerCard +Tooltip: true +Transform: + posX: 0.43 + posY: 3.57 + posZ: -30.59 + rotX: 1.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/Card Alternating Self e00002.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/Card Alternating Self e00002.yaml new file mode 100644 index 000000000..df236ea1b --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/Card Alternating Self e00002.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 343400 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3434': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/39VOfqm.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"eff7b75d-a31e-4504-949c-2f572f9c83f2","type":"Treachery","traits":"Madness. + Paradox","weakness":true}' +GUID: e00002 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Alternating Self +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- PlayerCard +Tooltip: true +Transform: + posX: 0.96 + posY: 3.57 + posZ: -30.71 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/Card Dr. Jossef's Clarified Blood 89a933.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/Card Dr. Jossef's Clarified Blood 89a933.yaml new file mode 100644 index 000000000..ce58b554e --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/Card Dr. Jossef's Clarified Blood 89a933.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 343100 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3431': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/hVYS3Gw.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Slowly and Carefully Refined +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"b2cb30e6-e9c4-4caf-8d6a-e3a26d88fad2","type":"Asset","class":"Neutral","traits":"Item. + Science. Occult","wildIcons":2,"cost":3}' +GUID: 89a933 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Dr. Jossef's Clarified Blood +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Asset +- PlayerCard +Tooltip: true +Transform: + posX: 1.23 + posY: 3.58 + posZ: -30.55 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/CardCustom Cecily Jossef 055f7d.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/CardCustom Cecily Jossef 055f7d.yaml new file mode 100644 index 000000000..77369996b --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/CardCustom Cecily Jossef 055f7d.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 343200 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3432': + BackIsHidden: true + BackURL: https://i.imgur.com/1RHaig3.png + FaceURL: https://i.imgur.com/yDHf7H2.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Scientist Front / Physician Back +DragSelectable: true +GMNotes: '' +GUID: 055f7d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: 'Cecily Jossef ' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.13 + posY: 3.58 + posZ: -30.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/CardCustom Cecily Jossef 1f5f3b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/CardCustom Cecily Jossef 1f5f3b.yaml new file mode 100644 index 000000000..39a6a3168 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/CardCustom Cecily Jossef 1f5f3b.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 343100 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3431': + BackIsHidden: true + BackURL: https://i.imgur.com/QBuIhTm.png + FaceURL: https://i.imgur.com/o5Illv6.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Physician Front / Scientist Back +DragSelectable: true +GMNotes: '' +GUID: 1f5f3b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: 'Cecily Jossef ' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.54 + posY: 3.57 + posZ: -31.12 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/CardCustom Cecily Jossef 3f3f4c.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/CardCustom Cecily Jossef 3f3f4c.yaml new file mode 100644 index 000000000..e6a50ec86 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/CardCustom Cecily Jossef 3f3f4c.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 343300 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3433': + BackIsHidden: true + BackURL: https://i.imgur.com/1RHaig3.png + FaceURL: https://i.imgur.com/o5Illv6.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Physician Front / Physician Back +DragSelectable: true +GMNotes: '' +GUID: 3f3f4c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: 'Cecily Jossef ' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.35 + posY: 3.58 + posZ: -30.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/CardCustom Cecily Jossef b786c2.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/CardCustom Cecily Jossef b786c2.yaml new file mode 100644 index 000000000..083aaf859 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Physician and The Scientist fce807/CardCustom Cecily Jossef b786c2.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 343000 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3430': + BackIsHidden: true + BackURL: https://i.imgur.com/QBuIhTm.png + FaceURL: https://i.imgur.com/yDHf7H2.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Scientist Front / Scientist Back +DragSelectable: true +GMNotes: '' +GUID: b786c2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: 'Cecily Jossef ' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.86 + posY: 3.58 + posZ: -30.29 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Seminarist b190c2.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Seminarist b190c2.yaml new file mode 100644 index 000000000..77463b462 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Seminarist b190c2.yaml @@ -0,0 +1,48 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.64983 + g: 0.21623 + r: 0.21784 +ContainedObjects: +- !include 'Bag The Seminarist b190c2/Card Murderous Urges e00003.yaml' +- !include 'Bag The Seminarist b190c2/Card Piety e00004.yaml' +- !include 'Bag The Seminarist b190c2/Card Alfred Wheeler e00001.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b190c2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: The Seminarist +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.52 + posY: 3.19 + posZ: -46.67 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Seminarist b190c2/Card Alfred Wheeler e00001.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Seminarist b190c2/Card Alfred Wheeler e00001.yaml new file mode 100644 index 000000000..10c9281a2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Seminarist b190c2/Card Alfred Wheeler e00001.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 346800 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3468': + BackIsHidden: true + BackURL: https://i.imgur.com/z2lN519.jpg + FaceURL: https://i.imgur.com/LwOiwfZ.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: The Seminarist +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"09d2b8d3-232e-4b82-8288-0bf8f5b36eba","type":"Investigator","class":"Guardian","traits":"Miskatonic. + Believer","agilityIcons":3,"fightIcons":4,"intellectIcons":4,"willpowerIcons":2}' +GUID: e00001 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Alfred Wheeler +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Investigator +- PlayerCard +Tooltip: true +Transform: + posX: 9.55 + posY: 2.52 + posZ: -56.47 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Seminarist b190c2/Card Murderous Urges e00003.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Seminarist b190c2/Card Murderous Urges e00003.yaml new file mode 100644 index 000000000..5db85ed08 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Seminarist b190c2/Card Murderous Urges e00003.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 347000 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3470': + BackIsHidden: true + BackURL: https://i.imgur.com/obU1bWI.jpg + FaceURL: https://i.imgur.com/Gn0Kx8Q.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: Alfred's Obsession +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"608d406e-eccf-4d03-9250-b0c0607b3052","type":"Asset","traits":"Madness","weakness":true,"level":0}' +GUID: e00003 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Murderous Urges +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Asset +- PlayerCard +Tooltip: true +Transform: + posX: 9.02 + posY: 2.52 + posZ: -59.17 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Seminarist b190c2/Card Piety e00004.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Seminarist b190c2/Card Piety e00004.yaml new file mode 100644 index 000000000..18351308e --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Seminarist b190c2/Card Piety e00004.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 347300 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3473': + BackIsHidden: true + BackURL: https://i.imgur.com/cdw0Ndq.jpg + FaceURL: https://i.imgur.com/HE8i1q2.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: Alfred's Faith +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"91eb28d8-35d3-4fd5-93cf-75f58a8d57cc","type":"Asset","class":"Neutral","traits":"Spirit","willpowerIcons":2,"cost":2}' +GUID: e00004 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Piety +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Asset +- PlayerCard +Tooltip: true +Transform: + posX: 2.46 + posY: 2.32 + posZ: -55.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Sophisticate 4bc4fe.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Sophisticate 4bc4fe.yaml new file mode 100644 index 000000000..d613ee7f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Sophisticate 4bc4fe.yaml @@ -0,0 +1,48 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.72648 + r: 0.08372 +ContainedObjects: +- !include 'Bag The Sophisticate 4bc4fe/Card Walter Garnett e00003.yaml' +- !include 'Bag The Sophisticate 4bc4fe/Card Vermin e00002.yaml' +- !include 'Bag The Sophisticate 4bc4fe/Card Master of the League e00001.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4bc4fe +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: The Sophisticate +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.27 + posY: 3.18 + posZ: -39.71 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Sophisticate 4bc4fe/Card Master of the League e00001.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Sophisticate 4bc4fe/Card Master of the League e00001.yaml new file mode 100644 index 000000000..93d9cc4ed --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Sophisticate 4bc4fe/Card Master of the League e00001.yaml @@ -0,0 +1,54 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 342000 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3420': + BackIsHidden: true + BackURL: https://i.imgur.com/VVnn0oL.jpg + FaceURL: https://i.imgur.com/GcwosBO.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"be74aee1-3ddd-4689-9f02-9daf6bbde704","type":"Asset","class":"Neutral","traits":"Connection","wildIcons":2,"cost":3}' +GUID: e00001 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Master of the League +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Asset +- PlayerCard +Tooltip: true +Transform: + posX: -0.62 + posY: 3.57 + posZ: -22.79 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Sophisticate 4bc4fe/Card Vermin e00002.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Sophisticate 4bc4fe/Card Vermin e00002.yaml new file mode 100644 index 000000000..bac6ef727 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Sophisticate 4bc4fe/Card Vermin e00002.yaml @@ -0,0 +1,53 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 341800 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3418': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/SJtXFfV.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"4c86fc6c-aa1a-4730-8706-830bc7c9b900","type":"Treachery","traits":"Curse","weakness":true}' +GUID: e00002 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Vermin +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- PlayerCard +Tooltip: true +Transform: + posX: -0.18 + posY: 3.58 + posZ: -23.18 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Sophisticate 4bc4fe/Card Walter Garnett e00003.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Sophisticate 4bc4fe/Card Walter Garnett e00003.yaml new file mode 100644 index 000000000..7ab26b6aa --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Campaign Rewards 99972a/Bag The Sophisticate 4bc4fe/Card Walter Garnett e00003.yaml @@ -0,0 +1,55 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 341900 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3419': + BackIsHidden: true + BackURL: https://i.imgur.com/vmb4niA.jpg + FaceURL: https://i.imgur.com/spas9Dn.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +Description: The Sophisticate +DragSelectable: true +GMNotes: '{"TtsZoopGuid":"dc65ccc5-cabe-4cac-8148-67611065f5df","type":"Investigator","class":"Rogue","traits":"Socialite. + Police","agilityIcons":3,"fightIcons":3,"intellectIcons":3,"willpowerIcons":3}' +GUID: e00003 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Walter Garnett +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- Investigator +- PlayerCard +Tooltip: true +Transform: + posX: -0.07 + posY: 3.58 + posZ: -23.0 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Delicate Keepsake e00008.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Delicate Keepsake e00008.yaml new file mode 100644 index 000000000..8f85aa3ed --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/Bag Delicate Keepsake e00008.yaml @@ -0,0 +1,431 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +Bag: + Order: 0 +ColorDiffuse: + b: 0.0 + g: 0.36652 + r: 0.70588 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + ContainedObjects: + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 355400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3554': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/kcKIur4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e1e762e0-6b45-4355-b0e3-a9ab997cf7f1","type":"Treachery","class":"Mythos","traits":"Blunder"}' + GUID: 9bd270 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Porcelain Heart + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -3.314 + posY: 1.495 + posZ: -43.397 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 355400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3554': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/kcKIur4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e1e762e0-6b45-4355-b0e3-a9ab997cf7f1","type":"Treachery","class":"Mythos","traits":"Blunder"}' + GUID: a29ef1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Porcelain Heart + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -3.329 + posY: 1.538 + posZ: -43.306 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 355400 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3554': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/kcKIur4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"e1e762e0-6b45-4355-b0e3-a9ab997cf7f1","type":"Treachery","class":"Mythos","traits":"Blunder"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Porcelain Heart + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -4.013 + posY: 1.572 + posZ: -42.934 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 355300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3553': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/CYcGDjE.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ad8f64de-1952-4d0e-a1ae-1afd2fc0e3e2","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: ffcb2d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Memento Mori + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -2.541 + posY: 1.58 + posZ: -43.752 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 355300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3553': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/CYcGDjE.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ad8f64de-1952-4d0e-a1ae-1afd2fc0e3e2","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: 7ed2e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Memento Mori + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -3.105 + posY: 1.59 + posZ: -42.975 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + - AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 355300 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3553': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/CYcGDjE.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"ad8f64de-1952-4d0e-a1ae-1afd2fc0e3e2","type":"Treachery","class":"Mythos","traits":"Power"}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Memento Mori + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -4.097 + posY: 1.6 + posZ: -42.933 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' + CustomDeck: + '3553': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/CYcGDjE.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '3554': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/kcKIur4.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + DeckIDs: + - 355400 + - 355400 + - 355400 + - 355300 + - 355300 + - 355300 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e4da4c + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Deck + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -3.294 + posY: 3.614 + posZ: -28.632 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e00008 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Delicate Keepsake +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69 + posY: 3.47 + posZ: 14.24 + rotX: 0.0 + rotY: 45.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/CardCustom c3ee62.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/CardCustom c3ee62.yaml new file mode 100644 index 000000000..f2b0e56db --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/CardCustom c3ee62.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 348100 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3481': + BackIsHidden: true + BackURL: https://i.imgur.com/IUAp4EA.png + FaceURL: https://i.imgur.com/VDAsGJS.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c3ee62 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69 + posY: 3.67 + posZ: 14.24 + rotX: 0.0 + rotY: 45.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/CardCustom Gehrman 4be5b4.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/CardCustom Gehrman 4be5b4.yaml new file mode 100644 index 000000000..b5daf95fe --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Custom_Model_Bag Set-aside ad0d44/CardCustom Gehrman 4be5b4.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +CardID: 339300 +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +CustomDeck: + '3393': + BackIsHidden: true + BackURL: https://i.imgur.com/zHDu7tE.png + FaceURL: https://i.imgur.com/ws1AdRS.png + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: The First Hunter +DragSelectable: true +GMNotes: '' +GUID: 4be5b4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: Gehrman +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.94 + posY: 2.32 + posZ: -52.06 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Deck c6de77.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Deck c6de77.yaml new file mode 100644 index 000000000..cebdbc1d5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Deck c6de77.yaml @@ -0,0 +1,232 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 +ContainedObjects: +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 351900 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3413': + BackIsHidden: true + BackURL: https://i.imgur.com/TVg1Eu9.jpg + FaceURL: https://i.imgur.com/yC6PRG8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"8213131d-67f1-4853-9588-57a575ab8f90","type":"Agenda","class":"Mythos","doomThreshold":6}' + GUID: e00001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dawn of Blood + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -2.725 + posY: 1.597 + posZ: 0.373 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 352000 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3414': + BackIsHidden: true + BackURL: https://i.imgur.com/gltFOAx.jpg + FaceURL: https://i.imgur.com/DC5bZF2.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"a5773457-6996-4308-8f5b-3a15f5f2279a","type":"Agenda","class":"Mythos","doomThreshold":18}' + GUID: e00003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Kingdom of the Great Ones + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -2.725 + posY: 1.701 + posZ: 0.373 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +- AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 + Autoraise: true + CardID: 352100 + ColorDiffuse: + b: 0.71324 + g: 0.71324 + r: 0.71324 + CustomDeck: + '3412': + BackIsHidden: true + BackURL: https://i.imgur.com/iNgcifq.jpg + FaceURL: https://i.imgur.com/7rb0EGC.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '{"TtsZoopGuid":"1b2abe00-23d7-47e7-8bc7-1bd85b91cfbe","type":"Agenda","class":"Mythos"}' + GUID: e00002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + LayoutGroupSortIndex: 0 + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Blue Hour + SidewaysCard: false + Snap: true + Sticky: true + Tags: + - ScenarioCard + Tooltip: true + Transform: + posX: -2.725 + posY: 1.676 + posZ: 0.373 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + Value: 0 + XmlUI: '' +CustomDeck: + '3519': + BackIsHidden: true + BackURL: https://i.imgur.com/TVg1Eu9.jpg + FaceURL: https://i.imgur.com/yC6PRG8.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3520': + BackIsHidden: true + BackURL: https://i.imgur.com/gltFOAx.jpg + FaceURL: https://i.imgur.com/DC5bZF2.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true + '3521': + BackIsHidden: true + BackURL: https://i.imgur.com/iNgcifq.jpg + FaceURL: https://i.imgur.com/7rb0EGC.jpg + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: true +DeckIDs: +- 351900 +- 352000 +- 352100 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c6de77 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tags: +- ScenarioCard +Tooltip: true +Transform: + posX: -2.73 + posY: 1.62 + posZ: 0.37 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Notecard Encounter Deck Setup fe1652.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Notecard Encounter Deck Setup fe1652.yaml new file mode 100644 index 000000000..2d50961c5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Notecard Encounter Deck Setup fe1652.yaml @@ -0,0 +1,43 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '1. Determine if you are playing the Arkham Sunrise or Blood Rapture + version of the scenario + + 2. Add the cards from the Hanged Man set corresponding to your deceased allies' +DragSelectable: true +GMNotes: '' +GUID: fe1652 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Notecard +Nickname: Encounter Deck Setup +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.08 + posY: 1.59 + posZ: 11.46 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Notecard Encounter Locations Setup 4fdb2c.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Notecard Encounter Locations Setup 4fdb2c.yaml new file mode 100644 index 000000000..034aa33d4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Model_Bag 8 Arkham Sunrise e5283d/Notecard Encounter Locations Setup 4fdb2c.yaml @@ -0,0 +1,42 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: 'Use Left Bag if you are playing the standard Arkham Sunrise scenario + + Use the Right Bag if you are playing the secret Blood Rapture scenario' +DragSelectable: true +GMNotes: '' +GUID: 4fdb2c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Notecard +Nickname: Encounter Locations Setup +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.59 + posZ: -11.51 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_PDF ee98ef.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_PDF ee98ef.yaml new file mode 100644 index 000000000..1c4b51a81 --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_PDF ee98ef.yaml @@ -0,0 +1,45 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomPDF: + PDFPage: 0 + PDFPageOffset: 0 + PDFPassword: '' + PDFUrl: http://cloud-3.steamusercontent.com/ugc/2051989444907893379/EC7182ED36C275141B43C291AE03A583EBD3D66D/ +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ee98ef +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_PDF +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -29.34 + posY: 3.64 + posZ: -86.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 5.46 + scaleY: 1.0 + scaleZ: 5.46 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Token Generic Campaign Log eda22b.ttslua b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Token Generic Campaign Log eda22b.ttslua new file mode 100644 index 000000000..0942cf0ac --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Token Generic Campaign Log eda22b.ttslua @@ -0,0 +1,509 @@ +--[[ Character Sheet Template by: MrStump + +You can set up your own character sheet if you follow these steps. + +Step 1) Change the character sheet image + -Right click on the character sheet, click Custom + -Replace the image URL with one for your character sheet + -Click import, make sure your sheet loads + -SAVE THE GAME (the table setup) + -LOAD FROM THAT SAVE YOU JUST MADE + +Step 2) Edit script to fit your character sheet + -Below you will see some general options, and then the big data table + -The data table is what determines how many of which buttons are made + -Checkboxes + -Counters + -Textboxes + -By default, there are 3 of each. You can add more or remove entries + -If you intend to add/remove, be sure only to add/remove ENTRIES + -This is what an entry looks like: + { + pos = {-0.977,0.1,-0.589}, + size = 800, + state = false + }, + -Deleting the whole thing would remove that specific item on the sheet + -Copy and pasting it after another entry would create another + -Each entry type has unique data points (pos, size, state, etc) + -Do not try to add in your own data points or remove them individually + -There is a summary of what each point does at the top of its category + +Step 3) Save and check script changes + -Hit Save & Apply in the script window to save your code + -You can edit your code as needed and Save+Apply as often as needed + -When you are finished, make disableSave = false below then Save+apply + -This enables saving, so your sheet will remember whats on it. + +Bonus) Finding/Editing Positions for elements + I have included a tool to get positions for buttons in {x,y,z} form + Place it where you want the center of your element to be + Then copy the table from the notes (lower right of screen) + You can highlight it and CTRL+C + Paste it into the data table where needed (pos=) + If you want to manually tweek the values: + {0,0,0} is the center of the character sheet + {1,0,0} is right, {-1,0,0} is left + {0,0,-1} is up, {0,0,1} is down + 0.1 for Y is the height off of the page. + If it was 0, it would be down inside the model of the sheet + +Begin editing below: ]] + +--Set this to true while editing and false when you have finished +disableSave = false +--Remember to set this to false once you are done making changes +--Then, after you save & apply it, save your game too + +--Color information for button text (r,g,b, values of 0-1) +buttonFontColor = {0,0,0} +--Color information for button background +buttonColor = {1,1,1} +--Change scale of button (Avoid changing if possible) +buttonScale = {0.1,0.1,0.1} + +--This is the button placement information +defaultButtonData = { + --Add checkboxes + checkbox = { + --[[ + pos = the position (pasted from the helper tool) + size = height/width/font_size for checkbox + state = default starting value for checkbox (true=checked, false=not) + ]] + --End of checkboxes + }, + --Add counters that have a + and - button + counter = { + --[[ + pos = the position (pasted from the helper tool) + size = height/width/font_size for counter + value = default starting value for counter + hideBG = if background of counter is hidden (true=hidden, false=not) + ]] + --1st Player Experience + { + pos = {-1.080,0.1,-1.010}, + size = 800, + value = 0, + hideBG = true + }, + --1st Player Physical Trauma + { + pos = {-1.270,0.1,-0.790}, + size = 600, + value = 0, + hideBG = true + }, + --1st Player Mental Trauma + { + pos = {-1.000,0.1,-0.790}, + size = 600, + value = 0, + hideBG = true + }, + --2nd Player Experience + { + pos = {-0.251,0.1,-1.010}, + size = 800, + value = 0, + hideBG = true + }, + --2nd Player Physical Trauma + { + pos = {-0.441,0.1,-0.790}, + size = 600, + value = 0, + hideBG = true + }, + --2nd Player Mental Trauma + { + pos = {-0.171,0.1,-0.790}, + size = 600, + value = 0, + hideBG = true + }, + --3rd Player Experience + { + pos = {0.579,0.1,-1.010}, + size = 800, + value = 0, + hideBG = true + }, + --3rd Player Physical Trauma + { + pos = {0.389,0.1,-0.790}, + size = 600, + value = 0, + hideBG = true + }, + --3rd Player Mental Trauma + { + pos = {0.659,0.1,-0.790}, + size = 600, + value = 0, + hideBG = true + }, + --4th Player Experience + { + pos = {1.407,0.1,-1.010}, + size = 800, + value = 0, + hideBG = true + }, + --4th Player Physical Trauma + { + pos = {1.217,0.1,-0.790}, + size = 600, + value = 0, + hideBG = true + }, + --4th Player Mental Trauma + { + pos = {1.487,0.1,-0.790}, + size = 600, + value = 0, + hideBG = true + }, + --End of counters + }, + --Add editable text boxes + textbox = { + --[[ + pos = the position (pasted from the helper tool) + rows = how many lines of text you want for this box + width = how wide the text box is + font_size = size of text. This and "rows" effect overall height + label = what is shown when there is no text. "" = nothing + value = text entered into box. "" = nothing + alignment = Number to indicate how you want text aligned + (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified) + ]] + --1st Player Name + { + pos = {-1.265,0.1,-1.390}, + rows = 1, + width = 3800, + font_size = 300, + label = "Empty", + value = "", + alignment = 2 + }, + --1st Player Investigator + { + pos = {-1.265,0.1,-1.195}, + rows = 1, + width = 3800, + font_size = 300, + label = "Empty", + value = "", + alignment = 2 + }, + --1st Player Story Assets/Weaknesses + { + pos = {-1.265,0.1,-0.420}, + rows = 7, + width = 3800, + font_size = 300, + label = "Empty", + value = "", + alignment = 2 + }, + --2nd Player Name + { + pos = {-0.436,0.1,-1.390}, + rows = 1, + width = 3800, + font_size = 300, + label = "Empty", + value = "", + alignment = 2 + }, + --2nd Player Investigator + { + pos = {-0.436,0.1,-1.195}, + rows = 1, + width = 3800, + font_size = 300, + label = "Empty", + value = "", + alignment = 2 + }, + --2nd Player Story Assets/Weaknesses + { + pos = {-0.436,0.1,-0.420}, + rows = 7, + width = 3800, + font_size = 300, + label = "Empty", + value = "", + alignment = 2 + }, + --3rd Player Name + { + pos = {0.394,0.1,-1.390}, + rows = 1, + width = 3800, + font_size = 300, + label = "Empty", + value = "", + alignment = 2 + }, + --3rd Player Investigator + { + pos = {0.394,0.1,-1.195}, + rows = 1, + width = 3800, + font_size = 300, + label = "Empty", + value = "", + alignment = 2 + }, + --3rd Player Story Assets/Weaknesses + { + pos = {0.394,0.1,-0.420}, + rows = 7, + width = 3800, + font_size = 300, + label = "Empty", + value = "", + alignment = 2 + }, + --4th Player Name + { + pos = {1.222,0.1,-1.390}, + rows = 1, + width = 3800, + font_size = 300, + label = "Empty", + value = "", + alignment = 2 + }, + --4th Player Investigator + { + pos = {1.222,0.1,-1.195}, + rows = 1, + width = 3800, + font_size = 300, + label = "Empty", + value = "", + alignment = 2 + }, + --4th Player Story Assets/Weaknesses + { + pos = {1.222,0.1,-0.420}, + rows = 7, + width = 3800, + font_size = 300, + label = "Empty", + value = "", + alignment = 2 + }, + --Campaign Notes 1 + { + pos = {-0.930,0.1,0.930}, + rows = 27, + width = 7800, + font_size = 300, + label = "Empty", + value = "", + alignment = 2 + }, + --Campaign Notes 2 + { + pos = {0.820,0.1,0.707}, + rows = 20, + width = 7800, + font_size = 300, + label = "Empty", + value = "", + alignment = 2 + }, + --Killed and Insane Investigators + { + pos = {1.010,0.1,1.700}, + rows = 5, + width = 7400, + font_size = 300, + label = "Empty", + value = "", + alignment = 2 + }, + --End of textboxes + } +} + + + +--Lua beyond this point, I recommend doing something more fun with your life + + + +--Save function +function updateSave() + saved_data = JSON.encode(ref_buttonData) + if disableSave==true then saved_data="" end + self.script_state = saved_data +end + +--Startup procedure +function onload(saved_data) + if disableSave==true then saved_data="" end + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + ref_buttonData = loaded_data + else + ref_buttonData = defaultButtonData + end + + spawnedButtonCount = 0 + createCheckbox() + createCounter() + createTextbox() +end + + + +--Click functions for buttons + + + +--Checks or unchecks the given box +function click_checkbox(tableIndex, buttonIndex) + if ref_buttonData.checkbox[tableIndex].state == true then + ref_buttonData.checkbox[tableIndex].state = false + self.editButton({index=buttonIndex, label=""}) + else + ref_buttonData.checkbox[tableIndex].state = true + self.editButton({index=buttonIndex, label=string.char(10008)}) + end + updateSave() +end + +--Applies value to given counter display +function click_counter(tableIndex, buttonIndex, amount) + ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount + self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value}) + updateSave() +end + +--Updates saved value for given text box +function click_textbox(i, value, selected) + if selected == false then + ref_buttonData.textbox[i].value = value + updateSave() + end +end + +--Dud function for if you have a background on a counter +function click_none() end + + + +--Button creation + + + +--Makes checkboxes +function createCheckbox() + for i, data in ipairs(ref_buttonData.checkbox) do + --Sets up reference function + local buttonNumber = spawnedButtonCount + local funcName = "checkbox"..i + local func = function() click_checkbox(i, buttonNumber) end + self.setVar(funcName, func) + --Sets up label + local label = "" + if data.state==true then label=string.char(10008) end + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=data.pos, height=data.size, width=data.size, + font_size=data.size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + end +end + +--Makes counters +function createCounter() + for i, data in ipairs(ref_buttonData.counter) do + --Sets up display + local displayNumber = spawnedButtonCount + --Sets up label + local label = data.value + --Sets height/width for display + local size = data.size + if data.hideBG == true then size = 0 end + --Creates button and counts it + self.createButton({ + label=label, click_function="click_none", function_owner=self, + position=data.pos, height=size, width=size, + font_size=data.size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + + --Sets up add 1 + local funcName = "counterAdd"..i + local func = function() click_counter(i, displayNumber, 1) end + self.setVar(funcName, func) + --Sets up label + local label = "+" + --Sets up position + local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002) + local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]} + --Sets up size + local size = data.size / 2 + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=pos, height=size, width=size, + font_size=size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + + --Sets up subtract 1 + local funcName = "counterSub"..i + local func = function() click_counter(i, displayNumber, -1) end + self.setVar(funcName, func) + --Sets up label + local label = "-" + --Set up position + local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]} + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=pos, height=size, width=size, + font_size=size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + end +end + +function createTextbox() + for i, data in ipairs(ref_buttonData.textbox) do + --Sets up reference function + local funcName = "textbox"..i + local func = function(_,_,val,sel) click_textbox(i,val,sel) end + self.setVar(funcName, func) + + self.createInput({ + input_function = funcName, + function_owner = self, + label = data.label, + alignment = data.alignment, + position = data.pos, + scale = buttonScale, + width = data.width, + height = (data.font_size*data.rows)+24, + font_size = data.font_size, + color = buttonColor, + font_color = buttonFontColor, + value = data.value, + }) + end +end diff --git a/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Token Generic Campaign Log eda22b.yaml b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Token Generic Campaign Log eda22b.yaml new file mode 100644 index 000000000..816a072ca --- /dev/null +++ b/unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b/Custom_Token Generic Campaign Log eda22b.yaml @@ -0,0 +1,51 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + StandUp: false + Thickness: 0.2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/1461933996971313209/41F80D2AA21C2C7CFBA74D3F7025C987637BCC16/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: eda22b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Token Generic Campaign Log eda22b.ttslua' +LuaScriptState: '{"checkbox":[],"counter":[{"hideBG":true,"pos":[-1.08,0.1,-1.01],"size":800,"value":0},{"hideBG":true,"pos":[-1.27,0.1,-0.79],"size":600,"value":0},{"hideBG":true,"pos":[-1,0.1,-0.79],"size":600,"value":0},{"hideBG":true,"pos":[-0.251,0.1,-1.01],"size":800,"value":0},{"hideBG":true,"pos":[-0.441,0.1,-0.79],"size":600,"value":0},{"hideBG":true,"pos":[-0.171,0.1,-0.79],"size":600,"value":0},{"hideBG":true,"pos":[0.579,0.1,-1.01],"size":800,"value":0},{"hideBG":true,"pos":[0.389,0.1,-0.79],"size":600,"value":0},{"hideBG":true,"pos":[0.659,0.1,-0.79],"size":600,"value":0},{"hideBG":true,"pos":[1.407,0.1,-1.01],"size":800,"value":0},{"hideBG":true,"pos":[1.217,0.1,-0.79],"size":600,"value":0},{"hideBG":true,"pos":[1.487,0.1,-0.79],"size":600,"value":0}],"textbox":[{"alignment":2,"font_size":300,"label":"Empty","pos":[-1.265,0.1,-1.39],"rows":1,"value":"","width":3800},{"alignment":2,"font_size":300,"label":"Empty","pos":[-1.265,0.1,-1.195],"rows":1,"value":"","width":3800},{"alignment":2,"font_size":300,"label":"Empty","pos":[-1.265,0.1,-0.42],"rows":7,"value":"","width":3800},{"alignment":2,"font_size":300,"label":"Empty","pos":[-0.436,0.1,-1.39],"rows":1,"value":"","width":3800},{"alignment":2,"font_size":300,"label":"Empty","pos":[-0.436,0.1,-1.195],"rows":1,"value":"","width":3800},{"alignment":2,"font_size":300,"label":"Empty","pos":[-0.436,0.1,-0.42],"rows":7,"value":"","width":3800},{"alignment":2,"font_size":300,"label":"Empty","pos":[0.394,0.1,-1.39],"rows":1,"value":"","width":3800},{"alignment":2,"font_size":300,"label":"Empty","pos":[0.394,0.1,-1.195],"rows":1,"value":"","width":3800},{"alignment":2,"font_size":300,"label":"Empty","pos":[0.394,0.1,-0.42],"rows":7,"value":"","width":3800},{"alignment":2,"font_size":300,"label":"Empty","pos":[1.222,0.1,-1.39],"rows":1,"value":"","width":3800},{"alignment":2,"font_size":300,"label":"Empty","pos":[1.222,0.1,-1.195],"rows":1,"value":"","width":3800},{"alignment":2,"font_size":300,"label":"Empty","pos":[1.222,0.1,-0.42],"rows":7,"value":"","width":3800},{"alignment":2,"font_size":300,"label":"Empty","pos":[-0.93,0.1,0.93],"rows":27,"value":"","width":7800},{"alignment":2,"font_size":300,"label":"Empty","pos":[0.82,0.1,0.707],"rows":20,"value":" INSIGHT + DISPLAY\n\n\n \n\n\n ___________ _____________ ______________","width":7800},{"alignment":2,"font_size":300,"label":"Empty","pos":[1.01,0.1,1.7],"rows":5,"value":"","width":7400}]}' +MeasureMovement: false +Name: Custom_Token +Nickname: Generic Campaign Log +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 35.24 + posY: 1.58 + posZ: -14.4 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 5.19 + scaleY: 1.0 + scaleZ: 5.19 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079.yaml index b4c21f269..16e7aed57 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile -2 540149.yaml' - !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile 0 b8dc75.yaml' @@ -31,13 +31,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/959719855127933035/B199A5F515A8F3ED7E06780D3723285C02ADE085/ MaterialIndex: 3 MeshURL: http://cloud-3.steamusercontent.com/ugc/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/ @@ -54,7 +54,7 @@ HideWhenFaceDown: false IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false -LuaScript: !include 'Custom_Model_Bag Chaos Bag fea079.ttslua' +LuaScript: '' LuaScriptState: '' MaterialIndex: -1 MeasureMovement: false @@ -70,11 +70,11 @@ Transform: posX: 1.6 posY: 1.59 posZ: -13.75 - rotX: 0 - rotY: 315 - rotZ: 0 - scaleX: 3 - scaleY: 3 - scaleZ: 3 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 3.0 + scaleY: 3.0 + scaleZ: 3.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile +1 6e0c0d.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile +1 6e0c0d.yaml index 624616f07..93e2aa1de 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile +1 6e0c0d.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile +1 6e0c0d.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/uIx8jbY.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,14 +37,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0 + posX: 0.0 posY: 8.71 - posZ: 0 - rotX: 0 - rotY: 315 - rotZ: 0 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 15e190.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 15e190.yaml index 7f1c3e915..8c0b01c1a 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 15e190.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 15e190.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/w3XbrCC.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,14 +37,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0 + posX: 0.0 posY: 8.71 - posZ: 0 - rotX: 0 - rotY: 315 - rotZ: 0 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 6633aa.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 6633aa.yaml index b2977915e..3cd7e036c 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 6633aa.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 6633aa.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/w3XbrCC.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,14 +37,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0 + posX: 0.0 posY: 8.71 - posZ: 0 - rotX: 0 - rotY: 315 - rotZ: 0 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 b08198.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 b08198.yaml index d879de5a8..4d61b1743 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 b08198.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 b08198.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/w3XbrCC.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,14 +37,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0 + posX: 0.0 posY: 8.71 - posZ: 0 - rotX: 0 - rotY: 315 - rotZ: 0 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -2 540149.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -2 540149.yaml index 9e5bd039e..42723c2b3 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -2 540149.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -2 540149.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/bfTg2hb.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,14 +37,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0 + posX: 0.0 posY: 4.62 - posZ: 0 - rotX: 0 - rotY: 315 - rotZ: 0 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -2 e30eb1.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -2 e30eb1.yaml index b768f1911..a318b33e2 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -2 e30eb1.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -2 e30eb1.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/bfTg2hb.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,14 +37,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0 + posX: 0.0 posY: 6.26 - posZ: 0 - rotX: 0 - rotY: 315 - rotZ: 0 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -3 6f16f0.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -3 6f16f0.yaml index 7ef6721d9..5ae035c4c 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -3 6f16f0.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -3 6f16f0.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/yfs8gHq.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,14 +37,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0 + posX: 0.0 posY: 8.71 - posZ: 0 - rotX: 0 - rotY: 315 - rotZ: 0 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -4 8e06b9.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -4 8e06b9.yaml index 78fa46665..61be19537 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -4 8e06b9.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -4 8e06b9.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/qrgGQRD.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,14 +37,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0 + posX: 0.0 posY: 8.71 - posZ: 0 - rotX: 0 - rotY: 315 - rotZ: 0 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 0 90356c.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 0 90356c.yaml index e320b3875..f80788aa8 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 0 90356c.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 0 90356c.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/btEtVfd.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,14 +37,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0 + posX: 0.0 posY: 8.71 - posZ: 0 - rotX: 0 - rotY: 315 - rotZ: 0 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 0 b8dc75.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 0 b8dc75.yaml index 8c08978a5..1150dd3d1 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 0 b8dc75.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 0 b8dc75.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/btEtVfd.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,14 +37,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0 + posX: 0.0 posY: 8.71 - posZ: 0 - rotX: 0 - rotY: 315 - rotZ: 0 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Auto-fail 17e7c4.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Auto-fail 17e7c4.yaml index c10248cc1..cdf5015f6 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Auto-fail 17e7c4.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Auto-fail 17e7c4.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/lns4fhz.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,14 +37,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0 + posX: 0.0 posY: 7.89 - posZ: 0 - rotX: 0 - rotY: 315 - rotZ: 0 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Cultist 370e96.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Cultist 370e96.yaml index d639b2271..dbcbda9ce 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Cultist 370e96.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Cultist 370e96.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/VzhJJaH.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,14 +37,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0 + posX: 0.0 posY: 8.71 - posZ: 0 - rotX: 0 - rotY: 315 - rotZ: 0 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Elder Sign 957602.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Elder Sign 957602.yaml index 1b203a9bd..91e101465 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Elder Sign 957602.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Elder Sign 957602.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/nEmqjmj.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,14 +37,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0 + posX: 0.0 posY: 8.71 - posZ: 0 - rotX: 0 - rotY: 315 - rotZ: 0 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Skull 238252.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Skull 238252.yaml index 0a189d025..ddc8f1692 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Skull 238252.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Skull 238252.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/stbBxtx.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,14 +37,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0 + posX: 0.0 posY: 7.08 - posZ: 0 - rotX: 0 - rotY: 315 - rotZ: 0 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Skull 25f01b.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Skull 25f01b.yaml index 9aac34785..886f886f1 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Skull 25f01b.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Skull 25f01b.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/stbBxtx.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,14 +37,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0 + posX: 0.0 posY: 5.44 - posZ: 0 - rotX: 0 - rotY: 315 - rotZ: 0 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Tablet 6ca146.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Tablet 6ca146.yaml index e1e6ccacd..197bb2692 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Tablet 6ca146.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Tablet 6ca146.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/1plY463.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,14 +37,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0 + posX: 0.0 posY: 8.71 - posZ: 0 - rotX: 0 - rotY: 315 - rotZ: 0 + posZ: 0.0 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418.yaml index 80bf1c103..e0c269429 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418.yaml @@ -1,20 +1,20 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Frost b2b7be.yaml' - !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Curse 16a9a7.yaml' - !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Bless 8e3aab.yaml' - !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Elder Sign 0b1aca.yaml' -- !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Auto-Fail e31821.yaml' +- !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Auto-fail e31821.yaml' - !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Elder Thing 38609c.yaml' - !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Tablet 1a1506.yaml' - !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Cultist 7d6103.yaml' @@ -34,13 +34,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/959719855127875098/FDA724CE3F0F9C62A141C0B33CAB238C40EDEE32/ MaterialIndex: 3 MeshURL: http://cloud-3.steamusercontent.com/ugc/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/ @@ -71,11 +71,11 @@ Transform: posX: -65.09 posY: 1.5 posZ: -78.53 - rotX: 0 - rotY: 315 - rotZ: 0 - scaleX: 3 - scaleY: 3 - scaleZ: 3 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 + scaleX: 3.0 + scaleY: 3.0 + scaleZ: 3.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile +1 a15273.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile +1 a15273.yaml index 8291e4a9e..d7e6f23df 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile +1 a15273.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile +1 a15273.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/uIx8jbY.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: 28.5 posY: 8.45 posZ: -28.95 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -1 b644d2.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -1 b644d2.yaml index 466d2b547..45f7ef4a9 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -1 b644d2.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -1 b644d2.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/w3XbrCC.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: 28.79 posY: 5.22 posZ: -31.25 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -2 8af600.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -2 8af600.yaml index 4122ff100..a7b1b585e 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -2 8af600.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -2 8af600.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/bfTg2hb.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: 29.18 posY: 5.22 posZ: -31.92 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -3 a7a9cb.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -3 a7a9cb.yaml index 685ae016a..022df5613 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -3 a7a9cb.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -3 a7a9cb.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/yfs8gHq.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: 26.46 posY: 3.44 posZ: -28.09 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -4 984eec.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -4 984eec.yaml index e109ade6a..ed9f820ad 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -4 984eec.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -4 984eec.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/qrgGQRD.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: 26.4 posY: 3.44 posZ: -28.85 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -5 1df0a5.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -5 1df0a5.yaml index 194e054b9..e196b3db9 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -5 1df0a5.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -5 1df0a5.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/3Ym1IeG.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: 26.24 posY: 3.44 posZ: -29.09 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -6 2460df.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -6 2460df.yaml index 66b5b36e4..5c5101453 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -6 2460df.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -6 2460df.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/c9qdSzS.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: 26.3 posY: 3.44 posZ: -30.5 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -7 81a1d7.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -7 81a1d7.yaml index 734d7e199..d6c254487 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -7 81a1d7.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -7 81a1d7.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/4WRD42n.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: 25.13 posY: 3.45 posZ: -27.69 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -8 298b5f.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -8 298b5f.yaml index 9cc2d265c..a118a402b 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -8 298b5f.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -8 298b5f.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/9t3rPTQ.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: 25.12 posY: 3.45 posZ: -28.34 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 0 0a8592.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 0 0a8592.yaml index 89599a295..eb48ed9b9 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 0 0a8592.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 0 0a8592.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/btEtVfd.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: 28.78 posY: 8.49 posZ: -28.69 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Auto-Fail e31821.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Auto-fail e31821.yaml similarity index 78% rename from unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Auto-Fail e31821.yaml rename to unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Auto-fail e31821.yaml index 5dcb1b092..93e5f2093 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Auto-Fail e31821.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Auto-fail e31821.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/lns4fhz.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,7 +32,7 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: Custom_Tile -Nickname: Auto-Fail +Nickname: Auto-fail Snap: true Sticky: true Tooltip: true @@ -40,11 +40,11 @@ Transform: posX: 23.65 posY: 3.45 posZ: -29.38 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Bless 8e3aab.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Bless 8e3aab.yaml index 9f75afaa6..f4baea041 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Bless 8e3aab.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Bless 8e3aab.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.04894 @@ -13,10 +13,10 @@ CustomImage: Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: 22.55 posY: 3.45 posZ: -27.08 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Cultist 7d6103.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Cultist 7d6103.yaml index 5ad3ba14c..25f1d4ea2 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Cultist 7d6103.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Cultist 7d6103.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/VzhJJaH.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: 25.4 posY: 3.44 posZ: -29.87 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Curse 16a9a7.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Curse 16a9a7.yaml index 254614277..2ad70b9af 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Curse 16a9a7.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Curse 16a9a7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.44425 @@ -13,10 +13,10 @@ CustomImage: Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: 22.65 posY: 3.45 posZ: -27.77 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Elder Sign 0b1aca.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Elder Sign 0b1aca.yaml index bab72635d..e6c9a773b 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Elder Sign 0b1aca.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Elder Sign 0b1aca.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/nEmqjmj.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: 23.83 posY: 3.45 posZ: -30.13 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Elder Thing 38609c.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Elder Thing 38609c.yaml index f1ba316c3..48f99a416 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Elder Thing 38609c.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Elder Thing 38609c.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/ttnspKt.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: 23.82 posY: 3.45 posZ: -28.11 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Frost b2b7be.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Frost b2b7be.yaml index c6ce24cb2..4f33545bc 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Frost b2b7be.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Frost b2b7be.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.04894 @@ -13,10 +13,10 @@ CustomImage: Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1858293462583104677/195F93C063A8881B805CE2FD4767A9718B27B6AE/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: -19.35 posY: 2.41 posZ: -75.74 - rotX: 0 - rotY: 270 - rotZ: 180 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Skull cc8bbb.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Skull cc8bbb.yaml index 7193fe3a2..ab36e57db 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Skull cc8bbb.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Skull cc8bbb.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/stbBxtx.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: 24.81 posY: 3.45 posZ: -29.04 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Tablet 1a1506.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Tablet 1a1506.yaml index fee6ba872..5893d2054 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Tablet 1a1506.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Tablet 1a1506.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/1plY463.png - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: 23.72 posY: 3.45 posZ: -26.78 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7.yaml index 1940ffea8..86fb57366 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - !include 'Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Weird West Custom Investigators 58ddca.yaml' @@ -69,13 +69,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1597044073919513962/49846EAC1BFF6C62218A7933D1754ED37F4C72C8/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj @@ -103,12 +103,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 60 + posX: 60.0 posY: 1.48 - posZ: 89 - rotX: 0 - rotY: 270 - rotZ: 0 + posZ: 89.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.75 scaleY: 0.1 scaleZ: 0.75 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Aespa Investigators ec74df.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Aespa Investigators ec74df.yaml index 2ecdc8b7e..ba686e39d 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Aespa Investigators ec74df.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Aespa Investigators ec74df.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1862816781492027399/65707471C1DAF2E107F9ACDD28B5D65FDABBCE79/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: -19.77 posY: 1.92 posZ: -106.22 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Artifact Expansion 1.3 2f8332.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Artifact Expansion 1.3 2f8332.yaml index 528f50be9..8b7891eb7 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Artifact Expansion 1.3 2f8332.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Artifact Expansion 1.3 2f8332.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1799728983834465397/5B8C8FFC332DCC1F09FEA1617F0F3446F06821DB/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: -34.31 posY: 2.0 posZ: -85.69 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Battle Goes On dd90c5.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Battle Goes On dd90c5.yaml index a12b68b76..ea48ba017 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Battle Goes On dd90c5.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Battle Goes On dd90c5.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,18 +11,18 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' @@ -33,8 +33,8 @@ CustomMesh: b: 0.735294163 g: 0.735294163 r: 0.735294163 - SpecularIntensity: 5 - SpecularSharpness: 8 + SpecularIntensity: 5.0 + SpecularSharpness: 8.0 DiffuseURL: https://i.imgur.com/F4W3qLq.jpg MaterialIndex: 2 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: 18.95 posY: 1.92 posZ: -135.81 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.18 scaleY: 0.45 scaleZ: 2.38 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Cartoon Investigators 524fbc.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Cartoon Investigators 524fbc.yaml index 81e5b74be..1925928a2 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Cartoon Investigators 524fbc.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Cartoon Investigators 524fbc.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1785092789057549667/7230A58735443DF70B24F5BAFD93B4FBBC1B28D7/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj @@ -48,9 +48,9 @@ Transform: posX: -23.61 posY: 1.92 posZ: -135.63 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.5 scaleY: 0.14 scaleZ: 0.5 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Dead Space Investigators 880860.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Dead Space Investigators 880860.yaml index a86a1b3b4..8a309c691 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Dead Space Investigators 880860.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Dead Space Investigators 880860.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1898848485543773146/5255CF70ED228D9C98E4C9F4F010577A77B5C46E/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: 19.67 posY: 2.25 posZ: -97.9 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Delta Green Convergence Custom Investigators 84be1d.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Delta Green Convergence Custom Investigators 84be1d.yaml index 9ce2e9ec9..081c1a95e 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Delta Green Convergence Custom Investigators 84be1d.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Delta Green Convergence Custom Investigators 84be1d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142900469/BDA1068C5A88459AE805540FE05B8092C4F8F392/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: -33.85 posY: 2.0 posZ: -87.57 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.36 scaleY: 0.28 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Don't Starve Investigators 2e69d0.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Don't Starve Investigators 2e69d0.yaml index a487a1d10..5f34f461f 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Don't Starve Investigators 2e69d0.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Don't Starve Investigators 2e69d0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1646593716898209387/B827263B809A6C8E1042BDF1C8D33E58458C2EF4/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: -20.94 posY: 1.98 posZ: 81.01 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.36 scaleY: 0.28 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Elspeth Baudin Custom Investigator 84c153.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Elspeth Baudin Custom Investigator 84c153.yaml index af38f4028..4af150d3b 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Elspeth Baudin Custom Investigator 84c153.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Elspeth Baudin Custom Investigator 84c153.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1655599785039299268/52DB5C3A0E600D6AECB0B851ECF90C5B3D016421/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: -20.94 posY: 1.96 posZ: 81.01 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.36 scaleY: 0.28 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.yaml index fa51a9177..ec3a8090e 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1746802526940892011/A775E42F9014CD75B091D7D060012681E58B906E/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -48,9 +48,9 @@ Transform: posX: -20.94 posY: 1.98 posZ: 81.01 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Gender Swapped Investigators 33272e.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Gender Swapped Investigators 33272e.yaml index 614f8ac12..7e75a9403 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Gender Swapped Investigators 33272e.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Gender Swapped Investigators 33272e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1597044073919531303/A7A92208CADC509C2546E65242ADDC8EF88FEAB8/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: -20.94 posY: 1.98 posZ: 81.01 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.36 scaleY: 0.28 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Idol Thoughts Custom Investigators 991ff9.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Idol Thoughts Custom Investigators 991ff9.yaml index 04286431d..8b47bb158 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Idol Thoughts Custom Investigators 991ff9.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Idol Thoughts Custom Investigators 991ff9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1011563111884720834/103D38A8FBBFA64EB66439667F8775B15FC679C9/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: -21.84 posY: 1.97 posZ: 81.64 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.36 scaleY: 0.28 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Kaimonogatari Player cards 64ad17.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Kaimonogatari Player cards 64ad17.yaml index f7dcc1a51..201b33ea8 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Kaimonogatari Player cards 64ad17.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Kaimonogatari Player cards 64ad17.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1644335793265681039/FD6A85925D62077C37F89B6AD082D15D90244D13/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: -34.69 posY: 2.83 posZ: -108.22 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Lola Hayes Rework 197f36.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Lola Hayes Rework 197f36.yaml index 8852287b5..52b3bbebd 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Lola Hayes Rework 197f36.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Lola Hayes Rework 197f36.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,9 +11,9 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 @@ -27,13 +27,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1754686449895663371/D5D8A1205E220C2ED2D0CA50705FBADE82C053BF/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -62,9 +62,9 @@ Transform: posX: -33.93 posY: 1.97 posZ: -99.81 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Magical Girl Arkham Project 814e2a.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Magical Girl Arkham Project 814e2a.yaml index 3283be520..8351cffe0 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Magical Girl Arkham Project 814e2a.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Magical Girl Arkham Project 814e2a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1903353113607751170/B835836D4DB21CA06206BF84EEAAD6B3E6C157CB/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: -57.86 posY: 2.38 posZ: -72.02 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Mass Effect Investigators b82c6f.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Mass Effect Investigators b82c6f.yaml index fbfa99101..0b17d4ed3 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Mass Effect Investigators b82c6f.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Mass Effect Investigators b82c6f.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1667985852037525429/FFCBAFD8EF7EFD1127F4482DF01FFD8AE9638B4D/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: -20.94 posY: 1.96 posZ: 81.01 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.36 scaleY: 0.28 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Maximillion Pegasus Custom Investigator 4608c8.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Maximillion Pegasus Custom Investigator 4608c8.yaml index 7a828b9d1..3151da4c8 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Maximillion Pegasus Custom Investigator 4608c8.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Maximillion Pegasus Custom Investigator 4608c8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1684870715280907223/1E9DE758F089D7F880ADC8CA594F9AA938743F8B/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: -20.94 posY: 1.96 posZ: 81.01 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.36 scaleY: 0.28 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Nightmare Pack - EN e32a71.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Nightmare Pack - EN e32a71.yaml index 0b74996c2..e0b7e380d 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Nightmare Pack - EN e32a71.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Nightmare Pack - EN e32a71.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,18 +11,18 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' @@ -34,7 +34,7 @@ CustomMesh: g: 0.735294163 r: 0.735294163 SpecularIntensity: 0.3 - SpecularSharpness: 8 + SpecularSharpness: 8.0 DiffuseURL: https://i.imgur.com/ftafgpa.pnghttps://i.imgur.com/ftafgpa.png MaterialIndex: 2 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: -45.87 posY: 1.97 posZ: -114.77 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.4 scaleY: 0.29 scaleZ: 1.53 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Pokemon Eldritch Edition Custom Investigators 1fb7ce.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Pokemon Eldritch Edition Custom Investigators 1fb7ce.yaml index 85a695434..9b7058ea1 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Pokemon Eldritch Edition Custom Investigators 1fb7ce.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Pokemon Eldritch Edition Custom Investigators 1fb7ce.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1597043896926982160/40A0068DAB05395205E184765110430CAADDA2CF/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: -20.94 posY: 1.96 posZ: 81.01 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.36 scaleY: 0.28 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Rabbit Hole Expansion b7ff06.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Rabbit Hole Expansion b7ff06.yaml index 2494a85bd..d9139319b 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Rabbit Hole Expansion b7ff06.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Rabbit Hole Expansion b7ff06.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1862800022614300553/046FEA88FB8D4DB6BE0AC9898149058EF32BFD0A/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: -44.31 posY: 1.97 posZ: -114.79 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Signature Replacements b06fd9.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Signature Replacements b06fd9.yaml index 12b0922cd..69ab3da6c 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Signature Replacements b06fd9.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Signature Replacements b06fd9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,9 +11,9 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 @@ -27,13 +27,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1754686449895581106/83D855A76FC7568415189A03882317685F6B55EE/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -62,9 +62,9 @@ Transform: posX: -44.34 posY: 1.97 posZ: -111.05 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Strange Aeons Custom Investigators d78bd2.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Strange Aeons Custom Investigators d78bd2.yaml index cb6e2a104..e9eddd5d2 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Strange Aeons Custom Investigators d78bd2.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Strange Aeons Custom Investigators d78bd2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142947772/120E2BA8DF8C4E2AAC9E059FA046CC3A6229ECDF/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: -17.43 posY: 2.83 posZ: -101.73 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.36 scaleY: 0.28 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Streets of New Capenna 48b4ca.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Streets of New Capenna 48b4ca.yaml index acf9f1526..625b2cb94 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Streets of New Capenna 48b4ca.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Streets of New Capenna 48b4ca.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1853807409892957080/8BAF356ADEADE6CF377438200268899C64FA420E/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: -24.82 posY: 2.36 posZ: -62.97 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Bad Batch 0a1d16.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Bad Batch 0a1d16.yaml index 486af8240..74c45a46f 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Bad Batch 0a1d16.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Bad Batch 0a1d16.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 @@ -35,13 +35,13 @@ Name: Custom_Model Nickname: The Bad Batch PhysicsMaterial: BounceCombine: 0 - Bounciness: 0 + Bounciness: 0.0 DynamicFriction: 0.6 FrictionCombine: 0 StaticFriction: 0.6 Rigidbody: - AngularDrag: 5 - Drag: 5 + AngularDrag: 5.0 + Drag: 5.0 Mass: 1.375 UseGravity: true Snap: true @@ -51,11 +51,11 @@ Transform: posX: -22.82 posY: 2.23 posZ: -97.68 - rotX: 0 - rotY: 90 - rotZ: 0 - scaleX: 2 - scaleY: 2 - scaleZ: 2 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Ghosts Of Onigawa (Investigator Expansion) c19cfa.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Ghosts Of Onigawa (Investigator Expansion) c19cfa.yaml index c39b1b8f0..6d6d2e369 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Ghosts Of Onigawa (Investigator Expansion) c19cfa.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Ghosts Of Onigawa (Investigator Expansion) c19cfa.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://dl.airtable.com/.attachmentThumbnails/e9dd0f33f26dcf0a628d962e0806de04/b41b19e1 MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj @@ -48,9 +48,9 @@ Transform: posX: -47.19 posY: 2.83 posZ: -121.34 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.96 scaleY: 0.27 scaleZ: 0.96 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Shadows of Arkham Player Cards 2e5eef.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Shadows of Arkham Player Cards 2e5eef.yaml index 51934aca2..82c1ac4d3 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Shadows of Arkham Player Cards 2e5eef.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Shadows of Arkham Player Cards 2e5eef.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1697282751257289223/D03666A291CC5705A3656865488583FF4AB762B4/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: -17.12 posY: 3.27 posZ: -93.32 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Touhou Project Investigators c5c294.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Touhou Project Investigators c5c294.yaml index 23d5cba66..23d7c0527 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Touhou Project Investigators c5c294.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Touhou Project Investigators c5c294.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1697277697641042816/D60194A8F22DA3032E6C2AC2EE040E6321A2B259/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: -35.72 posY: 1.97 posZ: -126.28 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.75 scaleY: 0.37 scaleZ: 1.92 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Weird West Custom Investigators 58ddca.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Weird West Custom Investigators 58ddca.yaml index 34ccf5f66..a014aa793 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Weird West Custom Investigators 58ddca.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Weird West Custom Investigators 58ddca.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1697276706767572704/331469F5EAD01108E83C7662B9949F4AC3D00313/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -63,9 +63,9 @@ Transform: posX: -20.94 posY: 2.01 posZ: 81.01 - rotX: 359 - rotY: 270 - rotZ: 0 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.36 scaleY: 0.28 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Curse tokens bd0253.yaml b/unpacked/Custom_Model_Bag Curse tokens bd0253.yaml index 38e83f28c..fa7bb9488 100644 --- a/unpacked/Custom_Model_Bag Curse tokens bd0253.yaml +++ b/unpacked/Custom_Model_Bag Curse tokens bd0253.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - !include 'Custom_Model_Bag Curse tokens bd0253/Custom_Tile Curse 678891.yaml' - !include 'Custom_Model_Bag Curse tokens bd0253/Custom_Tile Curse 678891.yaml' @@ -25,13 +25,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1655601092778633181/7A00AF905BCD6EB5D866F2107CECBC0A49E360F7/ MaterialIndex: 3 MeshURL: https://pastebin.com/raw/ALrYhQGb diff --git a/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile Curse 678891.yaml b/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile Curse 678891.yaml index 752aa8e14..1bdff9c61 100644 --- a/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile Curse 678891.yaml +++ b/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile Curse 678891.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.44425 @@ -13,10 +13,10 @@ CustomImage: Stretch: true Thickness: 0.1 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: http://cloud-3.steamusercontent.com/ugc/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: -46.21 posY: 1.79 posZ: -3.48 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.81 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38.yaml index 0030024b7..5e28b92f5 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38.yaml @@ -1,46 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 + b: 1.0 g: 0.99216 - r: 1 + r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Chaos Bag Manager - 023240.yaml' -- !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Token Arranger - 022907.yaml' -- !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign - Guides e87ea2.yaml' -- !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Infinite_Bag Attachment Helper - 7f4976.yaml' - !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e.yaml' -- !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann''s Navigation - Overlay a8affa.yaml' -- !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_red Draw Token Button - Tooltip Renamer cc77a8.yaml' -- !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical''s Generic - Difficulty Selector 05efb4.yaml' -- !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Search Assistant - 17aed0.yaml' -- !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Hand Helper 450688.yaml' -- !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Displacement - Tool 0f1374.yaml' +- !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Generic Difficulty + Selector 8112ff.yaml' - !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model Lucky Penny 2ab443.yaml' - !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Double-Sided Resource bc81cb.yaml' - !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Descriptive Phase Tracker b171c8.yaml' -- !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Clean Up Helper - 26cf4b.yaml' -- !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Custom Playmat - Images 004fe7.yaml' - !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model Custom Data Helper 2547b3.yaml' CustomMesh: @@ -54,13 +33,16 @@ CustomMesh: g: 0.8117647 r: 0.8745098 SpecularIntensity: 0.08 - SpecularSharpness: 5 + SpecularSharpness: 5.0 DiffuseURL: http://i.imgur.com/ukWGram.png MaterialIndex: 1 MeshURL: http://pastebin.com/raw/U9C5Ymds NormalURL: http://i.imgur.com/0qUEr3W.jpg TypeIndex: 6 -Description: '' +Description: 'This barrel contains some miscelleaneous accessories. + + + Also take a look at the option panel (gear icon at the bottom right) for more tools.' DragSelectable: true GMNotes: '' GUID: aa8b38 @@ -85,9 +67,9 @@ Transform: posX: -60.59 posY: 1.53 posZ: -75.46 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.9 scaleY: 0.85 scaleZ: 0.9 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4.yaml deleted file mode 100644 index 62a03d9f9..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4.yaml +++ /dev/null @@ -1,53 +0,0 @@ -AltLookAngle: - x: 0 - y: 0 - z: 0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 0 - g: 0.36652 - r: 0.70588 -ContainedObjects: -- !include 'Bag Whimsical''s Generic Difficulty Selector 05efb4/Custom_Tile Generic - Difficulty Selector 8112ff.yaml' -- !include 'Bag Whimsical''s Generic Difficulty Selector 05efb4/Checker_white Token - Image Provider 162580.yaml' -- !include 'Bag Whimsical''s Generic Difficulty Selector 05efb4/Checker_black Token - List 297f5e.yaml' -- !include 'Bag Whimsical''s Generic Difficulty Selector 05efb4/Notecard Generic Difficulty - Selector Instructions 13 c32992.yaml' -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 05efb4 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: Whimsical's Generic Difficulty Selector -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 29.07 - posY: 3.9 - posZ: -21.29 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_black Token List 297f5e.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_black Token List 297f5e.ttslua deleted file mode 100644 index 6a717a6a3..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_black Token List 297f5e.ttslua +++ /dev/null @@ -1,12 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-08-05 7:19 p.m. ---- - -chaos_tokens = { - Easy = {1, 1, 0, 0, -1, -1, -1, -2, -2, "S", "S", "C", "T", "F", "*"}, - Standard = {1, 0, 0, -1, -1, -1, -2, -2, -3, -4, "S", "S", "C", "T", "F", "*"}, - Hard = {0, 0, -1, -1, -2, -2, -3, -4, -4, -5, "Fr", "Fr", "S", "S", "C", "T", "F", "*"}, - Expert = {0, -1, -2, -2, -3, -4, -4, -5, -7, "Fr", "Fr", "Fr", "S", "S", "C", "T", "F", "*"} -} \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_black Token List 297f5e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_black Token List 297f5e.yaml deleted file mode 100644 index 89f1c69ac..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_black Token List 297f5e.yaml +++ /dev/null @@ -1,43 +0,0 @@ -AltLookAngle: - x: 0 - y: 0 - z: 0 -Autoraise: true -ColorDiffuse: - b: 0 - g: 0 - r: 0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 297f5e -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Checker_black Token List 297f5e.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Checker_black -Nickname: Token List -Snap: true -Sticky: true -Tags: -- mlc_memory_object -- token_list_provider -Tooltip: true -Transform: - posX: 12.98 - posY: 4.04 - posZ: 29.83 - rotX: 0 - rotY: 270 - rotZ: 206 - scaleX: 1 - scaleY: 1 - scaleZ: 1 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_white Token Image Provider 162580.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_white Token Image Provider 162580.ttslua deleted file mode 100644 index c7e746a71..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_white Token Image Provider 162580.ttslua +++ /dev/null @@ -1,37 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-08-05 6:51 p.m. ---- - ----@param name string ----@param image string ----@return ChaosToken -local MakeToken = function (name, image) - return { - name = name, - image = image - } -end - -sources = { - [1] = MakeToken("+1", "https://i.imgur.com/uIx8jbY.png"), - [0] = MakeToken("0", "https://i.imgur.com/btEtVfd.png"), - [-1] = MakeToken("-1", "https://i.imgur.com/w3XbrCC.png"), - [-2] = MakeToken("-2", "https://i.imgur.com/bfTg2hb.png"), - [-3] = MakeToken("-3", "https://i.imgur.com/yfs8gHq.png"), - [-4] = MakeToken("-4", "https://i.imgur.com/qrgGQRD.png"), - [-5] = MakeToken("-5", "https://i.imgur.com/3Ym1IeG.png"), - [-6] = MakeToken("-6", "https://i.imgur.com/c9qdSzS.png"), - [-7] = MakeToken("-7", "https://i.imgur.com/4WRD42n.png"), - [-8] = MakeToken("-8", "https://i.imgur.com/9t3rPTQ.png"), - ["s"] = MakeToken("Skull", "https://i.imgur.com/stbBxtx.png"), - ["c"] = MakeToken("Cultist", "https://i.imgur.com/VzhJJaH.png"), - ["t"] = MakeToken("Tablet", "https://i.imgur.com/1plY463.png"), - ["e"] = MakeToken("Elder Thing", "https://i.imgur.com/ttnspKt.png"), - ["*"] = MakeToken("Elder Sign", "https://i.imgur.com/nEmqjmj.png"), - ["f"] = MakeToken("Auto-fail", "https://i.imgur.com/lns4fhz.png"), - ["+"] = MakeToken("Bless", "http://cloud-3.steamusercontent.com/ugc/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/"), - ["-"] = MakeToken("Curse", "http://cloud-3.steamusercontent.com/ugc/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/"), - ["fr"] = MakeToken("Frost", "http://cloud-3.steamusercontent.com/ugc/1858293462583104677/195F93C063A8881B805CE2FD4767A9718B27B6AE/"), -} \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_white Token Image Provider 162580.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_white Token Image Provider 162580.yaml deleted file mode 100644 index e191d73a4..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_white Token Image Provider 162580.yaml +++ /dev/null @@ -1,42 +0,0 @@ -AltLookAngle: - x: 0 - y: 0 - z: 0 -Autoraise: true -ColorDiffuse: - b: 1 - g: 1 - r: 1 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: '162580' -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Checker_white Token Image Provider 162580.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Checker_white -Nickname: Token Image Provider -Snap: true -Sticky: true -Tags: -- token_image_provider -Tooltip: true -Transform: - posX: 13.19 - posY: 3.81 - posZ: 28.84 - rotX: 0 - rotY: 270 - rotZ: 180 - scaleX: 1 - scaleY: 1 - scaleZ: 1 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Custom_Tile Generic Difficulty Selector 8112ff.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Custom_Tile Generic Difficulty Selector 8112ff.ttslua deleted file mode 100644 index 4c8d23a8c..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Custom_Tile Generic Difficulty Selector 8112ff.ttslua +++ /dev/null @@ -1,169 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-08-05 6:14 p.m. ---- - - -local tags = { - bag = "chaosBag", - provider = "token_list_provider", - tokens = "token_image_provider" -} - ----@class ChaosToken ----@field name string ----@field image string -local _ = {} - ----@type table -local sources - ----@type table -local tokens - ----@param source TTSObject -local LoadSource = function (source) - tokens = source:getTable("chaos_tokens") -end - ----@param token ChaosToken ----@param position Vector ----@param chaosBag TTSObject ----@return number -local SpawnToken = function(token, position, chaosBag) - spawnObject { - type = "Custom_Tile", - position = position, - scale = { 0.81, 1.0, 0.81 }, - rotation = { 0, 270, 0 }, - ---@param object TTSObject - callback_function = function(object, _, _) - object:setName(token.name) - chaosBag:putObject(object) - end - }:setCustomObject { - image = token.image, - type = 2, - thickness = 0.1 - } -end - ----@param chaosBag TTSObject -local emptyBag = function(chaosBag) - local object = chaosBag:getObjects() - local pos = self:getPosition() - pos.y = pos.y+1 - - for _, object in ipairs(object) do - chaosBag:takeObject { - guid = object.guid, - position = pos, - ---@param item TTSObject - callback_function = function (item) item:destruct() end - } - end -end - ----@param difficulty string -local clickFun= function (difficulty) - local chaosBag = getObjectsWithTag(tags.bag)[1] - - emptyBag(chaosBag) - - local loading = tokens[difficulty] - local pos = self:getPosition() - - for _, token_id in ipairs(loading) do - if type(token_id)=="string" then token_id = token_id:lower() end - - local token = sources[token_id] - - if (token==nil) then - error("Could not find token \"" .. token_id .. "\".") - return - end - - SpawnToken(token, pos, chaosBag) - end -end - - ----@param difficulty string -local MakeClickFun = function(difficulty) - return function () - clickFun(difficulty) - end -end - ----@param label string ----@param z_offset number|nil -local makeButton = function(label , z_offset) - z_offset = z_offset or -0.15 - - _G[label:lower() .. "Click"] = MakeClickFun(label) - - self:createButton({ - label = label, - function_owner = self, - click_function = label:lower() .. "Click", - position = {0, 0.1, z_offset}, - rotation = {0, 0, 0}, - scale = {0.47, 1, 0.47}, - height = 200, - width = 1150, - font_size = 100, - color = {0.87, 0.8, 0.70}, - font_color = {0, 0, 0} - }) - return z_offset + 0.20 -end - ----@param source TTSObject -local CreateButtons= function(source) - self:clearButtons() - - local z_offset - for difficulty,_ in pairs(tokens) do - z_offset = makeButton(difficulty, z_offset) - end -end - - -function LoadTokens() - ---@type TTSObject[] - local image_sources = getObjectsWithTag(tags.tokens) - - if (#image_sources<=0) then - error("Cannot find images_sources") - return - end - - sources = image_sources[1]:getTable("sources") - - if (tokens~=nil) then CreateButtons() return end - - local source = getObjectsWithTag(tags.provider) - - if (#source<=0) then return end - - LoadSource(source[1]) - - CreateButtons() -end - -function onload() - Timer.create { - identifier = self:getGUID(), - function_name = "LoadTokens" - } -end - ----@param provider TTSObject -function onObjectSpawn(provider) - if (not provider:hasTag(tags.provider)) then return end - - LoadSource(provider) - - CreateButtons() -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Notecard Generic Difficulty Selector Instructions 13 c32992.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Notecard Generic Difficulty Selector Instructions 13 c32992.yaml deleted file mode 100644 index 0552a3e8a..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Notecard Generic Difficulty Selector Instructions 13 c32992.yaml +++ /dev/null @@ -1,130 +0,0 @@ -AltLookAngle: - x: 0 - y: 0 - z: 0 -Autoraise: true -ColorDiffuse: - b: 1 - g: 1 - r: 1 -Description: "Tool for create custom chaos bag configurations.\n - The actual difficulty - selector: click a difficulty to fill the chaos bag.\n- Token Image Provider: edit - in scripting editor to add new token types. Cut and Paste to save.\n- Token List: - edit in scripting editor to customize difficulties. Cut and Paste to save.\n\nReference - of Token codes on following pages:" -DragSelectable: true -GMNotes: '' -GUID: c32992 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Notecard -Nickname: Generic Difficulty Selector Instructions 1/3 -Snap: true -States: - '2': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 1 - g: 1 - r: 1 - Description: "1 \u2014 -8: Numeric tokens (Don't place quotes around these).\r\n\"S\": - Skull.\r\n\"C\": Cultist.\r\n\"T\": Tablet.\r\n\"E\": Elder Thing.\r\n\"Fr\": - Frost." - DragSelectable: true - GMNotes: '' - GUID: eab766 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Notecard - Nickname: Generic Difficulty Selector Instructions 2/3 - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 3.29240441 - posY: 1.33262193 - posZ: 56.0586357 - rotX: 359.9792 - rotY: 89.99884 - rotZ: 359.983215 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' - '3': - AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 1 - g: 1 - r: 1 - Description: "\"*\": Elder Sign.\r\n\"F\": Auto-fail.\r\n\"+\": Bless.\r\n\"-\": - Curse." - DragSelectable: true - GMNotes: '' - GUID: '309295' - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Notecard - Nickname: Generic Difficulty Selector Instructions 3/3 - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 3.29240441 - posY: 1.33262193 - posZ: 56.0586357 - rotX: 359.9792 - rotY: 89.9988556 - rotZ: 359.983215 - scaleX: 1 - scaleY: 1 - scaleZ: 1 - Value: 0 - XmlUI: '' -Sticky: true -Tooltip: true -Transform: - posX: 13.51 - posY: 3.62 - posZ: 30.27 - rotX: 0 - rotY: 90 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Assetbundle cecc3e.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Assetbundle cecc3e.ttslua deleted file mode 100644 index 71e29fc39..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Assetbundle cecc3e.ttslua +++ /dev/null @@ -1,162 +0,0 @@ ---On-demand save function, remembers pitch and distance values -function updateSave() - saved_data = JSON.encode({pitch=pitch, distance=distance}) - self.script_state = saved_data -end - ---Startup, loading memory -function onload(saved_data) - --Loads the tracking for if the game has started yet - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - pitch = loaded_data.pitch - distance = loaded_data.distance - else - pitch = 45 - distance = 30 - end - - createInputs() - createButtons() -end - ---Activated by finishing writing in the input box, updates save info -function input_entered(inputString, stillEditing , typeIndex) - if stillEditing == false then - --Check to avoid empty input strings - if tonumber(inputString) == nil then inputString = 0 end - --Update save data - if typeIndex==0 then - pitch = inputString - else - distance = inputString - end - updateSave() - end -end - ---Activated by button, the -5 -1 +1 +5 buttons -function click_modify(amount, typeIndex) - if typeIndex==0 then - pitch = pitch + amount - self.editInput({index=typeIndex, value=pitch}) - else - distance = distance + amount - self.editInput({index=typeIndex, value=distance}) - end - updateSave() -end - ---Activated by button, uses the data to move the camera -function click_setCamera(_, color) - --Check if there is another object to use instead of self - local targetObj = self - local nameGUID = string.sub(self.getName(), 1, 6) - if getObjectFromGUID(nameGUID) ~= nil then - targetObj = getObjectFromGUID(nameGUID) - end - - --Check if there is an offset to use instead of 180 - local offsetY = 180 - local offsetString = string.sub(self.getName(), 7) - if tonumber(string.match(offsetString, "%d+")) ~= nil then - offsetY = tonumber(string.match(offsetString, "%d+")) - end - - --Move camera into position around object - local pos = targetObj.getPosition() - local rot = targetObj.getRotation() - rot.y = rot.y + offsetY - Player[color].lookAt({position=pos, pitch=pitch, yaw=rot.y, distance=distance}) - - local objectList = getObjects() - local AHLCGNavTile = nil - - for i,v in ipairs(objectList) do - if v.getName() == 'Navigation Overlay Tile' then - AHLCGNavTile = v - break - end - end - --- local AHLCGNavTile = getObjectFromGUID("0ffbc5") - if AHLCGNavTile then - AHLCGNavTile.call('updateEditCamera', {pos, pitch, rot.y, distance}) - end -end - - - - ---Button/Input creation - - - ---Text boxes for number input -function createInputs() - local funcName = "inputFuncNamePitch" - local func = function(_,_,x,z) input_entered(x,z,0) end - self.setVar(funcName, func) - self.createInput({ - input_function=funcName, function_owner=self, label="input", - alignment=2, position={-3.4,0.35,-0.21}, rotation={0,0,0}, height=420, width=1400, - font_size=400, color={57/255,46/255,40/255}, - font_color={1,1,1}, value=pitch, - validation=3 -- int (1 = None, 2 = Integer, 3 = Float, 4 = Alphanumeric, 5 = Username, 6 = Name), - }) - local funcName = "inputFuncNameDistance" - local func = function(_,_,x,z) input_entered(x,z,1) end - self.setVar(funcName, func) - self.createInput({ - input_function=funcName, function_owner=self, label="input", - alignment=4, position={3.4,0.35,-0.21}, rotation={0,0,0}, height=420, width=1400, - font_size=400, color={57/255,46/255,40/255}, - font_color={1,1,1}, value=distance, - validation=3 -- int (1 = None, 2 = Integer, 3 = Float, 4 = Alphanumeric, 5 = Username, 6 = Name), - }) -end - ---Center button and -5 - +5 buttons -function createButtons() - self.createButton({ - click_function="click_setCamera", function_owner=self, - position={0,0.4,0}, height=900, width=900, color={1,1,1,0}, - tooltip="Set camera to this angle" - }) - - for i, ref in ipairs(ref_modifyPitchButtons) do - local funcName = "pitchModifyFunction_"..i - self.setVar(funcName, ref.func) - local pos = {-3.4+ref.offset,0.3,0.6} - self.createButton({ - click_function=funcName, function_owner=self, - position=pos, height=240, width=320, color={1,1,1,0} - }) - end - - for i, ref in ipairs(ref_modifyDistanceButtons) do - local funcName = "distanceModifyFunction_"..i - self.setVar(funcName, ref.func) - local pos = {3.4+ref.offset,0.3,0.6} - self.createButton({ - click_function=funcName, function_owner=self, - position=pos, height=240, width=320, color={1,1,1,0} - }) - end -end - ---Data tables used in button creation - -ref_modifyPitchButtons = { - {offset=-0.37, func=function() click_modify(-1, 0) end}, - {offset=-1.11, func=function() click_modify(-5, 0) end}, - {offset=0.37, func=function() click_modify(1, 0) end}, - {offset=1.11, func=function() click_modify(5, 0) end}, -} - -ref_modifyDistanceButtons = { - {offset=-0.37, func=function() click_modify(-1, 1) end}, - {offset=-1.11, func=function() click_modify(-5, 1) end}, - {offset=0.37, func=function() click_modify(1, 1) end}, - {offset=1.11, func=function() click_modify(5, 1) end}, -} \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Tile jaqenZann's Navigation Overlay Tile 0ffbc5.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Tile jaqenZann's Navigation Overlay Tile 0ffbc5.ttslua deleted file mode 100644 index 910eab791..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Tile jaqenZann's Navigation Overlay Tile 0ffbc5.ttslua +++ /dev/null @@ -1,648 +0,0 @@ --- SCE Navigation Panel version 1.00 - -function onLoad(saved_data) - self.createButton({ - label="", - tooltip="Display full overlay", - click_function="displayFull", - function_owner=self, - position={0.0,0.1,-0.57}, - height=70, - width=800, - scale={x=1, y=1, z=1}, - color={1,0,0,0} - }) - self.createButton({ - label="", - tooltip="Display only play area", - click_function="displayPlayArea", - function_owner=self, - position={0.0,0.1,-0.30}, - height=70, - width=800, - scale={x=1, y=1, z=1}, - color={1,0,0,0} - }) - self.createButton({ - label="", - tooltip="Close overlay", - click_function="closeOverlay", - function_owner=self, - position={0.0,0.1,-0.03}, - height=70, - width=800, - scale={x=1, y=1, z=1}, - color={1,0,0,0} - }) - self.createButton({ - label="", - tooltip="Modify a camera position", - click_function="beginSetCamera", - function_owner=self, - position={0.0,0.1,0.37}, - height=70, - width=800, - scale={x=1, y=1, z=1}, - color={1,0,0,0} - }) - self.createButton({ - label="", - tooltip="Reset camera positions to default", - click_function="resetCameras", - function_owner=self, - position={0.0,0.1,0.77}, - height=70, - width=800, - scale={x=1, y=1, z=1}, - color={1,0,0,0} - }) - - defaultCameraParams = { - {position={-1.626, -2.5, -0.064}, pitch=62.964, yaw=90.000, distance=17.844}, -- 1. ActAgenda - {position={-27.822, -2.5, 0.424}, pitch=75.823, yaw=90.000, distance=-1.000}, -- 2. Map --- {position={-31.592, -2.5, 26.392}, pitch=74.238, yaw=180.000, distance=19.858}, -- 3. Green playmat - {position={-31.592, -2.5, 26.392}, pitch=74.238, yaw=180.000, distance=-1.000}, -- 3. Green playmat - {position={-55.026, -2.5, 12.052}, pitch=74.238, yaw=90.000, distance=-1.000}, -- 4. White playmat - {position={-55.026, -2.5, -11.479}, pitch=74.238, yaw=90.000, distance=-1.000}, -- 5. Orange playmat - {position={-31.592, -2.5, -26.392}, pitch=74.238, yaw=0.000, distance=-1.000}, -- 6. Red playmat - {position={-2.940, -2.5, 25.160}, pitch=73.556, yaw=90.000, distance=20.146}, -- 7. Victory / SetAside - {position={-58.216, -2.5, -71.288}, pitch=76.430, yaw=90.000, distance=20.000}, -- 8. Deckbuilder - {position={46.368, -2.5, 0.328}, pitch=69.491, yaw=90.000, distance=46.255}, -- 9. Campaigns - {position={13.875, -2.5, 0.328}, pitch=69.491, yaw=90.000, distance=37.962}, -- 10. Scenarios - {position={51.940, -2.5, 64.476}, pitch=76.430, yaw=90.000, distance=48.102}, -- 11. Level 0 - {position={51.302, -2.5, -73.514}, pitch=76.430, yaw=90.000, distance=48.102}, -- 12. Upgraded - {position={-27.788, -2.5, 74.662}, pitch=76.430, yaw=90.000, distance=30.616}, -- 13. Weaknesses - {position={-61.090, -2.5, 70.762}, pitch=76.430, yaw=90.000, distance=34.188}, -- 14. Rules - {position={-18.547, -2.5, -73.514}, pitch=76.430, yaw=90.000, distance=42.249}, -- 15. Investigators - {position={-2.144, -2.5, -26.900}, pitch=73.556, yaw=90.000, distance=20.146}, -- 16. Log - {position={-45.000, -2.5, -0.228}, pitch=73.556, yaw=90.000, distance=12.000} -- 17. BlessCurse - } - - fullButtonData = { - { id = "1", width = "84", height = "38", offsetX = "1", offsetY = "-9" }, - { id = "2", width = "78", height = "50", offsetX = "1", offsetY = "-59" }, - { id = "3", width = "36", height = "70", offsetX = "-62", offsetY = "-70" }, - { id = "4", width = "70", height = "40", offsetX = "-36", offsetY = "-130" }, - { id = "5", width = "70", height = "40", offsetX = "39", offsetY = "-130" }, - { id = "6", width = "36", height = "70", offsetX = "64", offsetY = "-70" }, - { id = "7", width = "36", height = "36", offsetX = "-63", offsetY = "-9" }, - { id = "8", width = "64", height = "64", offsetX = "153", offsetY = "-128" }, - { id = "9", width = "155", height = "70", offsetX = "2", offsetY = "120" }, - { id = "10", width = "155", height = 70, offsetX = "2", offsetY = "47" }, - { id = "11", width = "120", height = "100", offsetX = "-148", offsetY = "101" }, - { id = "12", width = "120", height = "100", offsetX = "150", offsetY = "101" }, - { id = "13", width = "120", height = "80", offsetX = "-150", offsetY = "-55" }, - { id = "14", width = "120", height = "60", offsetX = "-150", offsetY = "-132" }, - { id = "15", width = "110", height = "100", offsetX = "152", offsetY = "-42" }, - { id = "16", width = "36", height = "36", offsetX = "64", offsetY = "-9" }, - { id = "17", width = "44", height = "25", offsetX = "1", offsetY = "-97" } - } - - playButtonData = { - { id = "1", width = "84", height = "38", offsetX = "0", offsetY = "59" }, - { id = "2", width = "78", height = "50", offsetX = "0", offsetY = "9" }, - { id = "3", width = "36", height = "70", offsetX = "-62", offsetY = "-1" }, - { id = "4", width = "70", height = "40", offsetX = "-37", offsetY = "-61" }, - { id = "5", width = "70", height = "40", offsetX = "39", offsetY = "-61" }, - { id = "6", width = "36", height = "70", offsetX = "63", offsetY = "-2" }, - { id = "7", width = "36", height = "36", offsetX = "-64", offsetY = "59" }, - { id = "16", width = "36", height = "36", offsetX = "63", offsetY = "59" }, - { id = "17", width = "44", height = "25", offsetX = "0", offsetY = "-28" } - } - - playermatData = { - White = { guid = '8b081b', origin = { x=-54.42, y=0, z=20.96 }, scale = { x=36.63, y=5.10, z=14.59 }, orientation = { x=0, y=270, z=0 }, minX = -61.4, maxX = -48.6, minZ = -2.39, maxZ = 24.53, xOffset = 0.07, zOffset = 0.03 }, - Orange = { guid = 'bd0ff4', origin = { x=-54.42, y=0, z=-20.96 }, scale = { x=36.63, y=5.10, z=14.59 }, orientation = { x=0, y=270, z=0 }, minX = -61.4, maxX = -48.6, minZ = -24.53, maxZ = 2.39, xOffset = 0.07, zOffset = 0.02 }, - Green = { guid = '383d8b', origin = { x=-25.00, y=0, z=26.20 }, scale = { x=31.5, y=5.10, z=14.59 }, orientation = { x=0, y=0, z=0 }, minX = -44.43, maxX = -17.44, minZ = 20.17, maxZ = 32.97, xOffset = -0.07, zOffset = 0.00 }, - Red = { guid = '0840d5', origin = { x=-25.00, y=0, z=-26.60 }, scale = { x=31.5, y=5.10, z=14.59 }, orientation = { x=0, y=180, z=0 }, minX = -44.43, maxX = -17.44, minZ = -32.97, maxZ = -20.17, xOffset = 0.07, zOffset = -0.06 } - } - - editing = false - selectedEditButton = -1 - - editPos = {0, 0, 0} - editPitch = 0 - editYaw = 0 - editDistance = 0 - - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - - cameraParams = loaded_data.cameras - fullVisibility = loaded_data.fullVis - playVisibility = loaded_data.playVis - - resetOverlay() - else - cameraParams = { - Green = {}, - White = {}, - Orange = {}, - Red = {} - } - - for iv, v in pairs({'Green', 'White', 'Orange', 'Red'}) do - cameraParams[v] = {} - - for i = 1,17 do - cameraParams[v][i] = {} - - cameraParams[v][i].position = defaultCameraParams[i].position - cameraParams[v][i].pitch = defaultCameraParams[i].pitch - cameraParams[v][i].yaw = defaultCameraParams[i].yaw - cameraParams[v][i].distance = defaultCameraParams[i].distance - end - end - - fullVisibility = { - Green = false, - White = false, - Orange = false, - Red = false - } - - playVisibility = { - Green = false, - White = false, - Orange = false, - Red = false - } - end -end - -function onSave() - return JSON.encode({ - cameras = cameraParams, - fullVis = fullVisibility, - playVis = playVisibility - }) - --- return '' -end - -function displayFull(object, color) - local playerCount = getPlayerCount() - local colors - if playerCount == 1 then - colors = { 'Green', 'White', 'Orange', 'Red' } - else - colors = { color } - end - - for i, v in ipairs(colors) do - fullVisibility[v] = true - playVisibility[v] = false - end - - resetOverlay() -end - -function displayPlayArea(object, color) - local playerCount = getPlayerCount() - local colors - if playerCount == 1 then - colors = { 'Green', 'White', 'Orange', 'Red' } - else - colors = { color } - end - - for i, v in ipairs(colors) do - fullVisibility[v] = false - playVisibility[v] = true - end - - resetOverlay() -end - -function resetCameras(object, color) - local playerCount = getPlayerCount() - local colors - - if playerCount == 1 then - colors = { 'Green', 'White', 'Orange', 'Red' } - else - colors = { color } - end - - for iv, v in ipairs(colors) do - for i = 1,17 do - cameraParams[v][i].position = defaultCameraParams[i].position - cameraParams[v][i].pitch = defaultCameraParams[i].pitch - cameraParams[v][i].yaw = defaultCameraParams[i].yaw - cameraParams[v][i].distance = defaultCameraParams[i].distance - end - end -end - -function closeOverlay(object, color) - fullVisibility[color] = false - playVisibility[color] = false - - resetOverlay() -end - -function resetOverlay() - local guid = self.getGUID() - local color - local panel - - local existingXml = UI.getXml() - local openingXml = '' - - -- try to only remove our panels - for p = 1,2 do - i, j = string.find(existingXml, ' - ]] - - for i, d in ipairs(data) do - if editing then - if selectedEditButton < 0 then - color = "rgba(1,1,1,1)" - elseif tonumber(d.id) == selectedEditButton then - color = "rgba(0,1,0,1)" - else - color = "rgba(1,0,0,1)" - end - else - color = "rgba(0,1,0,0)" - end - - xml = xml .. [[ - ]] - end - - xml = xml .. [[ ]] - end - - if string.len(playColors) > 0 then - data = playButtonData - - xml = xml .. [[ - - ]] - - for i, d in ipairs(data) do - if editing then - if selectedEditButton < 0 then - color = "rgba(1,1,1,1)" - elseif tonumber(d.id) == selectedEditButton then - color = "rgba(0,1,0,1)" - else - color = "rgba(1,0,0,1)" - end - else - color = "rgba(0,1,0,0)" - end - - xml = xml .. [[ - ]] - end - - xml = xml .. [[ ]] - end - - local existingAssets = UI.getCustomAssets() - local largeOverlay = nil - local smallOverlay = nil - - for i,v in pairs(existingAssets) do - for ii,vv in pairs(v) do - if vv == 'OverlayLarge' then - largeOverlay = v - end - if vv == 'OverlaySmall' then - smallOverlay = v - end - end - end - - local largeURL = 'http://cloud-3.steamusercontent.com/ugc/1745699502804112656/A34D1F30E0DA0E283F300AE6D6B63F59FFC97730/' - local smallURL = 'http://cloud-3.steamusercontent.com/ugc/1745699502804112719/CFFC89BF9FB8439204EE19CF94180EC99450CD38/' - - if largeOverlay == nil then - largeOverlay = { name='OverlayLarge', url=largeURL } - table.insert(existingAssets, largeOverlay) - else - largeOverlay.url = largeURL - - end - - if smallOverlay == nil then - smallOverlay = { name='OverlaySmall', url=smallURL } - table.insert(existingAssets, smallOverlay) - else - smallOverlay.url = smallURL - end - - UI.setXml(xml, existingAssets) -end - -function buttonClicked(player, _, idValue) - if editing then - if selectedEditButton < 0 then - selectedEditButton = tonumber(idValue) - else - if tonumber(idValue) == selectedEditButton and editDistance > 0 then - local playerCount = getPlayerCount() - local colors - - if playerCount == 1 then - colors = { 'Green', 'White', 'Orange', 'Red' } - else - colors = { player.color } - end - - for i, v in ipairs(colors) do - cameraParams[v][selectedEditButton].position = editPos - cameraParams[v][selectedEditButton].pitch = editPitch - cameraParams[v][selectedEditButton].yaw = editYaw - cameraParams[v][selectedEditButton].distance = editDistance - end - end - - editing = false - selectedEditButton = -1 - end - - resetOverlay() - else - loadCamera(player, _, idValue) - end -end - -function loadCamera(player, _, idValue) - local index = tonumber(idValue) - local color = player.color - - -- only do map zooming if te camera hasn't been specially set by user - if index == 2 and cameraParams[color][index].distance <= 0.0 then - local mapObjects = Physics.cast({ - origin = { x=-29.2, y=0, z=0.0 }, - direction = { x=0, y=1, z=0 }, - type = 3, - size = { x=36, y=5, z=31.4 }, - orientation = { x=0, y=90, z=0 } - }) - - local minX = 100 - local maxX = -100 - local minZ = 100 - local maxZ = -100 - - for i,v in pairs(mapObjects) do - local obj = v.hit_object - - if obj.type == 'Card' or obj.type == 'Infinite' then - local bounds = obj.getBounds() - - local x1 = bounds['center'][1] - bounds['size'][1]/2 - local x2 = bounds['center'][1] + bounds['size'][1]/2 - local z1 = bounds['center'][3] - bounds['size'][3]/2 - local z2 = bounds['center'][3] + bounds['size'][3]/2 - - if x1 < minX then - minX = x1 - end - if x2 > maxX then - maxX = x2 - end - if z1 < minZ then - minZ = z1 - end - if z2 > maxZ then - maxZ = z2 - end - end - end - - if minX < 100 then - local dx = maxX - minX - local dz = (maxZ - minZ) / (1.6) -- screen ratio * 1.2 (for my macbook pro, no idea how to generalize this) - local centerX = (minX + maxX) / 2 - dx*0.12 -- offset is to move it a bit up, so the cards don't block anything - local centerZ = (minZ + maxZ) / 2 - - local scale = dx - if dz > dx then - scale = dz - end - - -- regression line from the following data points, seems linear - -- rows 1 scale 4.5 d 12 - -- rows 2 scale 11 d 16 - -- rows 3 scale 14.5 d 19.6 - -- rows 4 scale 19.6 d 25 - -- rows 5 scale 23.25 d 28 - -- rows 6 scale 30.8 d 34 - - -- local d = 0.8685 * scale + 7.4505 - - -- modified by testing - -- local d = 0.8685 * scale + 5 - local d = 1.04 * scale + 5 - - player.lookAt({position={centerX, 0, centerZ}, pitch=75.823, yaw=90.000, distance=d}) - else - player.lookAt({position={-33.667, 0, 0.014}, pitch=75.823, yaw=90.000, distance=36}) - end - elseif index >= 3 and index <= 6 then - local matColor = nil - - if index == 3 then - matColor = 'Green' - elseif index == 4 then - matColor = 'White' - elseif index == 5 then - matColor = 'Orange' - elseif index == 6 then - matColor = 'Red' - end - - if matColor ~= nil then - local playerCount = getPlayerCount() - - if playerCount <= 1 then - player.changeColor(matColor) - end - end - - if cameraParams[color][index].distance <= 0.0 then - local matObjects = Physics.cast({ - origin = playermatData[matColor].origin, - direction = { x=0, y=1, z=0 }, - type = 3, - size = playermatData[matColor].scale, - orientation = playermatData[matColor].orientation, --- debug=true - }) - - local minX = playermatData[matColor].minX - local maxX = playermatData[matColor].maxX - local minZ = playermatData[matColor].minZ - local maxZ = playermatData[matColor].maxZ - - for i,v in pairs(matObjects) do - local obj = v.hit_object - - if obj.type == 'Card' or obj.type == 'Infinite' then - local bounds = obj.getBounds() - - local x1 = bounds['center'][1] - bounds['size'][1]/2 - local x2 = bounds['center'][1] + bounds['size'][1]/2 - local z1 = bounds['center'][3] - bounds['size'][3]/2 - local z2 = bounds['center'][3] + bounds['size'][3]/2 - - if x1 < minX then - minX = x1 - end - if x2 > maxX then - maxX = x2 - end - if z1 < minZ then - minZ = z1 - end - if z2 > maxZ then - maxZ = z2 - end - end - end - - local dx - local dz - local centerX - local centerZ - local scale - local yaw - local d - - -- White/Orange - if index > 3 and index < 6 then - dx = maxX - minX - dz = (maxZ - minZ) / (1.6) -- screen ratio * 1.2 (for my macbook pro, no idea how to generalize this) - - centerX = (minX + maxX) / 2 - dx*playermatData[matColor].xOffset -- offset is to move it a bit up, so the cards don't block anything - centerZ = (minZ + maxZ) / 2 + dz*playermatData[matColor].zOffset -- offset is to move it right a bit, so the toolbar doesn't block anything - yaw = 90 - - scale = dx - if dz > dx then - scale = dz - end - - d = 0.64 * scale + 7 - else -- Green/Red - dx = (maxX - minX) / (1.6) -- screen ratio * 1.2 (for my macbook pro, no idea how to generalize this) - dz = maxZ - minZ - - centerX = (minX + maxX) / 2 + dx*playermatData[matColor].zOffset -- offset is to move it right a bit, so the toolbar doesn't block anything - centerZ = (minZ + maxZ) / 2 - dz*playermatData[matColor].xOffset -- offset is to move it a bit up, so the cards don't block anything - yaw = playermatData[matColor].orientation.y + 180 - - scale = dz - if dx > dz then - scale = dx - end - - d = 0.64 * scale + 7 - end - - -- 15.46 -> 17.081 - -- 18.88 -> 19.33 - -- 24.34 -> 22.6 - - -- need to wait if the player color changed - Wait.frames(function() player.lookAt({position={centerX, 0, centerZ}, pitch=75.823, yaw=yaw, distance=d}) end, 2) - else - Wait.frames(function() player.lookAt(cameraParams[color][index]) end, 2) - end - else - player.lookAt(cameraParams[color][index]) - end -end - -function beginSetCamera(object, color) - editing = true - - resetOverlay() -end - -function updateEditCamera(params) - editPos = params[1] - editPitch = params[2] - editYaw = params[3] - editDistance = params[4] -end - -function getPlayerCount() - local playerCount = 0 - - local playerList = getSeatedPlayers() - - for i, v in ipairs(playerList) do - if v == 'Green' or v == 'White' or v == 'Orange' or v == 'Red' then - playerCount = playerCount + 1 - end - end - - return playerCount -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Tile jaqenZann's Navigation Overlay Tile 0ffbc5.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Tile jaqenZann's Navigation Overlay Tile 0ffbc5.yaml deleted file mode 100644 index b42fe001d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Tile jaqenZann's Navigation Overlay Tile 0ffbc5.yaml +++ /dev/null @@ -1,50 +0,0 @@ -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: 0 - ImageScalar: 1 - ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1745699644170918010/4E5FCD0140AE8960A1E1272A1979E575EE12C3F3/ - ImageURL: http://cloud-3.steamusercontent.com/ugc/1745699644170918010/4E5FCD0140AE8960A1E1272A1979E575EE12C3F3/ - WidthScale: 0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 0ffbc5 -Grid: false -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Tile jaqenZann''s Navigation Overlay Tile 0ffbc5.ttslua' -LuaScriptState: '{"cameras":{"Green":[{"distance":17.844,"pitch":62.964,"position":[-1.626,-2.5,-0.064],"yaw":90},{"distance":-1,"pitch":75.823,"position":[-27.822,-2.5,0.424],"yaw":90},{"distance":-1,"pitch":74.238,"position":[-31.592,-2.5,26.392],"yaw":180},{"distance":-1,"pitch":74.238,"position":[-55.026,-2.5,12.052],"yaw":90},{"distance":-1,"pitch":74.238,"position":[-55.026,-2.5,-11.479],"yaw":90},{"distance":-1,"pitch":74.238,"position":[-31.592,-2.5,-26.392],"yaw":0},{"distance":20.146,"pitch":73.556,"position":[-2.94,-2.5,25.16],"yaw":90},{"distance":20,"pitch":76.43,"position":[-58.216,-2.5,-71.288],"yaw":90},{"distance":46.255,"pitch":69.491,"position":[46.368,-2.5,0.328],"yaw":90},{"distance":37.962,"pitch":69.491,"position":[13.875,-2.5,0.328],"yaw":90},{"distance":48.102,"pitch":76.43,"position":[51.94,-2.5,64.476],"yaw":90},{"distance":48.102,"pitch":76.43,"position":[51.302,-2.5,-73.514],"yaw":90},{"distance":30.616,"pitch":76.43,"position":[-27.788,-2.5,74.662],"yaw":90},{"distance":34.188,"pitch":76.43,"position":[-61.09,-2.5,70.762],"yaw":90},{"distance":42.249,"pitch":76.43,"position":[-18.547,-2.5,-73.514],"yaw":90},{"distance":20.146,"pitch":73.556,"position":[-2.144,-2.5,-26.9],"yaw":90},{"distance":12,"pitch":73.556,"position":[-45,-2.5,-0.228],"yaw":90}],"Orange":[{"distance":17.844,"pitch":62.964,"position":[-1.626,-2.5,-0.064],"yaw":90},{"distance":-1,"pitch":75.823,"position":[-27.822,-2.5,0.424],"yaw":90},{"distance":-1,"pitch":74.238,"position":[-31.592,-2.5,26.392],"yaw":180},{"distance":-1,"pitch":74.238,"position":[-55.026,-2.5,12.052],"yaw":90},{"distance":-1,"pitch":74.238,"position":[-55.026,-2.5,-11.479],"yaw":90},{"distance":-1,"pitch":74.238,"position":[-31.592,-2.5,-26.392],"yaw":0},{"distance":20.146,"pitch":73.556,"position":[-2.94,-2.5,25.16],"yaw":90},{"distance":20,"pitch":76.43,"position":[-58.216,-2.5,-71.288],"yaw":90},{"distance":46.255,"pitch":69.491,"position":[46.368,-2.5,0.328],"yaw":90},{"distance":37.962,"pitch":69.491,"position":[13.875,-2.5,0.328],"yaw":90},{"distance":48.102,"pitch":76.43,"position":[51.94,-2.5,64.476],"yaw":90},{"distance":48.102,"pitch":76.43,"position":[51.302,-2.5,-73.514],"yaw":90},{"distance":30.616,"pitch":76.43,"position":[-27.788,-2.5,74.662],"yaw":90},{"distance":34.188,"pitch":76.43,"position":[-61.09,-2.5,70.762],"yaw":90},{"distance":42.249,"pitch":76.43,"position":[-18.547,-2.5,-73.514],"yaw":90},{"distance":20.146,"pitch":73.556,"position":[-2.144,-2.5,-26.9],"yaw":90},{"distance":12,"pitch":73.556,"position":[-45,-2.5,-0.228],"yaw":90}],"Red":[{"distance":17.844,"pitch":62.964,"position":[-1.626,-2.5,-0.064],"yaw":90},{"distance":-1,"pitch":75.823,"position":[-27.822,-2.5,0.424],"yaw":90},{"distance":-1,"pitch":74.238,"position":[-31.592,-2.5,26.392],"yaw":180},{"distance":-1,"pitch":74.238,"position":[-55.026,-2.5,12.052],"yaw":90},{"distance":-1,"pitch":74.238,"position":[-55.026,-2.5,-11.479],"yaw":90},{"distance":-1,"pitch":74.238,"position":[-31.592,-2.5,-26.392],"yaw":0},{"distance":20.146,"pitch":73.556,"position":[-2.94,-2.5,25.16],"yaw":90},{"distance":20,"pitch":76.43,"position":[-58.216,-2.5,-71.288],"yaw":90},{"distance":46.255,"pitch":69.491,"position":[46.368,-2.5,0.328],"yaw":90},{"distance":37.962,"pitch":69.491,"position":[13.875,-2.5,0.328],"yaw":90},{"distance":48.102,"pitch":76.43,"position":[51.94,-2.5,64.476],"yaw":90},{"distance":48.102,"pitch":76.43,"position":[51.302,-2.5,-73.514],"yaw":90},{"distance":30.616,"pitch":76.43,"position":[-27.788,-2.5,74.662],"yaw":90},{"distance":34.188,"pitch":76.43,"position":[-61.09,-2.5,70.762],"yaw":90},{"distance":42.249,"pitch":76.43,"position":[-18.547,-2.5,-73.514],"yaw":90},{"distance":20.146,"pitch":73.556,"position":[-2.144,-2.5,-26.9],"yaw":90},{"distance":12,"pitch":73.556,"position":[-45,-2.5,-0.228],"yaw":90}],"White":[{"distance":17.844,"pitch":62.964,"position":[-1.626,-2.5,-0.064],"yaw":90},{"distance":-1,"pitch":75.823,"position":[-27.822,-2.5,0.424],"yaw":90},{"distance":-1,"pitch":74.238,"position":[-31.592,-2.5,26.392],"yaw":180},{"distance":-1,"pitch":74.238,"position":[-55.026,-2.5,12.052],"yaw":90},{"distance":-1,"pitch":74.238,"position":[-55.026,-2.5,-11.479],"yaw":90},{"distance":-1,"pitch":74.238,"position":[-31.592,-2.5,-26.392],"yaw":0},{"distance":20.146,"pitch":73.556,"position":[-2.94,-2.5,25.16],"yaw":90},{"distance":20,"pitch":76.43,"position":[-58.216,-2.5,-71.288],"yaw":90},{"distance":46.255,"pitch":69.491,"position":[46.368,-2.5,0.328],"yaw":90},{"distance":37.962,"pitch":69.491,"position":[13.875,-2.5,0.328],"yaw":90},{"distance":48.102,"pitch":76.43,"position":[51.94,-2.5,64.476],"yaw":90},{"distance":48.102,"pitch":76.43,"position":[51.302,-2.5,-73.514],"yaw":90},{"distance":30.616,"pitch":76.43,"position":[-27.788,-2.5,74.662],"yaw":90},{"distance":34.188,"pitch":76.43,"position":[-61.09,-2.5,70.762],"yaw":90},{"distance":42.249,"pitch":76.43,"position":[-18.547,-2.5,-73.514],"yaw":90},{"distance":20.146,"pitch":73.556,"position":[-2.144,-2.5,-26.9],"yaw":90},{"distance":12,"pitch":73.556,"position":[-45,-2.5,-0.228],"yaw":90}]},"fullVis":{"Green":false,"Orange":false,"Red":false,"White":false},"playVis":{"Green":false,"Orange":false,"Red":false,"White":false}}' -MeasureMovement: false -Name: Custom_Tile -Nickname: jaqenZann's Navigation Overlay Tile -Snap: false -Sticky: true -Tooltip: true -Transform: - posX: 25.96 - posY: 3.52 - posZ: -18.62 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_red Draw Token Button Tooltip Renamer cc77a8.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_red Draw Token Button Tooltip Renamer cc77a8.ttslua deleted file mode 100644 index 471e08438..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_red Draw Token Button Tooltip Renamer cc77a8.ttslua +++ /dev/null @@ -1,455 +0,0 @@ -function onLoad() - spawnButton("symbols", "Change Tooltips", - "Changes tooltip for 'draw chaos token' buttons.", 0, 0.5, 0, 600, 400, 70) -end - -function spawnButton( func, text, tool_tip, xPosition, yPosition, zPosition, button_width, button_height, fontsize ) - scale = self.getScale() - scale = scale[1] - params = { - click_function = func, - function_owner = self, - label = text, - position = {scale * xPosition, yPosition, scale * zPosition}, - rotation = {0, 0, 0}, - width = button_width * scale, - height = button_height * scale, - font_size = fontsize * scale, - color = {1, 1, 1}, - font_color = {0, 0, 0}, - tooltip = tool_tip - } - self.createButton(params) -end - -function symbols() - local tool = "no scenario selected" - for _, scenario in ipairs(getObjectFromGUID("fe2ae4").getObjects()) do - if scenario.getDescription() == "The Gathering" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull] -2. If you fail, after this skill test, search the encounter deck and discard pile for a [[Ghoul]] enemy, and draw it. Shuffle the encounter deck.\n\n[cultist] Reveal another token. If you fail, take 2 horror.\n\n[tablet] -4. If there is a [[Ghoul]] enemy at your location, take 1 damage and 1 horror." - else - tool = "Easy / Standard\n\n[skull] -X. X is the number of [[Ghoul]] enemies at your location.\n\n[cultist] -1. If you fail, take 1 horror.\n\n[tablet] -2. If there is a [[Ghoul]] enemy at your location, take 1 damage.\n\n" - end - end - -- midnight masks - if scenario.getDescription() == "The Midnight Masks" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X. X is the total number of doom in play.\n\n[cultist]: -2. Place 1 doom on each [[Cultist]] enemy in play. If there are no [[Cultist]] enemies in play, reveal another token.\n\n[tablet]: -4. If you fail, place all your clues on your location." - else - tool = "Easy / Standard\n\n[skull]: -X. X is the highest number of doom on a [[Cultist]] enemy in play.\n\n[cultist]: -2. Place 1 doom on the nearest [[Cultist]] enemy.\n\n[tablet]: -3. If you fail, place 1 of your clues on your location." - end - end - -- devourer below - if scenario.getDescription() == "The Devourer Below" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -3. If you fail, after this skill test, search the encounter deck and discard pile for a [[Monster]] enemy, and draw it. Shuffle the encounter deck.\n\n[cultist]: -4. Place 2 doom on the nearest enemy.\n\n[tablet]: -5. If there is a [[Monster]] enemy at your location, take 1 damage and 1 horror.\n\n[elder_thing]: -7. If there is an [[Ancient One]] enemy in play, reveal another token." - else - tool = "Easy / Standard\n\n[skull]: -X. X is the number of [[Monster]] enemies in play.\n\n[cultist]: -2. Place 1 doom on the nearest enemy.\n\n[tablet]: -3. If there is a [[Monster]] enemy at your location, take 1 damage.\n\n[elder_thing]: -5. If there is an [[Ancient One]] enemy in play, reveal another token." - end - end - -- extracurricular activity symbols - if scenario.getDescription() == "Extracurricular Activity" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -2. If you fail, discard the top 5 cards of your deck.\n\n[cultist]: -1 (-5 instead if there are 10 or more cards in your discard pile).\n\n[elder_thing]: -X. Discard the top 3 cards of your deck. X is the total printed cost of those discarded cards." - else - tool = "Easy / Standard\n\n[skull]: -1. If you fail, discard the top 3 cards of your deck.\n\n[cultist]: -1 (-3 instead if there are 10 or more cards in your discard pile).\n\n[elder_thing]: -X. Discard the top 2 cards of your deck. X is the total printed cost of those discarded cards." - end - end - -- The house always wins symbols - if scenario.getDescription() == "The House Always Wins" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -3. You may spend 3 resources to treat this token as a 0, instead.\n\n[cultist]: -3. If you fail, discard 3 resources.\n\n[tablet]: -2. Discard 3 resources." - else - tool = "Easy / Standard\n\n[skull]: -2. You may spend 2 resources to treat this token as a 0, instead.\n\n[cultist]: -3. If you succeed, gain 3 resources.\n\n[tablet]: -2. If you fail, discard 3 resources." - end - end - -- Miskatonic museum symbols - if scenario.getDescription() == "The Miskatonic Museum" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -2 (-4 instead if Hunting Horror is at your location.)\n\n[cultist]: -3. If you fail, search the encounter deck, discard pile, and the void for Hunting Horror and spawn it at your location, if able.\n\n[tablet]: -4. If Hunting Horror is at your location, it immediately attacks you.\n\n[elder_thing]: -5. If you fail, discard an asset you control." - else - tool = "Easy / Standard\n\n[skull]: -1 (-3 instead if Hunting Horror is at your location.)\n\n[cultist]: -1. If you fail, search the encounter deck, discard pile, and the void for Hunting Horror and spawn it at your location, if able.\n\n[tablet]: -2. Return 1 of your clues to your current location.\n\n[elder_thing]: -3. If you fail, discard an asset you control." - end - end - -- essex county express symbols - if scenario.getDescription() == "The Essex County Express" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X. X is 1 more than the current Agenda #. \n\n[cultist]: Reveal another token. If you fail and it is your turn, lose all remaining actions and end your turn immediately.\n\n[tablet]: -4. Add 1 doom token to each Cultist enemy in play.\n\n[elder_thing]: -3. If you fail, choose and discard a card from your hand for each point you failed by." - else - tool = "Easy / Standard\n\n[skull]: -X. X is the current Agenda #.\n\n[cultist]: -1. If you fail and it is your turn, lose all remaining actions and end your turn immediately.\n\n[tablet]: -2. Add 1 doom token to the nearest Cultist enemy.\n\n[elder_thing]: -3. If you fail, choose and discard a card from your hand." - end - end - --blood on the Altar - if scenario.getDescription() == "Blood on the Altar" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -1 for each location in play with no encounter card underneath it.\n\n[cultist]: -4. If you fail, add 1 clue from the token pool to your location.\n\n[tablet]: -3. Reveal another token.\n\n[elder_thing]: -3. Place 1 doom on the current agenda." - else - tool = "Easy / Standard\n\n[skull]: -1 for each location in play with no encounter card underneath it (max -4).\n\n[cultist]: -2. If you fail, add 1 clue from the token pool to your location.\n\n[tablet]: -2. If you are in the Hidden Chamber, reveal another token.\n\n[elder_thing]: -3. If you fail, place 1 doom on the current agenda." - end - end - --undimensioned and unseen - if scenario.getDescription() == "Undimensioned and Unseen" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -2 for each Brood of Yog-Sothoth in play.\n\n[cultist]: Reveal another token. If you fail this test, take 1 horror and 1 damage.\n\n[tablet]: 0. You must either remove all clue tokens from a Brood of Yog-Sothoth in play, or this test automatically fails.\n\n[elder_thing]: -5. If this token is revealed during an attack or evasion attempt against a Brood of Yog-Sothoth, it immediately attacks you." - else - tool = "Easy / Standard\n\n[skull]: -1 for each Brood of Yog-Sothoth in play.\n\n[cultist]: Reveal another token. If you fail this test, take 1 horror.\n\n[tablet]: 0. You must either remove all clue tokens from a Brood of Yog-Sothoth in play, or this token's modifier is -4 instead.\n\n[elder_thing]: -3. If this token is revealed during an attack or evasion attempt against a Brood of Yog-Sothoth, it immediately attacks you." - end - end - -- where doom Awaits - if scenario.getDescription() == "Where Doom Awaits" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -2 (-5 instead if you are at an [[Altered]] location).\n\n[cultist]: Reveal another token. Cancel the effects and icons of each skill card committed to this test.\n\n[tablet]: -3. If it is Agenda 2, you automatically fail instead.\n\n[elder_thing]: -X. Discard the top 3 cards of your deck. X is the total printed cost of those discarded cards." - else - tool = "Easy / Standard\n\n[skull]: -1 (-3 instead if you are at an [[Altered]] location).\n\n[cultist]: Reveal another token. Cancel the effects and icons of each skill card committed to this test.\n\n[tablet]: -2 (-4 instead if it is Agenda 2).\n\n[elder_thing]: -X. Discard the top 2 cards of your deck. X is the total printed cost of those discarded cards." - end - end - --lost in time and space - if scenario.getDescription() == "Lost in Time and Space" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -1 for each [[Extradimensional]] location in play.\n\n[cultist]: Reveal another token. After this skill test, discard cards from the top of the encounter deck until a location is discarded. Put that location into play and move there.\n\n[tablet]: -5. If Yog-Sothoth is in play, it attacks you after this skill test.\n\n[elder_thing]: -X. X is twice the shroud value of your location. If you fail and your location is [[Extradimensional]], discard it." - else - tool = "Easy / Standard\n\n[skull]: -1 for each [[Extradimensional]] location in play (max -5).\n\n[cultist]: Reveal another token. If you fail, after this skill test, discard cards from the top of the encounter deck until a location is discarded. Put that location into play and move there.\n\n[tablet]: -3. If Yog-Sothoth is in play, it attacks you after this skill test.\n\n[elder_thing]: -X. X is the shroud value of your location. If you fail and your location is [[Extradimensional]], discard it." - end - end - -- curtain call - if scenario.getDescription() == "Curtain Call" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X, where X is the amount of horror on you. (If you have no horror on you, X is 1.)\n\n[cultist] [tablet] [elder_thing]: -5. If your location has at least 1 horror on it, take 1 horror (from the token pool). If your location has no horror on it, place 1 horror on it instead." - else - tool = "Easy / Standard\n\n[skull]: -1 (-3 instead if you have 3 or more horror on you).\n\n[cultist] [tablet] [elder_thing]: -4. If your location has at least 1 horror on it, take 1 horror (from the token pool). If your location has no horror on it, place 1 horror on it instead." - end - end - -- Last King - if scenario.getDescription() == "The Last King" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: Reveal another token. If you fail, place 1 doom on the [[Lunatic]] enemy in play with the most remaining health.\n\n[cultist]: -3. Place 1 of your clues on your location.\n\n[tablet]: -4. Take 1 horror.\n\n[elder_thing]: -X. X is the shroud value of your location. If you fail, take 1 damage." - else - tool = "Easy / Standard\n\n[skull]: Reveal another token. If you fail, place 1 doom on a [[Lunatic]] enemy in play.\n\n[cultist]: -2. If you fail, place 1 of your clues on your location.\n\n[tablet]: -4. If you fail, take 1 horror.\n\n[elder_thing]: -X. X is the shroud value of your location." - end - end - -- Echoes Past - if scenario.getDescription() == "Echoes of the Past" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X. X is the total number of doom on enemies in play.\n\n[cultist]: -4. Place 1 doom on the nearest enemy.\n\n[tablet]: -4. Discard a random card from your hand.\n\n[elder_thing]: -4. If there is an enemy at your location, take 1 horror." - else - tool = "Easy / Standard\n\n[skull]: -X. X is the highest number of doom on an enemy in play.\n\n[cultist]: -2. If you fail, place 1 doom on the nearest enemy.\n\n[tablet]: -2. If you fail, discard a random card from your hand.\n\n[elder_thing]: -2. If you fail and there is an enemy at your location, take 1 horror." - end - end - -- Unspeakable Oath - if scenario.getDescription() == "The Unspeakable Oath" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: Reveal another token. If you fail, randomly choose an enemy from among the set-aside [[Monster]] enemies and place it beneath the act deck without looking at it. (Limit once per test.)\n\n[cultist]: -X. X is the amount of horror on you. If you fail, take 1 horror.\n\n[tablet]: -X. X is the base shroud value of your location. If you fail, take 1 horror.\n\n[elder_thing]: 0. Either randomly choose an enemy from among the set-aside [[Monster]] enemies and place it beneath the act deck without looking at it, or this test automatically fails instead." - else - tool = "Easy / Standard\n\n[skull]: -1. If you fail, randomly choose an enemy from among the set-aside [[Monster]] enemies and place it beneath the act deck without looking at it.\n\n[cultist]: -X. X is the amount of horror on you.\n\n[tablet]: -X. X is the base shroud value of your location.\n\n[elder_thing]: 0. Either randomly choose an enemy from among the set-aside [[Monster]] enemies and place it beneath the act deck without looking at it, or this test automatically fails instead." - end - end - -- A Phantom of Truth - if scenario.getDescription() == "A Phantom of Truth" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X. X is the amount of doom in play.\n\n[cultist]: -2. Move each unengaged [[Byakhee]] in play once toward the nearest investigator.\n\n[tablet]: -4. Cancel the effects and icons of each skill card committed to this test.\n\n[elder_thing]: -3. If you fail, lose 1 resource for each point you failed by." - else - tool = "Easy / Standard\n\n[skull]: -X. X is the amount of doom in play (max 5).\n\n[cultist]: -2. If you fail, move each unengaged [[Byakhee]] in play once toward the nearest investigator.\n\n[tablet]: -3. Cancel the effects and icons of each skill card committed to this test.\n\n[elder_thing]: -2. If you fail, lose 1 resource for each point you failed by." - end - end - -- The Pallid Mask - if scenario.getDescription() == "The Pallid Mask" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X. X is the number of locations away from the starting location you are.\n\n[cultist]: -3. If this token is revealed during an attack and this skill test is successful, this attack deals no damage.\n\n[tablet]: -3. If there is a [[Ghoul]] or [[Geist]] enemy at your location, it readies and attacks you (if there is more than one, choose one).\n\n[elder_thing]: -4. If you fail, search the encounter deck and discard pile for a [[Ghoul]] or [[Geist]] enemy and draw it." - else - tool = "Easy / Standard\n\n[skull]: -X. X is the number of locations away from the starting location you are (max 5).\n\n[cultist]: -2. If this token is revealed during an attack, and this skill test is successful, this attack deals 1 less damage.\n\n[tablet]: -2. If there is a ready [[Ghoul]] or [[Geist]] enemy at your location, it attacks you (if there is more than one, choose one).\n\n[elder_thing]: -3. If you fail, search the encounter deck and discard pile for a [[Ghoul]] or [[Geist]] enemy and draw it." - end - end - -- Dim Carcosa - if scenario.getDescription() == "Dim Carcosa" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X. X is the amount of horror on you.\n\n[cultist]: Reveal another token. If you fail, take 2 horror.\n\n[tablet]: -5. If you fail and Hastur is in play, place 1 clue on your location (from the token bank).\n\n[elder_thing]: -5. If this token is revealed during an attack or evasion attempt against a [[Monster]] or [[Ancient One]] enemy, lose 1 action." - else - tool = "Easy / Standard\n\n[skull]: -2 (-4 instead if you have no sanity remaining).\n\n[cultist]: Reveal another token. If you fail, take 1 horror.\n\n[tablet]: -3. If you fail and Hastur is in play, place 1 clue on your location (from the token bank).\n\n[elder_thing]: -3. If this token is revealed during an attack or evasion attempt against a [[Monster]] or [[Ancient One]] enemy, lose 1 action." - end - end - if scenario.getDescription() == "Black Stars Rise" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X. X is the total amount of doom on agendas in play.\n\n[cultist]: Reveal another token. If there is an enemy with 1 or more doom on it at your location, this test automatically fails instead.\n\n[tablet]: Reveal another token. If you do not succeed by at least 1, place 1 doom on each agenda.\n\n[elder_thing]: -3. If you fail, search the encounter deck and discard pile for a [[Byakhee]] enemy and draw it." - else - tool = "Easy / Standard\n\n[skull]: -X. X is the highest amount of doom on an agenda in play.\n\n[cultist]: Reveal another token. If this token is revealed during an attack or evasion attempt against an enemy with doom on it, this skill test automatically fails instead.\n\n[tablet]: Reveal another token. If you fail, place 1 doom on each agenda.\n\n[elder_thing]: -2. If you fail, search the encounter deck and discard pile for a [[Byakhee]] enemy and draw it." - end - end - -- untamed Wilds - if scenario.getDescription() == "The Untamed Wilds" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X. X is 1 higher than the number of vengeance points in the victory display.\n\n[cultist]: -X. X is the number of locations in play.\n\n[tablet]: -X. X is the number of cards in the exploration deck (min 3).\n\n[elder_thing]: -3. If you are poisoned, this test automatically fails instead. If you are not poisoned and you fail, put a set-aside Poisoned weakness into play in your threat area." - else - tool = "Easy / Standard\n\n[skull]: -X. X is the number of vengeance points in the victory display.\n\n[cultist]: -X. X is the number of locations in play (max 5).\n\n[tablet]: -X. X is the number of cards in the exploration deck (max 5).\n\n[elder_thing]: -2. If you are poisoned, this test automatically fails instead." - end - end - --The doom of Eztli - if scenario.getDescription() == "The Doom of Eztli" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -2 (-4 instead if there is doom on your location).\n\n[cultist] [tablet]: -X. X is the total amount of doom on locations in play.\n\n[elder_thing]: Reveal another chaos token. Place 1 doom on your location." - else - tool = "Easy / Standard\n\n[skull]: -1 (-3 instead if there is doom on your location).\n\n[cultist] [tablet]: -X. X is the number of locations with doom on them.\n\n[elder_thing]: Reveal another chaos token. If you fail, place 1 doom on your location." - end - end - --Threads of Fate - if scenario.getDescription() == "Threads of Fate" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull] : -X. X is the total number of doom in play.\n\n[cultist]: -2. If you do not succeed by at least 2, take 1 direct damage.\n\n[tablet]: -2. If you do not succeed by at least 2, place 1 doom on each [[cultist]] enemy.\n\n[elder_thing]: -3. If you fail, lose 1 of your clues." - else - tool = "Easy / Standard\n\n[skull] : -X. X is the highest number of doom on a [[cultist]] enemy.\n\n[cultist]: -2. If you do not succeed by at least 1, take 1 damage.\n\n[tablet]: -2. If you do not succeed by at least 1, place 1 doom on the nearest [[cultist]] enemy.\n\n[elder_thing]: -2. If you fail, lose 1 of your clues." - end - end - --The boundary beyond - if scenario.getDescription() == "The Boundary Beyond" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -2 (-4 instead if you are at an [[Ancient]] location).\n\n[cultist]: Reveal another token. If you fail, place 1 doom on each [[Cultist]] enemy.\n\n[tablet]: Reveal another token. If you fail, each [[Serpent]] enemy at your location attacks you.\n\n[elder_thing]: -4. Place 1 clue (from the token pool) on the nearest [[Ancient]] location." - else - tool = "Easy / Standard\n\n[skull]: -1 (-3 instead if you are at an [[Ancient]] location).\n\n[cultist]: Reveal another token. If you fail, place 1 doom on a [[Cultist]] enemy.\n\n[tablet]: Reveal another token. If you fail and there is a [[Serpent]] enemy at your location, it attacks you.\n\n[elder_thing]: -4. If you fail, place 1 clue (from the token pool) on the nearest [[Ancient]] location." - end - end - --Heart of the elders p1 - if scenario.getDescription() == "Heart of the Elders" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -2 (-4 instead if you are in a [[Cave]] location).\n\n[cultist]: -3. If you fail, place 1 doom on your location.\n\n[tablet]: -3. If you are poisoned, this test automatically fails instead. If you are not poisoned and you fail, put a set-aside Poisoned weakness into play in your threat area.\n\n[elder_thing]: -4. If you fail, take 1 horror." - else - tool = "Easy / Standard\n\n[skull]: -1 (-3 instead if you are in a [[Cave]] location).\n\n[cultist]: -2. If you fail, place 1 doom on your location.\n\n[tablet]: -2. If you are poisoned, this test automatically fails instead.\n\n[elder_thing]: -3. If you fail, take 1 horror." - end - end - -- City of Archives - if scenario.getDescription() == "The City of Archives" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -2 (if you have 5 or more cards in your hand, you automatically fail instead).\n\n[cultist] or [elder_thing]: -2. Place 1 of your clues on your location.\n\n[tablet]: -3. For each point you fail by, discard 1 random card from your hand." - else - tool = "Easy / Standard\n\n[skull]: -1 (-3 instead if you have 5 or more cards in your hand).\n\n[cultist] or [elder_thing]: -2. If you fail, place 1 of your clues on your location.\n\n[tablet]: -3. If you fail, discard 1 random card from your hand." - end - end - --Depths of Yoth - if scenario.getName() == "Scenario - Easy/Standard" then - tool = "Easy / Standard\n\n[skull]: -X. X is the current depth level.\n\n[cultist]: Reveal another token. If you fail, each [[Serpent]] enemy at your location or a connecting location heals 2 damage.\n\n[tablet]: Reveal another token. If you fail, place 1 clue on your location (from the token pool).\n\n[elder_thing]: -2. If there are 3 or more vengeance points in the victory display, you automatically fail this test, instead." - end - --hard - if scenario.getName() == "Scenario - Hard/Expert" then - tool = "Hard / Expert\n\n[skull]: -X. X is the current depth level. If you fail, take 1 horror.\n\n[cultist]: Reveal another token. If you fail, each [[Serpent]] enemy at your location or a connecting location heals 2 damage.\n\n[tablet]: Reveal another token. If you fail, place 1 clue on your location (from the token pool).\n\n[elder_thing]: -4. If there are 3 or more vengeance points in the victory display, you automatically fail this test, instead." - end - --Shattered Aeons - if scenario.getDescription() == "Shattered Aeons" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -3 (-5 instead if the Relic of Ages is at your location).\n\n[cultist]: -3. If you do not succeed by at least 1, place 1 doom on each [[Cultist]] enemy.\n\n[tablet]: -3. If you are poisoned, this test automatically fails instead. If you are not poisoned and you fail, put a set-aside Poisoned weakness into play in your threat area.\n\n[elder_thing]: -3. Shuffle the topmost [[Hex]] treachery in the encounter discard pile into the exploration deck." - else - tool = "Easy / Standard\n\n[skull]: -2 (-4 instead if the Relic of Ages is at your location).\n\n[cultist]: -2. If you do not succeed by at least 1, place 1 doom on the nearest [[Cultist]] enemy.\n\n[tablet]: -2. If you are poisoned, this test automatically fails instead.\n\n[elder_thing]: -2. If you fail, shuffle the topmost [[Hex]] treachery in the encounter discard pile into the exploration deck." - end - end - --secret scenario - if scenario.getDescription() == "Turn Back Time" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X . X is the total amount of doom on locations.\n\n[elder_thing]: -6. Place 1 doom on your location." - else - tool = "Easy / Standard\n\n[skull]: -X . X is the number of locations with doom on them.\n\n[elder_thing]: -4. If you fail, place 1 doom on your location." - end - end - --Dissappearance Twilight - if scenario.getDescription() == "Disappearance at the Twilight Estate" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -5. If you fail and this is an attack or evasion attempt, resolve each haunted ability on your location." - else - tool = "Easy / Standard\n\n[skull]: -3. If you fail and this is an attack or evasion attempt, resolve each haunted ability on your location." - end - end - --Witching Hour - if scenario.getDescription() == "The Witching Hour" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -2. Discard cards from the top of the encounter deck equal to this test's difficulty.\n\n[tablet]: -2. If you fail, after this test resolves, draw the bottommost treachery in the encounter discard pile.\n\n[elder_thing]: -4. If you fail, ready each [[Witch]] enemy at your location and at each connecting location. Heal all damage from each of those enemies." - else - tool = "Easy / Standard\n\n[skull]: -1. For each point you fail by, discard the top card of the encounter deck.\n\n[tablet]: -1. If you fail, after this test resolves, draw the bottommost treachery in the encounter discard pile.\n\n[elder_thing]: -3. If you fail, choose an exhausted or damaged [[Witch]] enemy at your location or at a connecting location. Ready that enemy and heal all damage from it." - end - end - --Death's Doorstep - if scenario.getDescription() == "At Death's Doorstep" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -2 (-4 instead if your location is haunted).\n\n[tablet]: -3. If this is an attack or evasion attempt, resolve each haunted ability on your location.\n\n[elder_thing]: -4. If there is a [[Spectral]] enemy at your location, take 1 damage and 1 horror." - else - tool = "Easy / Standard\n\n[skull]: -1 (-3 instead if your location is haunted).\n\n[tablet]: -2. If you fail and this is an attack or evasion attempt, resolve each haunted ability on your location.\n\n[elder_thing]: -2. If there is a [[Spectral]] enemy at your location, take 1 damage." - end - end - --Secret Name - if scenario.getDescription() == "The Secret Name" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -2 (-4 instead if you are at an [[Extradimensional]] location).\n\n[cultist]: Reveal another chaos token. If you fail, discard the top 5 cards of the encounter deck.\n\n[tablet]: -3. If you fail and Nahab is in play, she attacks you (regardless of her current location).\n\n[elder_thing]: -4. Resolve the hunter keyword on each enemy in play." - else - tool = "Easy / Standard\n\n[skull]: -1 (-3 instead if you are at an [[Extradimensional]] location).\n\n[cultist]: Reveal another chaos token. If you fail, discard the top 3 cards of the encounter deck.\n\n[tablet]: -2. If you fail and Nahab is at your location, she attacks you.\n\n[elder_thing]: -3. If you fail, resolve the hunter keyword on each enemy in play." - end - end - --Wages of Sin - if scenario.getDescription() == "The Wages of Sin" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X. X is the number of copies of Unfinished Business in the victory display. Reveal another token.\n\n[cultist]: -4. Until the end of the rount, each Heretic enemy in play gets +1 fight and +1 evade.\n\n[tablet]: -4. If you fail, trigger the forced ability on a copy of Unfinished Business in your threat area as if it were the end of the round.\n\n[elder_thing]: -2. If this is an attack or evasion attempt, resolve each haunted ability on your location." - else - tool = "Easy / Standard\n\n[skull]: -X. X is 1 higher than the number of copies of Unfinished Business in the victory display.\n\n[cultist]: -3. Until the end of the round, each Heretic enemy in play gets +1 fight and +1 evade.\n\n[tablet]: -3. If you fail, trigger the forced ability on a copy of Unfinished Business in yout threat area as if it were the end of the round.\n\n[elder_thing]: -2. If you fail and this is an attack or evasion attempt, resolve each haunted ability on your location." - end - end - -- For The Greater Good - if scenario.getDescription() == "For the Greater Good" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X. X is the total number of doom among [[Cultist]] enemies in play.\n\n[cultist]: -2. Reveal another token.\n\n[tablet]: -3. If you fail, place 1 doom on each [[Cultist]] enemy in play. If there are no [[Cultist]] enemies in play, reveal another token.\n\n[elder_thing]: -3. If you fail, move all doom from the [[Cultist]] enemy with the most doom on it to the current agenda. If no [[Cultist]] enemies in play have doom on them, reveal another token." - else - tool = "Easy / Standard\n\n[skull]: -X. X is the highest number of doom on a [[Cultist]] enemy in play.\n\n[cultist]: -2. Reveal another token.\n\n[tablet]: -3. If you fail, place 1 doom on the nearest [[Cultist]] enemy.\n\n[elder_thing]: -3. If you fail, move 1 doom from the nearest [[Cultist]] enemy to the current agenda." - end - end - --Union and Disillusion - if scenario.getDescription() == "Union and Disillusion" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -3. If this is a skill test during a circle action, reveal another token.\n\n[cultist]: -4. If you have no damage on you, take 1 damage. If you have no horror on you, take 1 horror.\n\n[tablet]: -4. If you fail, a [[Spectral]] enemy at your location attacks you (even if it is exhausted).\n\n[elder_thing]: -4. If this is a skill test during a circle action and you fail, resolve each haunted ability on your location." - else - tool = "Easy / Standard\n\n[skull]: -2. If this is a skill test during a circle action, reveal another token.\n\n[cultist]: -3. If you have no damage on you, take 1 damage. If you have no horror on you, take 1 horror.\n\n[tablet]: -3. If you fail, a [[Spectral]] enemy at your location attacks you (even if it is exhausted).\n\n[elder_thing]: -3. If this is a skill test during a circle action and you fail, resolve each haunted ability on your location." - end - end - --Clutches of Chaos - if scenario.getDescription() == "In the Clutches of Chaos" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X. X is 1 higher than the total amount of doom and breaches on your location.\n\n[cultist]: Reveal another token. If there are fewer than 3 breaches on your location, place 1 breach on your location.\n\n[tablet]: -3. For each point you fail by, remove 1 breach from the current act.\n\n[elder_thing]: -4. If you fail, place 1 breach on a random location." - else - tool = "Easy / Standard\n\n[skull]: -X. X is the total amount of doom and breaches on your location.\n\n[cultist]: Reveal another token. If there are fewer than 3 breaches on your location, place 1 breach on your location.\n\n[tablet]: -2. For each point you fail by, remove 1 breach from the current act.\n\n[elder_thing]: -3. If you fail, place 1 breach on a random location." - end - end - --Before the Black Throne - if scenario.getDescription() == "Before the Black Throne" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X. X is the amount of doom on Azathoth, to a minimum of 2.\n\n[cultist]: Reveal another token. If you fail, search the encounter deck and discard pile for a [[Cultist]] enemy and draw it. Shuffle the encounter deck.\n\n[tablet]: -3. If you fail, Azathoth attacks you.\n\n[elder_thing]: -6. If your modified skill value for this test is 0, place 1 doom on Azathoth." - else - tool = "Easy / Standard\n\n[skull]: -X. X is half of the doom on Azathoth (rounded up), to a minimum of 2.\n\n[cultist]: Reveal another token. If you fail, search the encounter deck and discard pile for a [[Cultist]] enemy and draw it. Shuffle the encounter deck.\n\n[tablet]: -2. If you fail, Azathoth attacks you.\n\n[elder_thing]: -4. If your modified skill value for this test is 0, place 1 doom on Azathoth." - end - end - --Beyond the gates of sleep - if scenario.getDescription() == "Beyond the Gates of Sleep" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull] : -X. X is the number of cards in your hand.\n\n[cultist]: -X. X is the number of revealed [[Woods]] locations.\n\n[tablet]: -2. If this is an attack or evasion attempt against a swarming enemy, add 1 swarm card to it." - else - tool = "Easy / Standard\n\n[skull] : -X. X is half the number of cards in your hand (rounded up).\n\n[cultist]: -X. X is the number of revealed Enchanted Woods locations.\n\n[tablet]: -2. If you fail and this is an attack or evasion attempt against a swarming enemy, add 1 swarm card to it." - end - end - --Waking Nightmare - if scenario.getDescription() == "Waking Nightmare" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -2 (-4 instead if you are engaged with a [[Staff]] enemy).\n\n[cultist]: Reveal another chaos token. If it is agenda 2 or 3, make an infestation test.\n\n[elder_thing]: -X. X is 1 higher than the number of infested locations." - else - tool = "Easy / Standard\n\n[skull]: -1 (-3 instead if you are engaged with a [[Staff]] enemy).\n\n[cultist]: Reveal another chaos token. If you fail and it is agenda 2 or 3, make an infestation test.\n\n[elder_thing]: -X. X is the number of infested locations." - end - end - --The search for kadath - if scenario.getDescription() == "The Search for Kadath" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X. X is 1 more than the number of Signs of the Gods the investigators have uncovered.\n\n[cultist]: Reveal another token. If this token is revealed during an investigation and this skill test fails, increase that location's shroud by 2 for the remainder of the round.\n\n[tablet]: -3. If you fail, either take 1 damage and 1 horror, or place 1 doom on the current agenda.\n\n[elder_thing]: +1. The black cat points you in the right direction. If this token is revealed during an investigation and you succeed, discover 1 additional clue." - else - tool = "Easy / Standard\n\n[skull]: -X. X is the number of Signs of the Gods the investigators have uncovered.\n\n[cultist]: Reveal another token. If this token is revealed during an investigation and this skill test fails, increase that location's shroud by 1 for the remainder of the round.\n\n[tablet]: -2. If you fail, either take 1 damage and 1 horror, or place 1 doom on the current agenda.\n\n[elder_thing]: +2. The black cat points you in the right direction. If this token is revealed during an investigation and you succeed, discover 1 additional clue." - end - end - --A thousand shapes of horror - if scenario.getDescription() == "A Thousand Shapes of Horror" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -2 (-4 instead if you are at a [[Graveyard]] location).\n\n[cultist]: Reveal another token. If you fail and The Unnamable is in play, it attacks you (regardless of its current location).\n\n[tablet]: +1. The black cat causes a distraction. If this test is successful, choose and evade an enemy at any location with a fight value of X or lower, where X is the amount you succeeded by.\n\n[elder_thing]: -3. If you fail, you must either place 1 of your clues on your location or take 1 damage." - else - tool = "Easy / Standard\n\n[skull]: -1 (-3 instead if you are at a [[Graveyard]] location).\n\n[cultist]: Reveal another token. If you fail and The Unnamable is in play, it attacks you (regardless of its current location).\n\n[tablet]: +2. The black cat causes a distraction. If this test is successful, choose and evade an enemy at any location with a fight value of X or lower, where X is the amount you succeeded by.\n\n[elder_thing]: -2. If you fail, you must either place 1 of your clues on your location or take 1 damage." - end - end - --Dark Side of the moon - if scenario.getDescription() == "Dark Side of the Moon" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X. X is your alarm level.\n\n[cultist]: Reveal another token. If you fail and your alarm level is higher than your modified skill value, after this skill test ends, draw the top card of the encounter deck.\n\n[tablet]: -2. If you fail, raise your alarm level by 1.\n\n[elder_thing]: 0. The black cat summons several other cats to help. If this token is revealed during an evasion attempt and you succeed, deal 2 damage to the evaded enemy." - else - tool = "Easy / Standard\n\n[skull]: -X. X is half your alarm level (rounded up).\n\n[cultist]: Reveal another token. If you fail and your alarm level is higher than your modified skill value, after this skill test ends, draw the top card of the encounter deck.\n\n[tablet]: -1. If you fail, raise your alarm level by 1.\n\n[elder_thing]: +1. The black cat summons several other cats to help. If this token is revealed during an evasion attempt and you succeed, deal 2 damage to the evaded enemy." - end - end - --point of no return - if scenario.getDescription() == "Point of No Return" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X. X is 1 more than the amount of damage on this card.\n\n[cultist]: Reveal another token. If you fail, after this skill test ends, draw the top card of the encounter deck.\n\n[tablet]: 0. The black cat helps you navigate through the death-fire. If this token is revealed during an investigation and you succeed, draw 1 card.\n\n[elder_thing]: -4. If you fail by 2 or more, choose a ready enemy at your location or a connecting location. That enemy moves to your location, engages you, and makes an immediate attack." - else - tool = "Easy / Standard\n\n[skull]: -X. X is the amount of damage on this card.\n\n[cultist]: Reveal another token. If you fail, after this skill test ends, draw the top card of the encounter deck.\n\n[tablet]: +1. The black cat helps you navigate through the death-fire. If this token is revealed during an investigation and you succeed, draw 1 card.\n\n[elder_thing]: -3. If you fail by 2 or more, choose a ready enemy at your location or a connecting location. That enemy moves to your location, engages you, and makes an immediate attack." - end - end - --where the gods dwell - if scenario.getDescription() == "Where the Gods Dwell" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X. X is the number of the current act plus the number of the current agenda.\n\n[cultist]: Reveal another token. If you fail, place 1 doom on the current agenda. This effect may cause the current agenda to advance.\n\n[tablet]: -6. If you fail, choose and reveal a copy of Nyarlathotep in your hand. It attacks you and is shuffled into the encounter deck.\n\n[elder_thing]: -1. The black cat reminds you that it's all a dream." - else - tool = "Easy / Standard\n\n[skull]: -X. X is the number of the current act.\n\n[cultist]: Reveal another token. If you fail, place 1 doom on the current agenda.\n\n[tablet]: -4. If you fail, choose and reveal a copy of Nyarlathotep in your hand. It attacks you and is shuffled into the encounter deck.\n\n[elder_thing]: 0. The black cat reminds you that it's all a dream." - end - end - --weaver of the cosmos - if scenario.getDescription() == "Weaver of the Cosmos" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X. X is the amount of doom on locations in play.\n\n[cultist]: Reveal another token. If you fail, and there is an [[Ancient One]] enemy at your location, it attacks you.\n\n[tablet]: -1. The black cat tears at the web with its claws. If you succeed by 2 or more, remove 1 doom from your location.\n\n[elder_thing]: -4. If this skill test fails during an attack against a [[Spider]] enemy, place 1 doom on that enemy's location." - else - tool = "Easy / Standard\n\n[skull]: -X. X is the highest amount of doom on a location in play.\n\n[cultist]: Reveal another token. If you fail, and there is an [[Ancient One]] enemy at your location, it attacks you.\n\n[tablet]: 0. The black cat tears at the web with its claws. If you succeed by 2 or more, remove 1 doom from your location.\n\n[elder_thing]: -3. If this skill test fails during an attack against a [[Spider]] enemy, place 1 doom on that enemy's location." - end - end - --pit of despair - if scenario.getDescription() == "The Pit of Despair" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -2 (-3 instead if your location is partially flooded; -4 instead if your location is fully flooded).\n\n[cultist]: -2. If your location is flooded, take 1 damage.\n\n[tablet]: -2. If you control a key, take 1 horror.\n\n[elder_thing]: -3. If The Amalgam is in the depths, put it into play engaged with you." - else - tool = "Easy / Standard\n\n[skull]: -1 (-2 instead if your location is partially flooded; -3 instead if your location is fully flooded).\n\n[cultist]: -2. If you fail and your location is flooded, take 1 damage.\n\n[tablet]: -2. If you fail and you control a key, take 1 horror.\n\n[elder_thing]: -3. If you fail and The Amalgam is in the depths, put it into play engaged with you." - end - end - --vanishing of elena harper - if scenario.getDescription() == "The Vanishing of Elina Harper" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X. X is 1 more than the current agenda number.\n\n[cultist]: -2. Place 1 doom on the nearest enemy (2 doom instead if you failed).\n\n[tablet]: -3. Take 1 horror (1 horror and 1 damage instead if you failed).\n\n[elder_thing]: -4. Place 1 of your clues on your location (2 clues instead if you failed)." - else - tool = "Easy / Standard\n\n[skull]: -X. X is the current agenda number.\n\n[cultist]: -2. If you fail, place 1 doom on the nearest enemy.\n\n[tablet]: -3. If you fail, take 1 horror.\n\n[elder_thing]: -4. If you fail, place 1 of your clues on your location." - end - end - --in too deep - if scenario.getDescription() == "In Too Deep" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -2 for each location to the east of your location (on the same row).\n\n[cultist]: -4. If you fail, move to the connecting location to the east, ignoring all barriers.\n\n[tablet]: -5. If you fail, choose a connecting location with no barriers between it and your location. Place 1 barrier between the two locations.\n\n[elder_thing]: -X. X is twice the number of barriers between your location and all connecting locations." - else - tool = "Easy / Standard\n\n[skull]: -1 for each location to the east of your location (on the same row).\n\n[cultist]: -2. If you fail, move to the connecting location to the east, ignoring all barriers.\n\n[tablet]: -3. If you fail, choose a connecting location with no barriers between it and your location. Place 1 barrier between the two locations.\n\n[elder_thing]: -X. X is the number of barriers between your location and all connecting locations." - end - end - --devil reef - if scenario.getDescription() == "Devil Reef" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -X. X is 1 more than the number of keys the investigators control.\n\n[cultist]: -3. If this is an attack or evasion attempt against a [[Deep One]] enemy, it engages you. (If it is already engaged with you, it disengages first, then re-engages you.)\n\n[tablet]: -4. If you are not in a vehicle, take 1 damage.\n\n[elder_thing]: -5. If your location has a key on it, take 1 horror." - else - tool = "Easy / Standard\n\n[skull]: -X. X is the number of keys the investigators control.\n\n[cultist]: -2. If you fail and this is an attack or evasion attempt against a [[Deep One]] enemy, it engages you. (If it is already engaged with you, it disengages first, then re-engages you.)\n\n[tablet]: -3. If you fail and you are not in a vehicle, take 1 damage.\n\n[elder_thing]: -4. If you fail and your location has a key on it, take 1 horror." - end - end - --horror in high gear - if scenario.getDescription() == "Horror in High Gear" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -2 (-4 instead if there are 6 or fewer locations remaining in the Road deck).\n\n[cultist]: -2. For each point you fail by, an investigator in your vehicle places 1 of their clues on your location.\n\n[tablet]: -3. For each point you fail by, an investigator in your vehicle loses 1 resource.\n\n[elder_thing]: -4. Resolve the hunter keyword on each enemy in play." - else - tool = "Easy / Standard\n\n[skull]: -1 (-3 instead if there are 6 or fewer locations remaining in the Road deck).\n\n[cultist]: -1. For each point you fail by, an investigator in your vehicle places 1 of their clues on your location.\n\n[tablet]: -2. For each point you fail by, an investigator in your vehicle loses 1 resource.\n\n[elder_thing]: -4. If you fail, resolve the hunter keyword on each enemy in play." - end - end - --light in the fog - if scenario.getDescription() == "A Light in the Fog" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -2. If your location is flooded, reveal an additional chaos token.\n\n[cultist]: -2. If you fail, after this test ends, increase the flood level of your location (if you cannot, take 1 horror instead).\n\n[tablet]: -3. If you fail this test and your location is flooded, take 2 damage.\n\n[elder_thing]: -4. Move the nearest unengaged enemy once toward your location. It loses aloof during this movement." - else - tool = "Easy / Standard\n\n[skull]: -1. If your location is flooded, reveal an additional chaos token.\n\n[cultist]: -2. If you fail, after this test ends, increase the flood level of your location.\n\n[tablet]: -3. If you fail this test and your location is flooded, take 1 damage.\n\n[elder_thing]: -4. If you fail, move the nearest ready unengaged enemy once toward your location. It loses aloof during this movement." - end - end - --lair of dagon - if scenario.getDescription() == "The Lair of Dagon" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -2 for each key on this card.\n\n[cultist]: -2. Reveal an additional chaos token. If you reveal 1 or more [curse] tokens during this test, you automatically fail.\n\n[tablet]: -3. Place each key you control on your location and take 1 damage.\n\n[elder_thing]: -4. Add 2 [curse] tokens to the chaos bag." - else - tool = "Easy / Standard\n\n[skull]: -1 for each key on this card.\n\n[cultist]: 0. Reveal an additional chaos token. If you reveal 1 or more [curse] tokens during this test, you automatically fail.\n\n[tablet]: -3. If you fail, place each key you control on your location.\n\n[elder_thing]: -4. If you fail, add 1 [curse] token to the chaos bag." - end - end - --into the maelstrom - if scenario.getDescription() == "Into the Maelstrom" then - if scenario.is_face_down == true then - tool = "Hard / Expert\n\n[skull]: -2 (-4 instead if there are 4 or more unflooded [[Y'ha-nthlei]] locations in play).\n\n[cultist]: -4. If you fail, place 1 doom on the current agenda (this may cause the current agenda to advance).\n\n[tablet]: -5. If you fail, you must either increase the flood level of your location or take 1 damage.\n\n[elder_thing]: -6. If you fail and there is a key on your location, take 1 horror." - else - tool = "Easy / Standard\n\n[skull]: -1 (-3 instead if there are 4 or more unflooded [[Y'ha-nthlei]] locations in play).\n\n[cultist]: -3. If you fail, place 1 doom on the current agenda (this may cause the current agenda to advance).\n\n[tablet]: -4. If you fail, you must either increase the flood level of your location or take 1 damage.\n\n[elder_thing]: -5. If you fail and there is a key on your location, take 1 horror." - end - end - end - getObjectFromGUID("8b081b").editButton({index = 6, tooltip = tool}) - getObjectFromGUID("bd0ff4").editButton({index = 6, tooltip = tool}) - getObjectFromGUID("383d8b").editButton({index = 6, tooltip = tool}) - getObjectFromGUID("0840d5").editButton({index = 6, tooltip = tool}) -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_red Draw Token Button Tooltip Renamer cc77a8.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_red Draw Token Button Tooltip Renamer cc77a8.yaml deleted file mode 100644 index ef1b21d94..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_red Draw Token Button Tooltip Renamer cc77a8.yaml +++ /dev/null @@ -1,40 +0,0 @@ -AltLookAngle: - x: 0 - y: 0 - z: 0 -Autoraise: true -ColorDiffuse: - b: 0 - g: 0 - r: 1 -Description: By Pyxel -DragSelectable: true -GMNotes: '' -GUID: cc77a8 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Checker_red Draw Token Button Tooltip Renamer cc77a8.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Checker_red -Nickname: Draw Token Button Tooltip Renamer -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 30.5 - posY: 4.08 - posZ: -20.93 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model Custom Data Helper 2547b3.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model Custom Data Helper 2547b3.ttslua index 21e3fa77d..cf8aa7716 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model Custom Data Helper 2547b3.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model Custom Data Helper 2547b3.ttslua @@ -41,6 +41,9 @@ local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = ( return require, loaded, register, modules end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/CustomDataHelper") +end) __bundle_register("core/CustomDataHelper", function(require, _LOADED, __bundle_register, __bundle_modules) -- set true to enable debug logging DEBUG = false @@ -119,7 +122,4 @@ function onload(save_state) dataHelper.call("updateHiddenCards", {self.getGUID()}) end end) -__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) -require("core/CustomDataHelper") -end) return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model Custom Data Helper 2547b3.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model Custom Data Helper 2547b3.yaml index 315cb659e..f763c18cb 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model Custom Data Helper 2547b3.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model Custom Data Helper 2547b3.yaml @@ -1,24 +1,24 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: b: 0.339915335 g: 0.507659256 r: 0.7222887 SpecularIntensity: 0.4 - SpecularSharpness: 7 + SpecularSharpness: 7.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/254843371583187306/6844B833AD55B9A34095067B201B311E1348325F/ MaterialIndex: 2 MeshURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ @@ -47,9 +47,9 @@ Transform: posX: 30.16 posY: 4.16 posZ: -21.52 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.5 scaleY: 0.5 scaleZ: 0.5 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model Lucky Penny 2ab443.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model Lucky Penny 2ab443.yaml index fad1ea839..abfc1898f 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model Lucky Penny 2ab443.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model Lucky Penny 2ab443.yaml @@ -1,24 +1,24 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: https://www.dropbox.com/s/wyu6zud8r8ewqnt/Coin.obj?dl=1 Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://www.dropbox.com/s/g0c0hdqw5w3q1an/Blursed-Coin-Faces.png?dl=1 MaterialIndex: 3 MeshURL: https://www.dropbox.com/s/wyu6zud8r8ewqnt/Coin.obj?dl=1 @@ -47,9 +47,9 @@ Transform: posX: 29.59 posY: 4.09 posZ: -21.08 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.3 scaleY: 0.3 scaleZ: 0.3 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e.yaml index 5ae091b69..e8c36fbaa 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - !include 'Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag For Other Fan Content 7f8782.yaml' @@ -25,13 +25,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1786216803655030730/FB25E1090FC3F69A55E021CB1A31B64FBB50BD23/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -62,9 +62,9 @@ Transform: posX: -27.38 posY: 2.5 posZ: -27.94 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.2 scaleY: 1.2 scaleZ: 1.2 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag For Other Fan Content 7f8782.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag For Other Fan Content 7f8782.yaml index 51eade282..6c5ff87de 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag For Other Fan Content 7f8782.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag For Other Fan Content 7f8782.yaml @@ -1,46 +1,46 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 0 + b: 0.0 g: 0.36652 r: 0.70588 ContainedObjects: - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 0 + b: 0.0 g: 0.36652 r: 0.70588 ContainedObjects: - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127826278/41B14E1673F5F709A93FDAF0F142B53E18AEA3C9/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127641434/3B605FA81140800D2929A2F4FC605C61113815ED/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -61,24 +61,24 @@ ContainedObjects: States: '1': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127826516/584635E992B674121F4E8C62F1CA259D8D33A9C2/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127641670/CAB545E928EDC617CA1314223774D88A2CFA2E19/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -103,10 +103,10 @@ ContainedObjects: posY: 0.960002661 posZ: -2.48673582 rotX: -2.41597045e-05 - rotY: 180 + rotY: 180.0 rotZ: 1.29868076e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -116,33 +116,33 @@ ContainedObjects: posX: 23.243 posY: 1.971 posZ: -4.644 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127826334/69C1571BD3ED38E6837B38FC2A9784C90D6686EA/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127641507/8115C513A8A814EB45C429400A4E9679A4AA27C7/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -163,24 +163,24 @@ ContainedObjects: States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127589908/773A07E5D19FAFDA6AF71CEBC069175C769EF9ED/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127588327/419EF2D650774CCB0500C73CFC43AC77D234747F/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -208,7 +208,7 @@ ContainedObjects: rotY: 270.756348 rotZ: 349.5606 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -218,33 +218,33 @@ ContainedObjects: posX: 21.879 posY: 1.971 posZ: -4.199 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127826572/5AB6F8CD81E839C6CFD9555918A3E264300CBF04/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127642047/17C45A9A42806A38F1B15D4358DDA48258D819C4/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -265,24 +265,24 @@ ContainedObjects: States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127590872/69AEF24314609C572C8EC2443582BE04F2186806/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127588477/F570ACBA35CB2F916284EFF8F671646235DA822C/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -310,7 +310,7 @@ ContainedObjects: rotY: 270.0128 rotZ: 356.5814 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -320,33 +320,33 @@ ContainedObjects: posX: 20.017 posY: 1.971 posZ: -4.015 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127826462/33429FB27677A30F054B0ACF868F9CB80879046C/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127641618/DCD566DE13398919BD5F836857CCE5E1B15A4D7A/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -367,24 +367,24 @@ ContainedObjects: States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127593415/FA319D0449914FDED7A263FBECEF3FA4714C1905/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127588525/D4FA9699B6ED018ED996622689AD6384CA7833D2/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -412,7 +412,7 @@ ContainedObjects: rotY: 270.00824 rotZ: 0.000190097417 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -422,33 +422,33 @@ ContainedObjects: posX: 19.494 posY: 1.971 posZ: -4.498 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127826516/584635E992B674121F4E8C62F1CA259D8D33A9C2/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127641670/CAB545E928EDC617CA1314223774D88A2CFA2E19/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -469,24 +469,24 @@ ContainedObjects: States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127826278/41B14E1673F5F709A93FDAF0F142B53E18AEA3C9/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127641434/3B605FA81140800D2929A2F4FC605C61113815ED/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -514,7 +514,7 @@ ContainedObjects: rotY: 180.000015 rotZ: -8.925218e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -524,33 +524,33 @@ ContainedObjects: posX: 24.617 posY: 1.971 posZ: -1.601 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127826395/B3FDC858139FA6C9554725D93DDB9DCFB9D5B29D/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127641576/396D35B8A84FBE0C49EEFAE98BD94E15A277FB88/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -574,28 +574,28 @@ ContainedObjects: posX: 23.641 posY: 1.971 posZ: -0.706 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.45725 - r: 1 + r: 1.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127783438/7915A66641DDEEC59738335A0569F7BAECFA5709/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127783370/C8476BFEDBE29BCB732F8B405EB4C3EE690F6407/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -616,19 +616,19 @@ ContainedObjects: States: '1': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.4572487 - r: 1 + r: 1.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127785929/29B7336804A600EE42390063183E9F387A8CC5E6/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127785872/67138C40F1DE5CE32201F2C85003B8FE670F1604/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -666,28 +666,28 @@ ContainedObjects: posX: 20.774 posY: 2.067 posZ: -1.265 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.58711 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127784126/6CF27249FEF4F54E8DAD96DA6C3A3BBD24756AF0/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127784053/AA580BC3F93E7E83936844AFCBAC40CC0EE563C1/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -711,28 +711,28 @@ ContainedObjects: posX: 17.915 posY: 2.528 posZ: -0.451 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.65331 - g: 0 + g: 0.0 r: 0.33758 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127785226/0CBE7413D09EF71C304561E69D488973B2675AE4/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127785008/9650915EDD064263792CFBD6711E037764ECA60E/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -756,28 +756,28 @@ ContainedObjects: posX: 26.122 posY: 2.067 posZ: 1.909 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.43031 r: 0.17436 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127784614/C1212DA66187F0A55704B0296256EB1F870C74F6/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127784553/636A86A9E948668712A9061BE31FA9E43BB1098B/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -801,28 +801,28 @@ ContainedObjects: posX: 25.097 posY: 2.067 posZ: 2.043 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.45725 - r: 1 + r: 1.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127785929/29B7336804A600EE42390063183E9F387A8CC5E6/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127785872/67138C40F1DE5CE32201F2C85003B8FE670F1604/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -843,19 +843,19 @@ ContainedObjects: States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.4572487 - r: 1 + r: 1.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127783438/7915A66641DDEEC59738335A0569F7BAECFA5709/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127783370/C8476BFEDBE29BCB732F8B405EB4C3EE690F6407/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -893,28 +893,28 @@ ContainedObjects: posX: 23.563 posY: 2.067 posZ: 1.685 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 + b: 1.0 g: 0.04089 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127786535/1374F15B948BFAFDE4DAD8140DC8DDD8BD509C87/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127786470/DF776DA59AEB125A32EF513421DB73B525CBAFAB/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -938,9 +938,9 @@ ContainedObjects: posX: 19.552 posY: 2.067 posZ: 0.949 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 @@ -971,12 +971,12 @@ ContainedObjects: posX: 4.713 posY: 2.86 posZ: -4.792 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' Description: '' @@ -1004,11 +1004,11 @@ Transform: posX: 0.32 posY: 1.99 posZ: 0.16 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499.yaml index 7556a2e7d..026ceec96 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: b: 0.70196 g: 0.12265 - r: 0 + r: 0.0 ContainedObjects: - !include 'Bag Stands 74d499/Bag Alternatives 5b8959.yaml' - !include 'Bag Stands 74d499/Bag Barkham Investigators ffb761.yaml' @@ -94,11 +94,11 @@ Transform: posX: -1.25 posY: 1.99 posZ: 1.39 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959.yaml index fb812e53f..6a24f1a22 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 0 + b: 0.0 g: 0.36652 r: 0.70588 ContainedObjects: @@ -41,11 +41,11 @@ Transform: posX: 16.49 posY: 1.79 posZ: -16.11 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Ashcan Pete bc2b80.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Ashcan Pete bc2b80.yaml index bd0b57518..e49e581c2 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Ashcan Pete bc2b80.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Ashcan Pete bc2b80.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.58711 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1786217534351080114/4D8203AF383B01CB7B302EFF49FC629C5AA11146/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1786217534351080066/13060798A5F3A894615E557FD8BBA2D687F3B8A2/ - WidthScale: 0 + WidthScale: 0.0 Description: Duke has been Sacrificed DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.329268 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1786217534351205737/06E479385625E40513318FA7B65A3BB43B6C51CE/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1786217534351205658/F4C9CEA767EB7EBFFA249DDEBA9961534C4FD0F9/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 14.13 posY: 2.87 posZ: 2.76 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Duke 66a610.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Duke 66a610.yaml index e40a72c25..8e37daeeb 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Duke 66a610.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Duke 66a610.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.58711 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1786217534351095851/70F53C72CA6DE8070E52CA366CBB7B80264BF5B6/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1786217534351095787/538D7D90695B47562A96E19B4F47482429CF6EBF/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.329268 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1786217534351205900/3CD8AF69B384FB0B45BDDBC6C87748DA201D7C19/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1786217534351205842/2D2DF3A1166FB07C46B4265CC67AC3B49381FB6F/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 3.19 posY: 3.12 posZ: -6.71 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Lily Chen (Quadwield) 62c3f3.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Lily Chen (Quadwield) 62c3f3.yaml index cc1dda338..3b87ee6cb 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Lily Chen (Quadwield) 62c3f3.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Lily Chen (Quadwield) 62c3f3.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.65331 - g: 0 + g: 0.0 r: 0.33758 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632852164/122AAC50A71B7D18F294A9BD89CD7ADCD4137BEC/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632852099/C6688E9A7DCB0639E5EA9A94A933117BE3D91406/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.3292681 - g: 0 + g: 0.0 r: 0.170584649 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632852799/B987558D827908D8E682E56B4E375FB80114B4C9/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632852747/E5EE8542C7B2AF711792A707E05B4E897FF91A74/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 11.35 posY: 3.57 posZ: -9.35 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Norman Withers 84b0e7.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Norman Withers 84b0e7.yaml index 81e218157..b35ccdbcc 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Norman Withers 84b0e7.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Norman Withers 84b0e7.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.45725 - r: 1 + r: 1.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343124480/072CCD17AAD9F44762EFB20DA674642F5D66958C/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343124438/5F3C01090BFF6D46E19F15A41359A7F8AFC809AF/ - WidthScale: 0 + WidthScale: 0.0 Description: Novella DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.251961678 r: 0.559233367 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343112131/81797D3C3350D506C21AFE126DEEECC4EDDC574F/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343112089/1C1F3DC7EC4D5A03C8A5991D1940DD873521B063/ - WidthScale: 0 + WidthScale: 0.0 Description: Novella DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 7.54 posY: 3.13 posZ: 1.32 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Sister of Battle Mary 8d2a57.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Sister of Battle Mary 8d2a57.yaml index 32f337e4c..486971bab 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Sister of Battle Mary 8d2a57.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Sister of Battle Mary 8d2a57.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 + b: 1.0 g: 0.04089 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1786217534350346256/CC27F5FD13BD3C0EE00298D3448F2132B07D2F59/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1786217534350341026/33A1107FCBE63B79954F6233949CCD92075E8168/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.3257833 g: 0.0107875289 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1786217534351206055/6177641413E66D4DC5088B9FAC86C421999A50D9/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1786217534351222568/AA5B1E986CA44C9A16A52D159FB81F2C1C9A3FCF/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: -0.34 posY: 3.12 posZ: -6.59 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Ursula Downs dc366b.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Ursula Downs dc366b.yaml index ef5db2f02..702728fc7 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Ursula Downs dc366b.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Alternatives 5b8959/Figurine_Custom Ursula Downs dc366b.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.45725 - r: 1 + r: 1.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1786217534351027159/2DBB796009E69901F3C1D1B8473BB3672936A415/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1786217534351027111/EC77E0839D2BF35011E726F6B056C604B1BC0957/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.251961648 r: 0.559233367 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1786217534351206144/BF48660D48BA4D7E209EB1C77314516200863872/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1786217534351206096/3EBB1E7FBDB4A0E73B5EDC9270115DC7BD37BCDE/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 0.94 posY: 3.14 posZ: -6.6 - rotX: 0 - rotY: 0 - rotZ: 359 + rotX: 0.0 + rotY: 0.0 + rotZ: 359.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761.yaml index 080bd03ec..9efcd61ea 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 0 + b: 0.0 g: 0.36652 r: 0.70588 ContainedObjects: @@ -40,11 +40,11 @@ Transform: posX: 6.27 posY: 1.79 posZ: -11.9 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761/Figurine_Custom Bark Harrigan c971c3.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761/Figurine_Custom Bark Harrigan c971c3.yaml index a6a882445..219c5c2e8 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761/Figurine_Custom Bark Harrigan c971c3.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761/Figurine_Custom Bark Harrigan c971c3.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 + b: 1.0 g: 0.04089 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343122033/EA0943FD858FD7EF1188ED6363B997D9CFB7F6E4/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343121985/B74860D47613A5F110FD86E2D760C660C560347C/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.3257835 g: 0.0107875289 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343109744/C48F56B459C4D7DA169C75B638C88096C7B0D142/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343109705/5CBC385554F9CD0389E2A07743EECD5D35409198/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: -1.56 posY: 3.14 posZ: -5.62 - rotX: 359 - rotY: 90 - rotZ: 1 + rotX: 359.0 + rotY: 90.0 + rotZ: 1.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761/Figurine_Custom Duke 0a4876.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761/Figurine_Custom Duke 0a4876.yaml index 4f9be1d07..9edcb95f0 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761/Figurine_Custom Duke 0a4876.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761/Figurine_Custom Duke 0a4876.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.58711 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343122497/B3DB3D61DCE74E7076DDA6AB6B3FF7DBC6CA5A87/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343122453/D6DAFCA7AA289916A6EAAF69E0B08D4B55D57E17/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.329267859 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343110221/4D271515C4BDE28EE6ACAB84479097C6B872F3A1/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343110177/D5B45888598DE6C803A741BDB2285BEEC1089001/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: -1.09 posY: 3.13 posZ: -5.44 - rotX: 1 - rotY: 0 - rotZ: 359 + rotX: 1.0 + rotY: 0.0 + rotZ: 359.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761/Figurine_Custom Jacqueline Canine 370dc2.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761/Figurine_Custom Jacqueline Canine 370dc2.yaml index 597d1914d..bdb11458e 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761/Figurine_Custom Jacqueline Canine 370dc2.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761/Figurine_Custom Jacqueline Canine 370dc2.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.65331 - g: 0 + g: 0.0 r: 0.33758 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343123015/87E6EBB0756C3E964B6F238DA3E6BBD99881EFCD/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343122972/496A614B7D0455E6E1FE7FEB4DFF8C6A6A748C98/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.3292678 - g: 0 + g: 0.0 r: 0.170584351 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343110712/9758DCD708860BB091FB1C11B77D4F8864DB45B0/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343110669/A0661C0A60E2112B2AACD1C24396BDD40B89C300/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: -1.24 posY: 3.14 posZ: -5.54 - rotX: 0 - rotY: 0 - rotZ: 359 + rotX: 0.0 + rotY: 0.0 + rotZ: 359.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761/Figurine_Custom Kate Winthpup b4eab6.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761/Figurine_Custom Kate Winthpup b4eab6.yaml index 82f6dc504..b590e8005 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761/Figurine_Custom Kate Winthpup b4eab6.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761/Figurine_Custom Kate Winthpup b4eab6.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.45725 - r: 1 + r: 1.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125925/26224E51EFC07F9A4359A2BEC39F1AE13A5D5029/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125883/E2B1FFEDE8317BD06F54857DFB745FC7A5672740/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.251961738 r: 0.559233367 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113695/336E479B2D4CFBB13BCF6727A02ABD9213EAB8F5/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113660/4DAA98F00C8E46A7A3F4DFA1B9422201EB7C64CC/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: -1.48 posY: 3.11 posZ: -5.03 - rotX: 2 - rotY: 0 - rotZ: 0 + rotX: 2.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761/Figurine_Custom Skids O'Droole b7c253.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761/Figurine_Custom Skids O'Droole b7c253.yaml index 906234c00..fc5d8fd40 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761/Figurine_Custom Skids O'Droole b7c253.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag Barkham Investigators ffb761/Figurine_Custom Skids O'Droole b7c253.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.43031 r: 0.17436 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343124568/678199B54EDC3EF4494A91B1C2178A180213A7BE/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343124527/8BD07B46684E9D56DBA93454BD516F41313D46C9/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.210800737 r: 0.08509361 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343112225/1548F58B35A11B751C99FF7D2CA936642BAE301F/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343112175/10140B73067B90C02617F05014D138D39E76E9B4/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: -1.4 posY: 3.14 posZ: -5.52 - rotX: 0 - rotY: 181 - rotZ: 359 + rotX: 0.0 + rotY: 181.0 + rotZ: 359.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The Circle Undone Prologue Investigators 36c3f5.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The Circle Undone Prologue Investigators 36c3f5.yaml index 24dec3bf5..31b158af2 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The Circle Undone Prologue Investigators 36c3f5.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The Circle Undone Prologue Investigators 36c3f5.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 0 + b: 0.0 g: 0.36652 r: 0.70588 ContainedObjects: @@ -43,11 +43,11 @@ Transform: posX: 4.14 posY: 3.24 posZ: -16.33 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The Circle Undone Prologue Investigators 36c3f5/Figurine_Custom Gavriella Mizrah 58e76c.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The Circle Undone Prologue Investigators 36c3f5/Figurine_Custom Gavriella Mizrah 58e76c.yaml index 53e3c42d6..790a44c5f 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The Circle Undone Prologue Investigators 36c3f5/Figurine_Custom Gavriella Mizrah 58e76c.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The Circle Undone Prologue Investigators 36c3f5/Figurine_Custom Gavriella Mizrah 58e76c.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.59408 g: 0.59408 r: 0.59408 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343122673/7A6A0F30F2D7CF2F8F33548DE0EF94D4443F2952/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343122636/CCA770E23817DB041A752079D020341C3392A9B0/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.162020653 g: 0.162020653 r: 0.162020653 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343110415/1F049FB52103B0A63A68EAD64AA4942C290440B9/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343110365/607CFC0994A129AC8452F0A6FD2BE17609E73573/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: -1.25 posY: 2.94 posZ: -8.38 - rotX: 1 - rotY: 359 - rotZ: 1 + rotX: 1.0 + rotY: 359.0 + rotZ: 1.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The Circle Undone Prologue Investigators 36c3f5/Figurine_Custom Jerome Davids 4eebfc.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The Circle Undone Prologue Investigators 36c3f5/Figurine_Custom Jerome Davids 4eebfc.yaml index 8c0406019..bc633cb17 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The Circle Undone Prologue Investigators 36c3f5/Figurine_Custom Jerome Davids 4eebfc.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The Circle Undone Prologue Investigators 36c3f5/Figurine_Custom Jerome Davids 4eebfc.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.59408 g: 0.59408 r: 0.59408 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343123355/7A11BAC58DD612E7158C8842C8AFE0BF3D8C90FB/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343123311/601F1BAC6250D2BE1D2D8C635246778D098FF1C6/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.162020624 g: 0.162020624 r: 0.162020624 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343111005/348A8E2F0446D09998C1D72E999C9ED25D992433/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343110959/47D5246EE230991A1352CE0743B10168A9ECB586/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: -0.77 posY: 3.12 posZ: -9.73 - rotX: 357 - rotY: 0 - rotZ: 0 + rotX: 357.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The Circle Undone Prologue Investigators 36c3f5/Figurine_Custom Penny White 45d884.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The Circle Undone Prologue Investigators 36c3f5/Figurine_Custom Penny White 45d884.yaml index f00572901..8af54cf38 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The Circle Undone Prologue Investigators 36c3f5/Figurine_Custom Penny White 45d884.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The Circle Undone Prologue Investigators 36c3f5/Figurine_Custom Penny White 45d884.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.59408 g: 0.59408 r: 0.59408 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343124733/E87E89DE233547010A2303714F65A67CE1599169/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343124689/3BD7F394964F51DE2342BB163110083CA9389E0A/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.162020624 g: 0.162020624 r: 0.162020624 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343112424/E2171B84B8D68AC259E83DB8AF0D8315DED7D34A/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343112380/E232D3010841C5E757778F8F6D032863DAB2FC9F/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: -0.94 posY: 3.14 posZ: -9.12 - rotX: 1 - rotY: 255 - rotZ: 359 + rotX: 1.0 + rotY: 255.0 + rotZ: 359.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The Circle Undone Prologue Investigators 36c3f5/Figurine_Custom Valentino Rivas 2b5c11.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The Circle Undone Prologue Investigators 36c3f5/Figurine_Custom Valentino Rivas 2b5c11.yaml index 7fb9d99f6..c6e2cd047 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The Circle Undone Prologue Investigators 36c3f5/Figurine_Custom Valentino Rivas 2b5c11.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The Circle Undone Prologue Investigators 36c3f5/Figurine_Custom Valentino Rivas 2b5c11.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.59408 g: 0.59408 r: 0.59408 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125728/A01F2688903AF1F172EA8F6E35C197BF080CA3FD/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125669/07A11B3AA9B849680D17A3ACA41C374F29EEB2DF/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.162020653 g: 0.162020653 r: 0.162020653 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113519/BADB45B19BB567E328DDEAB0B58B978946B6936B/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113479/EA4B290E0CCFB030C9D1B50061A95B1D2A975E88/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: -0.46 posY: 3.14 posZ: -9.59 - rotX: 359 - rotY: 0 - rotZ: 0 + rotX: 359.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120.yaml index babb54f4d..4f74b340c 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 0 + b: 0.0 g: 0.36652 r: 0.70588 ContainedObjects: @@ -47,11 +47,11 @@ Transform: posX: 4.85 posY: 3.27 posZ: -16.44 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian 01d035.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian 01d035.yaml index 364ab1e3a..e60aac142 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian 01d035.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian 01d035.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 + b: 1.0 g: 0.04089 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343126008/5F98DD009140C4BD39E4461593131568BC871913/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125963/C651F00D5A3DEEA70C450B496E271C6708710BE8/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.325783521 g: 0.0107875289 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113771/369BEF14B41868A935F9AE48A36B6A31B3C84112/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113735/A56ABCAA1194E052A0A976A7CF57CCD1D95BA5A4/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: -3.19 posY: 3.1 posZ: -6.39 - rotX: 1 - rotY: 0 - rotZ: 1 + rotX: 1.0 + rotY: 0.0 + rotZ: 1.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian 21dca1.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian 21dca1.yaml index a8509cf23..fb20ecf50 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian 21dca1.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian 21dca1.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.45725 - r: 1 + r: 1.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343126008/5F98DD009140C4BD39E4461593131568BC871913/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125963/C651F00D5A3DEEA70C450B496E271C6708710BE8/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.2519618 r: 0.559233367 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113771/369BEF14B41868A935F9AE48A36B6A31B3C84112/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113735/A56ABCAA1194E052A0A976A7CF57CCD1D95BA5A4/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: -2.92 posY: 3.14 posZ: -7.03 - rotX: 0 - rotY: 0 - rotZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 1.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian 2574ee.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian 2574ee.yaml index d590b8790..3b3ff9561 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian 2574ee.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian 2574ee.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.65331 - g: 0 + g: 0.0 r: 0.33758 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343126008/5F98DD009140C4BD39E4461593131568BC871913/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125963/C651F00D5A3DEEA70C450B496E271C6708710BE8/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.329267919 - g: 0 + g: 0.0 r: 0.17058447 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113771/369BEF14B41868A935F9AE48A36B6A31B3C84112/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113735/A56ABCAA1194E052A0A976A7CF57CCD1D95BA5A4/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: -2.73 posY: 3.14 posZ: -6.97 - rotX: 0 - rotY: 135 - rotZ: 0 + rotX: 0.0 + rotY: 135.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian 458fc8.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian 458fc8.yaml index 19e44bca2..6d461e103 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian 458fc8.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian 458fc8.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.59408 g: 0.59408 r: 0.59408 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343126008/5F98DD009140C4BD39E4461593131568BC871913/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125963/C651F00D5A3DEEA70C450B496E271C6708710BE8/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.162020653 g: 0.162020653 r: 0.162020653 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113771/369BEF14B41868A935F9AE48A36B6A31B3C84112/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113735/A56ABCAA1194E052A0A976A7CF57CCD1D95BA5A4/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 16.12 posY: 2.46 posZ: -5.57 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian 531452.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian 531452.yaml index 7074d7d46..4426fd7f4 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian 531452.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian 531452.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.43031 r: 0.17436 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343126008/5F98DD009140C4BD39E4461593131568BC871913/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125963/C651F00D5A3DEEA70C450B496E271C6708710BE8/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.210800856 r: 0.0850936845 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113771/369BEF14B41868A935F9AE48A36B6A31B3C84112/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113735/A56ABCAA1194E052A0A976A7CF57CCD1D95BA5A4/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: -2.65 posY: 3.14 posZ: -6.91 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian d4d93e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian d4d93e.yaml index 508f49e8f..7bcd198f3 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian d4d93e.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Bag The City of Archives (SPOILERS) 228120/Figurine_Custom Body of a Yithian d4d93e.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.58711 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343126008/5F98DD009140C4BD39E4461593131568BC871913/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125963/C651F00D5A3DEEA70C450B496E271C6708710BE8/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.329267949 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113771/369BEF14B41868A935F9AE48A36B6A31B3C84112/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113735/A56ABCAA1194E052A0A976A7CF57CCD1D95BA5A4/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 14.36 posY: 2.74 posZ: -7.04 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Agnes Baker 881def.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Agnes Baker 881def.yaml index a92281abf..73fba9741 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Agnes Baker 881def.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Agnes Baker 881def.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.65331 - g: 0 + g: 0.0 r: 0.33758 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400342898124/10924A4D4866357782DFB81FFB8D67C93F064F29/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400342898077/CB788C381652994294C25179935B1C9A43958EF9/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.329268247 - g: 0 + g: 0.0 r: 0.1705848 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400342911264/8125422EA13893015B535ECA5730368BC422A508/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400342911213/3C50F1305A311942B242F56F1DF8DB6333F02EC0/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 18.12 posY: 2.07 posZ: 17.11 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Akachi Onyele 073478.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Akachi Onyele 073478.yaml index dc5f9ef2e..d4824a567 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Akachi Onyele 073478.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Akachi Onyele 073478.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.65331 - g: 0 + g: 0.0 r: 0.33758 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343160099/FCE303FB3866184962E30F7245071A06425095E2/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343160053/79D9A0D7E71BB628AD26366761558E96AACA93CC/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.329267979 - g: 0 + g: 0.0 r: 0.17058453 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343159970/075B54C1767060DD9A1AD24DB57938CCFDDD6585/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343159910/4DFE2B07BE7E50D2EA69FFEB40624CF542B5E0DE/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 0.47 posY: 2.07 posZ: -5.73 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Amanda Sharpe ef4a8b.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Amanda Sharpe ef4a8b.yaml index 6b904887f..86a4d30bd 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Amanda Sharpe ef4a8b.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Amanda Sharpe ef4a8b.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.45725 - r: 1 + r: 1.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343121817/321366F4FBE2B24C8D692FDBF493A6D1B630D8A7/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343121778/B9E73495E82666A9087D80DF78DF610AB0CEA287/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.251961678 r: 0.559233367 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343109555/08705215BB0218B22B2D2FBF3D870FE043CBF9DE/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343109504/E045893755B64DC1954A3EA2AB34212F56D195DC/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 9.08 posY: 2.07 posZ: -4.57 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Amina Zidane 347366.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Amina Zidane 347366.yaml index d1a509694..76bd0f559 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Amina Zidane 347366.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Amina Zidane 347366.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.65331 - g: 0 + g: 0.0 r: 0.33758 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632804138/3C7683C5652FF748E998DA47244ECD565E47A9F0/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632804057/78FE712C27FC15638C93ED390EA244DC24AD9D80/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.329268128 - g: 0 + g: 0.0 r: 0.170584679 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632804895/36BF0E4DF393735062A1097E8B5DEF0CBFF7FE50/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632804852/FC13F19097AB6B8CFF69D41F181DF5FE3B171487/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 19.26 posY: 2.07 posZ: -15.3 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Ashcan Pete 78f659.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Ashcan Pete 78f659.yaml index 039a24c59..b85f9bb48 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Ashcan Pete 78f659.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Ashcan Pete 78f659.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.58711 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343121899/0330056F163A97214EBEDBDA800BF186EEC0B8B7/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343121862/DD3C4ACBC52C4FBD8C573B953ED0081B810FA878/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.3292681 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343109656/54EBB31786FD3F4119F15B55B4FFAD9108FB9C61/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343109608/01B9628C63EE04370742D354B11FC41708BB6C5A/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 21.19 posY: 2.07 posZ: -2.53 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Bob Jenkins 7ce9d9.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Bob Jenkins 7ce9d9.yaml index de78acb1c..3ee6acfb4 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Bob Jenkins 7ce9d9.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Bob Jenkins 7ce9d9.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.58711 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127498935/83C60889FF4E253896F9877AA5D695B65DE9A41D/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127498888/52A7D63128EF8CCABABCCAC25D7A161FDC87AC00/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.329268217 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127498806/179CA133C12F46DEC40C21BDED8E51EBC441912D/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127498690/7767353FD52F7E52E135E1998911A5AA910FE5B1/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 9.34 posY: 2.07 posZ: -6.36 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Calvin Wright 00a0b3.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Calvin Wright 00a0b3.yaml index 7c540888a..4c616bcde 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Calvin Wright 00a0b3.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Calvin Wright 00a0b3.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.58711 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343122138/C6DA1F44C07BF2315BEF34CE88BE2D37306D72B8/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343122092/7E86DE74F323125CF4C743A41D5C38CD7E5E6F80/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.329267949 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343109838/295776AE6C4195E36179BFD4DC840A85F9DC5E2A/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343109794/51E0C9D150A28AE12DBC44D081B33F8585CA252A/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 5.84 posY: 2.07 posZ: -5.02 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Carolyn Fern 99e9da.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Carolyn Fern 99e9da.yaml index 2b7f157ee..daf06a981 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Carolyn Fern 99e9da.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Carolyn Fern 99e9da.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 + b: 1.0 g: 0.04089 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343122241/ACA5D39ABF796E8BFEC57DB81EA70B8558194C3B/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343122187/0A3F1BFDDD7476762C6645E64A9CBDB74E0BE4BB/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.325783551 g: 0.0107875289 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343109932/062A9610BF91F9E900D727CF4C278508341AD4E0/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343109894/23141F07C9E777CCA48F96486D98A8D4DAD0447E/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 8.8 posY: 2.07 posZ: -4.62 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Carson Sinclair 9b83f7.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Carson Sinclair 9b83f7.yaml index b65bb3c83..b86af2b53 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Carson Sinclair 9b83f7.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Carson Sinclair 9b83f7.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 + b: 1.0 g: 0.04089 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815627804095/14FB266940C7F4FA6C89D27D778171D8DC132E4B/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815627803889/F70AAF20DE0C636E8188C8ED3567D152BFE34FEF/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.32578373 g: 0.0107875289 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632822423/C4763118F4519CF03FB07EEC9E8D181987D818CF/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632822371/481BF5F70A061B239975FA608D6FD6BFEE26D87D/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 24.42 posY: 2.07 posZ: -10.6 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Charlie Kane 409e5c.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Charlie Kane 409e5c.yaml index e43ebd2a8..f56f559a5 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Charlie Kane 409e5c.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Charlie Kane 409e5c.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.59408 g: 0.59408 r: 0.59408 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1814399894374997063/8267261868DBD6C630FAD36CE43AC9F594A23328/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1814399894374997017/BC85365BA8B6FD488A31D0453F5B589E9FBB33A3/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.162020534 g: 0.162020534 r: 0.162020534 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1814399894375044931/1F649E841492469182395800CD8522A7A8F688DF/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1814399894375044875/74403D42281F3B6F52977E2A78B3429284D14162/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 13.21 posY: 2.07 posZ: -14.18 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Daisy Walker 7de2d5.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Daisy Walker 7de2d5.yaml index e5c152e73..cd1de973d 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Daisy Walker 7de2d5.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Daisy Walker 7de2d5.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.45725 - r: 1 + r: 1.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400342898199/50F1F2731EA74D362AFAD8157D040D2C28537FC4/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400342898160/BD419A43A39F1AAE574C3ED1E6BDCA059662526B/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.251962155 r: 0.559233367 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400342911376/6F57094F6DE7748A2FECE162A8360433100F6A1A/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400342911313/35AACEA1926713934B02DED9A74B78FFC3CE9883/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 17.64 posY: 2.07 posZ: 21.11 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Daniela Reyes 812e07.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Daniela Reyes 812e07.yaml index 096a566eb..e9eb7477d 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Daniela Reyes 812e07.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Daniela Reyes 812e07.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 + b: 1.0 g: 0.04089 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127372542/9DFD7E7891356D43184E9D1D80532C00E6C2C8C4/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127372136/F93D4DA4D1F8449BCFA91E53342BA39B3FCE54E7/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.325783819 g: 0.0107875289 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127384635/76BAC5BCC1AFB3749426C325F6C3D485C7938E50/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127384593/FA4F02D9F246B22593B426584366C312B382A888/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 10.17 posY: 2.07 posZ: -5.2 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Darrell Simmons 821043.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Darrell Simmons 821043.yaml index 757310b16..3742093d6 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Darrell Simmons 821043.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Darrell Simmons 821043.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.58711 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632805684/E19E42FA0F5C66C9AE0C531B8502F0856EA77CB4/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632805644/FA91A9D835F60BCCAD90EE43F432EEFCB812F1BE/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.329268128 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632806197/159CC606BB4D245E2432664D0C7BB86D7B3180E5/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632806149/6DE55CD4B35E67EDD1EA12561615C29D7528C1EC/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 23.71 posY: 2.07 posZ: -11.31 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Dexter Drake 6dbc60.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Dexter Drake 6dbc60.yaml index b630b18b8..f0ae31c9b 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Dexter Drake 6dbc60.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Dexter Drake 6dbc60.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.65331 - g: 0 + g: 0.0 r: 0.33758 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343122330/B1CA265DC32559781219981BF4F385D423CA0702/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343122282/12781D255D67BE8DC5D7DC0319C69B25FE6FE0FB/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.3292678 - g: 0 + g: 0.0 r: 0.170584351 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343110029/BA54F4CD9A3A11718873A2526C95E5846D8709DC/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343109980/118F2314AFF798868F18CC252405A87BD978A967/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 12.74 posY: 2.73 posZ: -4.87 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Diana Stanley 2640ba.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Diana Stanley 2640ba.yaml index 65b1dd178..5b9592bfa 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Diana Stanley 2640ba.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Diana Stanley 2640ba.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.65331 - g: 0 + g: 0.0 r: 0.33758 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343122410/6B2888110D0DEBD972B1AABC1493F262DB074311/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343122370/E81C333FD7195F674DEA2E36024F4788B51472AA/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.3292679 - g: 0 + g: 0.0 r: 0.17058444 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343110130/FBBAE9140E940B1875BB8141D84788EF5EA5E25C/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343110082/76D9557C29556247A925A3526A32EB896C0915C5/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 6.08 posY: 2.07 posZ: -7.08 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Father Mateo 037a27.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Father Mateo 037a27.yaml index 582aa0282..4e0fae2d5 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Father Mateo 037a27.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Father Mateo 037a27.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.65331 - g: 0 + g: 0.0 r: 0.33758 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343213159/D07849717C07B630C290BB7810B30108A652DC52/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343213115/923ED3CD7BAB52379528C97BA86565BC972937F2/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.3292679 - g: 0 + g: 0.0 r: 0.17058444 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343213075/853E2B0B3A7ACD28E70E4DA3CD2347E714923AC3/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343213028/571662D666A8333EC73EA50FA1FC52121F182D33/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 15.61 posY: 2.84 posZ: 0.23 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Finn Edwards 259257.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Finn Edwards 259257.yaml index 88cdc6104..883f4e63c 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Finn Edwards 259257.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Finn Edwards 259257.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.43031 r: 0.17436 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343122592/94D7B9AA767123BF2B50B1E27FAC62242DC4C1B3/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343122544/131B9D90BBADDD3576CD4F24E88B1A9EAA084B25/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.210800767 r: 0.08509364 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343110324/4B8B05471D1F5CC0FDD294EF20DB32F386D4E59E/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343110275/E2025B1C14EE35E63D44BC3B5A2410B21C397D90/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 2.67 posY: 2.07 posZ: -7.58 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Gloria Goldberg 596da1.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Gloria Goldberg 596da1.yaml index a0b9c1648..80b4c56a7 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Gloria Goldberg 596da1.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Gloria Goldberg 596da1.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.65331 - g: 0 + g: 0.0 r: 0.33758 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343369844/741F46B92FA73AFDB7BBC76C10CC3E5ABD31D4CB/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343122725/89A2F73B69E58215A310CCB38DD6C4CFC335D072/ - WidthScale: 0 + WidthScale: 0.0 Description: Novella DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.3292678 - g: 0 + g: 0.0 r: 0.170584351 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343370892/71C122A8117FFF40D9874C42BCD6D0F8B8B7892D/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343110452/64B813104A1823E356C86EE768B4C207D41F159F/ - WidthScale: 0 + WidthScale: 0.0 Description: Novella DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 9.14 posY: 2.22 posZ: -10.16 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Harvey Walters a0293e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Harvey Walters a0293e.yaml index 70d400cb5..b1f3977b6 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Harvey Walters a0293e.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Harvey Walters a0293e.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.45725 - r: 1 + r: 1.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343122928/D4FBD31E1D7FBEEB07939D3DCCB1667E4D1ACA14/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343122863/EB70BA317BF67FCF51083EBC0D8C357FF19EAB1B/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.251961648 r: 0.559233367 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343110630/EBF1D33617A617E04FBD4AE37506F77867222D6C/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343110588/754FAC695ACFD404B80954EA68E223E454E212D8/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 9.05 posY: 2.07 posZ: -8.13 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Jacqueline Fine 755af5.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Jacqueline Fine 755af5.yaml index 316fb1e3d..c789e7397 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Jacqueline Fine 755af5.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Jacqueline Fine 755af5.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.65331 - g: 0 + g: 0.0 r: 0.33758 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343340459/F0D2B8064964B8252241DB136C794FC1B6FF4B53/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343123061/6DA4E0C0B84DED83550ED40969143A242525FEFF/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.3292677 - g: 0 + g: 0.0 r: 0.170584291 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343339400/E453D38E8FE432F95339B60B4547A59EF8C6BA24/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343110754/30A40B1E167B52D90D19922ADF83CBCF1C700638/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 4.77 posY: 2.07 posZ: -9.96 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Jenny Barnes 4990c5.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Jenny Barnes 4990c5.yaml index db87a4217..1476b1b80 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Jenny Barnes 4990c5.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Jenny Barnes 4990c5.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.43031 r: 0.17436 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343123260/B4FC280EE97A57E792694AC4EDAADD48E44519C9/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343123208/8C29DCE72C2A5DE4D7E6A79046CF24C3D74D8535/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.2108011 r: 0.08509388 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343110916/B7228A20C559122AB8D718C0AC201FED9E85B2DE/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343110878/B9FEDC01D8D9AE1AAC6B02BE02B2750BF3DF54D6/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 5.7 posY: 2.07 posZ: -1.24 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Jim Culver 4ed067.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Jim Culver 4ed067.yaml index eba45ab47..6699866b8 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Jim Culver 4ed067.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Jim Culver 4ed067.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.65331 - g: 0 + g: 0.0 r: 0.33758 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343123446/B7327A472FBB4072DC477381E8A7A6125C99531F/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343123404/7C7BBACF49827ED5D622033E6C1DEA9357096C7B/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.3292681 - g: 0 + g: 0.0 r: 0.170584649 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343111086/FF3A031718F35B572D6C3C8C7BCCAB6C11D4BF33/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343111046/87284B158274F1722C2161D9F9B30E214647B1BB/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 0.42 posY: 2.07 posZ: -3.64 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Joe Diamond bc0aa2.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Joe Diamond bc0aa2.yaml index 70decaed2..3f3d3693c 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Joe Diamond bc0aa2.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Joe Diamond bc0aa2.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.45725 - r: 1 + r: 1.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343123531/ADE4594F7EACB7EE9E942D3477724E674AE1AADE/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343123488/AB5C5C45431B8CF33A784A09E265D60D4D0168CC/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.2519618 r: 0.559233367 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343111172/100EC490B6AC901F4AFC48F100829575055BEE86/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343111123/FFF20A721CE1B8D3C49E32DBC0A7861229012FCE/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 11.57 posY: 2.07 posZ: -4.39 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Kymani Jones f90c73.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Kymani Jones f90c73.yaml index 4a068a489..724d56475 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Kymani Jones f90c73.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Kymani Jones f90c73.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.43031 r: 0.17436 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632728920/BB862271FE472CB9A059930312C7E02014C926AA/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632712125/4C9C8B7E2D826AC3F667B25886A10E4E7C404D36/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.210801154 r: 0.08509395 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632729904/030745C06892D3AE331E9B047F6202B3A834B89D/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632729866/6CAF10394017D1E413216A18C7AFB68E4BE4A22E/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 16.44 posY: 2.07 posZ: -15.19 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Leo Anderson 68f47f.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Leo Anderson 68f47f.yaml index bcd17b955..ed5b3da48 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Leo Anderson 68f47f.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Leo Anderson 68f47f.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 + b: 1.0 g: 0.04089 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343123611/134B3903A912E19F89379A3CAFC11B690B0F1B6B/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343123575/9D875BB066BBC8711A4A5B1888E6F14453B937B8/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.325783521 g: 0.0107875289 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343111248/605DA9FD3CAA488E2AF00196B4BE09173C7690F2/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343111208/2C442A20E3C1D6C78115F52739C30026DEA42F78/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: -0.81 posY: 2.07 posZ: -7.25 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Lily Chen f58123.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Lily Chen f58123.yaml index f9f608785..d7fcaf91a 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Lily Chen f58123.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Lily Chen f58123.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.65331 - g: 0 + g: 0.0 r: 0.33758 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127487724/EA02F95CE17F58859603E9C3342085FFBE7E0420/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127487680/802D3885209166F8C3A68A2BC4E5F1B5DF9DE53B/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.3292682 - g: 0 + g: 0.0 r: 0.170584738 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127487606/CCEB12CA653DEB53372368FC4E28FD57A87418BD/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127487506/08986629775B03EF635165A59EAEC2FD21BFBD74/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 11.54 posY: 2.07 posZ: -2.92 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Lola Hayes 392b57.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Lola Hayes 392b57.yaml index 1a71628e4..ba9728688 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Lola Hayes 392b57.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Lola Hayes 392b57.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.59408 g: 0.59408 r: 0.59408 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1814399894375141540/7C5FA11A32DB50D7C3288D7672AA72A753941813/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1814399894375141491/FC32B68CBC5AD09DB7347FDD68F6B398FB52F84A/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.162020475 g: 0.162020475 r: 0.162020475 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1814399894375156686/CF8D3AAA42F6F3879C9C79C9E78A696592FE57BD/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1814399894375156637/11194212FD04FF4B2AFAFB25AF915F288D768BEC/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 6.55 posY: 2.07 posZ: -0.99 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Luke Robinson a908ec.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Luke Robinson a908ec.yaml index 41ebde846..c5ac02970 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Luke Robinson a908ec.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Luke Robinson a908ec.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.65331 - g: 0 + g: 0.0 r: 0.33758 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343123788/B66846378167F716F4EC90D96FF72354A46B7B4D/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343123743/7FFD073A2FE1B6346E43939B2C30CC485D4773E9/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.32926777 - g: 0 + g: 0.0 r: 0.170584321 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343111421/31C173F4DC2F80612AC7B8A56E9ABD5581EEFFFB/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343111373/B5CF244E06B8E75CB81575C3E460E11388C3BE15/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 7.61 posY: 2.07 posZ: -9.75 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Mandy Thompson 0d602e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Mandy Thompson 0d602e.yaml index ba2798448..f89ea3fe1 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Mandy Thompson 0d602e.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Mandy Thompson 0d602e.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.45725 - r: 1 + r: 1.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343123877/541D16A7F8B1CD918142D5ED9481A0AD37271E7B/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343123832/EF70CBEF33BC038D502B78BA9A77AB07D581B30D/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.251961678 r: 0.559233367 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343111511/9DE040757FEB58FB6F7E89805EDBCABA28C08363/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343111464/EB5F444E471B86E0CFD56020F3DBC31FF73AECF6/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 4.73 posY: 2.07 posZ: -9.55 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Marie Lambeau 6bd52c.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Marie Lambeau 6bd52c.yaml index e21755d3b..2a777e6c2 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Marie Lambeau 6bd52c.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Marie Lambeau 6bd52c.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.65331 - g: 0 + g: 0.0 r: 0.33758 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343123948/0EE225E2455C4D60FC903AC34D5DCBE3A96E0F6E/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343123913/0FED2F578A1A3B0D7068AFA723C5BD86614D51AE/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.329267919 - g: 0 + g: 0.0 r: 0.17058447 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343111601/E3DB7C44A8A034D4BA7AACF2599A54DECC4C4D34/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343111548/9D1687057358C422472126D059B5CAA1828E2DEA/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 8.61 posY: 2.07 posZ: -7.52 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Mark Harrigan eb793b.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Mark Harrigan eb793b.yaml index fd435db20..8b4eb3837 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Mark Harrigan eb793b.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Mark Harrigan eb793b.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 + b: 1.0 g: 0.04089 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343124038/5DB2BE15B15ECF1B8324CCB4EA57762A5F9503D7/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343123987/395CFF93D01FE8D3E05BF0E18AF363C95F8C9870/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.3257836 g: 0.0107875289 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343111695/C7C4A01A23F187ADD085F1FDFF51FAFB0295F22A/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343111650/DC806BD08F8B210C3DBE0D3BE9C0A0E9819D8D54/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 2.73 posY: 2.07 posZ: -4.0 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Minh Thi Phan 1ebf3c.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Minh Thi Phan 1ebf3c.yaml index d7a112e9a..3edee98b1 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Minh Thi Phan 1ebf3c.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Minh Thi Phan 1ebf3c.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.45725 - r: 1 + r: 1.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343124306/A4481703DBC3C327CBE907E1149598283B7AB049/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343124265/92345CAE764C3A809A9CA73F30AFF9406BC0EF5E/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.2519619 r: 0.559233367 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343111950/D44CE23B259F5B04CD2B76F44DF2BED5D41F862E/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343111913/23E26016E556988D267EDD8DEB4D76E4D6D38A7C/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 3.9 posY: 2.07 posZ: -3.65 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Monterey Jack 638f3a.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Monterey Jack 638f3a.yaml index 19f5443d7..3f7854250 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Monterey Jack 638f3a.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Monterey Jack 638f3a.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.43031 r: 0.17436 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127476794/837B28F92D4D63B23EF69D5A327A76928DC814A7/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127476746/94BE1CD298C8605CEE92CA2E8B0405C206EFCDB4/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.210801244 r: 0.08509401 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127476683/6C480D8E9E8D03B8CA8154285EDE42312D1FE37B/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127476598/64CD439C4B27AF54285ECE0BABDB93C2634E5255/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 3.86 posY: 2.07 posZ: -7.87 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Nathaniel Cho 619a54.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Nathaniel Cho 619a54.yaml index cdc26e806..7ce7cffd6 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Nathaniel Cho 619a54.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Nathaniel Cho 619a54.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 + b: 1.0 g: 0.04089 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343124386/09CAB97763D97EFC37A1A558CEC032EEB8142754/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343124346/CF535E2C85E5F4D1400A96DB7BEDC7DCFC7591C1/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.3257834 g: 0.0107875289 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343112047/FB45F4E6B30D69A196C585501C4E75B435677A01/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343111987/455AD3904C7CBD6CB4AC917973B766BFACC429DB/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 7.44 posY: 2.07 posZ: -7.52 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Norman Withers 8d186c.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Norman Withers 8d186c.yaml index a79762e08..ceb4d384f 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Norman Withers 8d186c.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Norman Withers 8d186c.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.45725 - r: 1 + r: 1.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127436051/77E8D22FE4EDE5A94D1CBA705DA40BEB45A1E771/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127435972/2096012C595D1FA26F1D91FC84266EA87FD44C5E/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.251961946 r: 0.559233367 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127449192/81C48A558BC836CC34ADD31B438468E448CE81C1/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127449099/5836DD6175D977C38D7A24FEAA4A45892F99479B/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 12.73 posY: 2.68 posZ: -5.01 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Patrice Hathaway ef94b5.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Patrice Hathaway ef94b5.yaml index 32ce89f1a..d45244370 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Patrice Hathaway ef94b5.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Patrice Hathaway ef94b5.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.58711 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343124652/C352844E8CE07642B8F0D34FD4CC46FD163099BF/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343124612/064FA25C5A7EC3F7A7752FF362462E26C3045BAD/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.329267859 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343112332/4D2A00300C1A749C808CD8391F3E681038EDAFDB/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343112272/1BAC1C83A3683725B46BAF4BD60184BA52BFB6E8/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 9.22 posY: 2.11 posZ: -9.52 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Preston Fairmount 6e99ba.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Preston Fairmount 6e99ba.yaml index caa9ce373..ea7181a14 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Preston Fairmount 6e99ba.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Preston Fairmount 6e99ba.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.43031 r: 0.17436 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343124816/08D840B61C1E9CD93C1720AD66D780B1D7326D10/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343124775/8093BCC3BB3D19C324B59EA46C83293B09B3C736/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.210800856 r: 0.0850936845 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343112537/AE38E517BE326158E67760C17DD7BDF24BDD6C12/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343112489/897B3C993413B04F475D3AD95385262A0188945C/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 12.62 posY: 2.26 posZ: -4.27 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Rex Murphy f96c49.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Rex Murphy f96c49.yaml index 94eab4be3..52ab965e4 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Rex Murphy f96c49.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Rex Murphy f96c49.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.45725 - r: 1 + r: 1.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343124908/94730221F433510D8906BBF22D7AC5F8FF979B7A/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343124866/20FAFD12A141BEDFA62FC7D2BBA10925863110C7/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.251961976 r: 0.559233367 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343112648/D27F29716439A7BDBF1162AB92684C32E3A221FF/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343112602/C78D725F74D849D4C81D09D1C9B808D1F192A6B8/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 4.39 posY: 2.07 posZ: -1.55 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Rita Young c46146.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Rita Young c46146.yaml index 3bcc5d7e4..f660a8110 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Rita Young c46146.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Rita Young c46146.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.58711 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125001/48ACCE90A8C1A957EC54B0B411DFCCE5F96E1278/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343124955/B83959B059ED90771F6550DF20D774B6AA7B088B/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.329267949 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343112745/522D275483FAF39565F28DDDBD405D585F0C23BD/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343112692/3353B6C8A7FBFBA7B834CCAF8983B69C054DF2CB/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 7.26 posY: 2.07 posZ: -7.43 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Roland Banks d68f71.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Roland Banks d68f71.yaml index 58296c55a..0c263a790 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Roland Banks d68f71.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Roland Banks d68f71.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 + b: 1.0 g: 0.04089 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400342898308/F1D708F76DF5800CE765EAFA0DC09C26A74FF16B/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400342898253/1379499E10EFB7E14365E7DB265FDEA18852D1D5/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.325783879 g: 0.0107875289 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400342911484/BCB0DA6F1D18C17D45F72A530A648BEC00C54205/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400342911431/4F699092E6EA90370C6AC757DB37FF9D9A6A7FB8/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 18.5 posY: 2.07 posZ: 21.06 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Sefina Rousseau 086503.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Sefina Rousseau 086503.yaml index 9e039de8e..fde624258 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Sefina Rousseau 086503.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Sefina Rousseau 086503.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.43031 r: 0.17436 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125078/A86918CF754A49F3634CE1906F06D2EF8050181C/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125039/358B5898D369D0DD9B43CA63A4D814DD523B46D4/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.210800946 r: 0.0850937739 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343112830/2D14AED1F1BA6A9FA28E7093A2E738876EA80A89/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343112788/E93E0A9A75FF8657A9E42C3AC93A236739E8B48E/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: -0.35 posY: 2.07 posZ: -5.62 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Silas Marsh 080f71.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Silas Marsh 080f71.yaml index 571295da0..29bb5ecaa 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Silas Marsh 080f71.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Silas Marsh 080f71.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.58711 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125121/418C6AC1E5031B49969BD78AE05247AF806FEF1A/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125169/A6DCCBFE8E038499BBDBC3E646EA176F47D2BB4C/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.329267859 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343112871/8EDFE0718C49CAE4155F3832571CCA7202D6479A/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343112916/0BC1B2CB47C8B5814D1EF29AEF132D972F61B509/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 5.72 posY: 2.07 posZ: -7.33 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Sister Mary 707374.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Sister Mary 707374.yaml index 511240bba..ce3633a90 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Sister Mary 707374.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Sister Mary 707374.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 + b: 1.0 g: 0.04089 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343124131/B28E44DBC3463F011BF01FCD6F2E88CD43057352/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343124088/F02DA60FB218E7DBC8EAE29556A4CAD9EC47657D/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.325783432 g: 0.0107875289 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343111792/58A855A135BF1CB9CC76C2C8282D75F27EDAA53B/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343111744/D91E9AF17853E7AC5E4C32C098F6E60E4E3B2693/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 17.97 posY: 2.07 posZ: -3.93 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Skids O'Toole 47cbdc.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Skids O'Toole 47cbdc.yaml index d0921d874..21cc53c8f 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Skids O'Toole 47cbdc.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Skids O'Toole 47cbdc.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.43031 r: 0.17436 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400342898401/3200CDC30301B8A58B6CE31AE9BF06DF7BE59B46/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400342898355/9F2A2046E154557C9D35BC392DA05BCF7A5D99BF/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.2108013 r: 0.08509406 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400342911607/D91CC56CCF47669B649D0AB61B12957FBB790C06/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400342911559/E9A1944160938CAC731E6ECF4E86C8A43DE4BB9E/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 18.04 posY: 2.07 posZ: 18.03 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Stella Clark abd4b9.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Stella Clark abd4b9.yaml index 58d1e53be..c7da45a05 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Stella Clark abd4b9.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Stella Clark abd4b9.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.58711 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125258/BF68ACA30835D3152A03255FFE394BD1D844A5ED/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125217/B965FA4A228DFD62F5D202E4A6DDBFBAFA1C830D/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.329267859 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113025/1272B28219E43CD1BCC990A1883B808A5CA59B1D/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343112969/8EF9EA86807895AC74C4B2D39C3AE171ED85E94B/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 5.79 posY: 2.07 posZ: -10.24 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Summoned Servitor d5f368.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Summoned Servitor d5f368.yaml index 0d5b2bd0a..1d7596e5a 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Summoned Servitor d5f368.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Summoned Servitor d5f368.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.65331 - g: 0 + g: 0.0 r: 0.33758 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632829693/2DA5CDF37EAB1E351A88995270B9A313DAEA59CE/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632829647/900F45FD95C2893461BCAA1572DE0E7EA16ABE19/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.329268128 - g: 0 + g: 0.0 r: 0.170584679 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632829093/FBA3DF6AD2DF21A559274FB770ADB98A0368EE0D/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632829036/6D4D65B59894195F8047FA6F37F7379A67CDD4E4/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 16.57 posY: 2.11 posZ: -14.59 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.83 scaleY: 0.83 scaleZ: 0.83 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Tommy Muldoon bea47e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Tommy Muldoon bea47e.yaml index 99ecb5540..73c10bfa5 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Tommy Muldoon bea47e.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Tommy Muldoon bea47e.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 + b: 1.0 g: 0.04089 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125343/F146511CB6A21254B2C7350694A25207323BD032/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125301/A93BD669C731E917A35FA5738EB136BF6671D77D/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.325783432 g: 0.0107875289 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113125/C886BBE085401CBDEDC79316126DAD04C160290D/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113075/3A5F451FE5EEA0438A7BF83AA80087D508A95E63/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 10.5 posY: 2.11 posZ: -7.32 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Tony Morgan 8788d0.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Tony Morgan 8788d0.yaml index 110c83e1c..e906be9ba 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Tony Morgan 8788d0.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Tony Morgan 8788d0.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.43031 r: 0.17436 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125442/09C00F6166ED8C161E8B4EDC8D6C5712BE4E5A99/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125399/E8846343EE7FB81463CBA96EE1FB4EA48783478D/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.210800737 r: 0.08509361 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113211/50B0632176C34F7C87676B08F33D1FD47B81F866/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113164/306E90DAA180AD468A2984E850C930EE18CF2662/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 6.21 posY: 2.07 posZ: -9.64 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Trish Scarborough 01631f.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Trish Scarborough 01631f.yaml index ee3c5d1e4..81e314200 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Trish Scarborough 01631f.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Trish Scarborough 01631f.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.43031 r: 0.17436 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125535/2F16BFC124F43F9940C2A3F171E26DDA6463A212/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125485/4E1E451CA47B9A6C4FA602597948FD6EBC4BE776/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.210800737 r: 0.08509361 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113340/C747576C358B25CEA21F2C6BBC99E958B054C988/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113269/8A30699B302BAF982C8FE26E09705CDFF5242C2C/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 10.92 posY: 2.07 posZ: -4.62 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Ursula Downs 556138.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Ursula Downs 556138.yaml index 0b3cae11c..0e07a1853 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Ursula Downs 556138.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Ursula Downs 556138.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.45725 - r: 1 + r: 1.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125624/CBE958AE77C62FC1CC2DF6663226EADDA1500B5E/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125580/D00CFB3B16884A01FA999E0DDD6B3CBC08E65AEA/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.251961768 r: 0.559233367 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113425/FC55EAACC9980F12F2108FB677C8E4F98FDBC82F/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113388/3C14FD026614E265AF28D706E14EE28832B9900A/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 20.78 posY: 2.07 posZ: -0.28 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Vincent Lee bc327b.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Vincent Lee bc327b.yaml index 64b94d758..093e9522f 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Vincent Lee bc327b.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Vincent Lee bc327b.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.45725 - r: 1 + r: 1.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632778413/67439F129504FB1AA3A5D888DC4719FEBAF9892C/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632778350/325286731544DD374EE07847A9446D2BC94EF1B9/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.251962036 r: 0.559233367 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632803119/29423101B686F98DA4B7493746360CD42D3CE5C0/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632803055/AF8D8F383F92D298133EBA09A34753744E4EF548/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 13.06 posY: 2.07 posZ: -14.74 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Wendy Adams 8f5e71.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Wendy Adams 8f5e71.yaml index 4171d8570..c68933265 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Wendy Adams 8f5e71.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Wendy Adams 8f5e71.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.58711 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400342898498/10F99CF16FEBE1CD39635ABFF90F805BF5D54918/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400342898443/A3C543770A98A9D55B8BF1E51B2EE143A42AE1A2/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.329268247 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400342911709/5143ADC17BEA16129B1533BE77EE79BF0BD347A5/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400342911659/B0D1767C1391FEAFC991695B614304A626FCEB2C/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 18.21 posY: 2.07 posZ: 20.42 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom William Yorick 26a0a1.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom William Yorick 26a0a1.yaml index 5f8f03ac0..44fd67497 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom William Yorick 26a0a1.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom William Yorick 26a0a1.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.58711 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343126093/F7F02472038CC02E52533381E4D7AD7D31BB3FA8/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343126049/63E0BC57F7E5141690FF1F50002837F2869FE3FA/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.329268 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113849/DCA3D076BFCA28D8A8638B6A4F638AA84101624E/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113810/78D2AA9C325055A8D4680125D29489A8B9B89461/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 1.99 posY: 2.07 posZ: -5.78 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Winifred Habbamock 2ede96.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Winifred Habbamock 2ede96.yaml index c351e6007..3228a591a 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Winifred Habbamock 2ede96.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Winifred Habbamock 2ede96.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.43031 r: 0.17436 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125837/45463C0CFEC0E75C4CB0817760252B81E46D4249/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343125782/BCC613AFBA7B0DA1250A17504464AAD6B2BAB528/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.210800737 r: 0.08509361 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113609/433D67A5C68762077EF84A2BEFF3B251EC84C39E/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343113571/5531EC31A19AD8DCAD380DA9471B3224001E4E04/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 10.12 posY: 2.11 posZ: -7.97 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Zoey Samaras e6d68f.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Zoey Samaras e6d68f.yaml index 486a69ec9..c877fcf64 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Zoey Samaras e6d68f.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Stands 74d499/Figurine_Custom Zoey Samaras e6d68f.yaml @@ -1,17 +1,17 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 + b: 1.0 g: 0.04089 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343104997/E66355B1514163DDC8E50927F54C6C07DE63EC00/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343104943/9E4F82A799BEF14E1BEC498937F2EB3BB83F6ADE/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -32,19 +32,19 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.3257837 g: 0.0107875289 - r: 0 + r: 0.0 CustomImage: - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698400343107739/4F5A5EE5CF79DAF68B538EEF30DB8DACC10A3565/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698400343107696/1E492CCA51ADB35F95FFF64ABBB61765E50B2B26/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,9 +82,9 @@ Transform: posX: 3.42 posY: 2.07 posZ: -1.25 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41.yaml index 77ab2c948..0c86cae90 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: b: 0.05692 g: 0.32578 - r: 0 + r: 0.0 ContainedObjects: - !include 'Bag Tokens 8b8b41/Custom_Tile Summoned Servitor 862983.yaml' - !include 'Bag Tokens 8b8b41/Bag Alternatives f8c290.yaml' @@ -49,11 +49,11 @@ Transform: posX: -0.21 posY: 1.99 posZ: 9.15 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290.yaml index ccdd4dadb..14c30acc7 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 0 + b: 0.0 g: 0.36652 r: 0.70588 ContainedObjects: @@ -40,11 +40,11 @@ Transform: posX: 13.28 posY: 3.29 posZ: -3.8 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290/Custom_Tile Ashcan Pete be4f57.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290/Custom_Tile Ashcan Pete be4f57.yaml index 076a523e2..566aaa514 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290/Custom_Tile Ashcan Pete be4f57.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290/Custom_Tile Ashcan Pete be4f57.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1786217534351180402/300B84479A7E7FBD938886E6FFF983BE099DF983/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1786217534351178860/0726567002C8338E97BB3E3746675E696FDC8721/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: 6.08 posY: 3.04 posZ: -4.6 - rotX: 0 - rotY: 180 - rotZ: 358 + rotX: 0.0 + rotY: 180.0 + rotZ: 358.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290/Custom_Tile Duke 8902b4.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290/Custom_Tile Duke 8902b4.yaml index 18696ff2f..fcd442b7b 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290/Custom_Tile Duke 8902b4.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290/Custom_Tile Duke 8902b4.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1786217534351193465/CE9301CD15AFA8A7B5AF34C950714AB39213DDE6/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1786217534351191818/BFC802E32AE2A38228739510216AE1D4A4E4BB69/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: 29.59 posY: 1.97 posZ: 19.2 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290/Custom_Tile Lily Chen (Quadwield) b3859e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290/Custom_Tile Lily Chen (Quadwield) b3859e.yaml index 01837868a..1bace4c48 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290/Custom_Tile Lily Chen (Quadwield) b3859e.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290/Custom_Tile Lily Chen (Quadwield) b3859e.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632893474/4AF139BBCD80D1C20CB0ACCCB187A59716C129E2/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632874602/AD80AD0552BBD9885B868EEE71189AB51029B858/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632893519/00AEC6496FFB456329C276AF64D8B8272370B461/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632874696/26560CEFEE751DBDD87EBE57FA825307CEE66A40/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000015 rotZ: 1.34459406e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 19.42 posY: 1.97 posZ: 4.17 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290/Custom_Tile Sister of Battle Mary f5c62d.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290/Custom_Tile Sister of Battle Mary f5c62d.yaml index 48f25ff9a..3ccf8c252 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290/Custom_Tile Sister of Battle Mary f5c62d.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290/Custom_Tile Sister of Battle Mary f5c62d.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1786217534351136953/2E52D40BC0FFD36491AC73AE2DE98B8C0187C977/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1786217534351135554/A6535EC60FCCA481D469A5DC1362D9E6CBAAED92/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1786217534351137004/0BDCE801CF3CFFE731ECBF3C6CA42D36DD6E6A6F/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1786217534351135608/EF64E1FB541E98B2110568E80521F909FCC65B6A/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.9600004 posZ: -0.2475957 rotX: -1.99428159e-05 - rotY: 180 + rotY: 180.0 rotZ: 9.04094e-06 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -0.34 posY: 3.01 posZ: -4.42 - rotX: 358 - rotY: 180 - rotZ: 359 + rotX: 358.0 + rotY: 180.0 + rotZ: 359.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290/Custom_Tile Ursula Downs a0c8aa.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290/Custom_Tile Ursula Downs a0c8aa.yaml index 5a07a0795..81c174256 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290/Custom_Tile Ursula Downs a0c8aa.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Alternatives f8c290/Custom_Tile Ursula Downs a0c8aa.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1786217534351154638/AD7164AEFA42443372544B9AE244200A7A6C0701/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1786217534351153507/40687A48B0B38B8FC6B2EBF1B1A584F664FF7B82/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1786217534351154679/8FCE2FFA8B295B437C5862861B8BBB71B805405D/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1786217534351153563/23860331AAF2DAA0CD5587DB287DDAEEAD6CC70F/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 179.999985 rotZ: 1.59252013e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 0.85 posY: 3.01 posZ: -4.41 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f.yaml index acba96930..2267e16a7 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - !include 'Bag Barkham Horror b08c1f/Custom_Tile Duke df5fd1.yaml' - !include 'Bag Barkham Horror b08c1f/Custom_Tile Jacqueline Canine 7aeca6.yaml' @@ -40,11 +40,11 @@ Transform: posX: 5.66 posY: 1.79 posZ: 0.99 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f/Custom_Tile Bark Harrigan 41af3c.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f/Custom_Tile Bark Harrigan 41af3c.yaml index 363e8390b..09f2ce85c 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f/Custom_Tile Bark Harrigan 41af3c.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f/Custom_Tile Bark Harrigan 41af3c.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708404997/A7821E94249324720D9EEC18F51C6E0F32511F20/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708408532/033B521E7599C6A651B9BB92D13880FAF1974002/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708405075/B15AEA5DC9BC8532704ADE17AB22E90A2FAA021E/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708408571/623901B6B223E8DAD4C28A007D34A10B54DD873C/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.960002542 posZ: -2.34120679 rotX: -2.02591837e-05 - rotY: 180 + rotY: 180.0 rotZ: 9.68632048e-06 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -7.92 posY: 3.01 posZ: 0.64 - rotX: 4 - rotY: 180 - rotZ: 358 + rotX: 4.0 + rotY: 180.0 + rotZ: 358.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f/Custom_Tile Duke df5fd1.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f/Custom_Tile Duke df5fd1.yaml index 50a4dce07..455897c35 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f/Custom_Tile Duke df5fd1.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f/Custom_Tile Duke df5fd1.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708406881/374951AF62E93DB10E32237BE4E98F7C2C94314D/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708410170/D4127E3D1255D89CD6829131FC60722471D2434D/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708406916/3FAEBBD786FAB3E42E02D9A7DF4C73F89A5FE9FE/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708410213/7D3454C8CD3E81CB7AFADBEE3555DA6CF80A5D16/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 1.06000113 posZ: -2.25585771 rotX: -4.8685044e-05 - rotY: 180 + rotY: 180.0 rotZ: 180.000031 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -5.19 posY: 3.03 posZ: -0.3 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f/Custom_Tile Jacqueline Canine 7aeca6.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f/Custom_Tile Jacqueline Canine 7aeca6.yaml index 711d0f178..d0c844881 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f/Custom_Tile Jacqueline Canine 7aeca6.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f/Custom_Tile Jacqueline Canine 7aeca6.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708406425/5A57CC74B357FC9826F5E433109A5D7506AF5B0D/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708409781/C504CD93965EC04EBCAD7440CEE2F5CC0CEF9B8A/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708406473/27D805A6B11B91691FDA338CA981D264C92D98B4/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708409829/5B9442CA3BD4B0F37F58505B84EEA6E1AD76A4D9/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.9600017 posZ: -2.29498529 rotX: -6.1689534e-05 - rotY: 180 + rotY: 180.0 rotZ: -3.79493031e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -6.66 posY: 3.03 posZ: -0.34 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f/Custom_Tile Kate Winthpup ccff5a.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f/Custom_Tile Kate Winthpup ccff5a.yaml index 3a959cdfc..61bbae3be 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f/Custom_Tile Kate Winthpup ccff5a.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f/Custom_Tile Kate Winthpup ccff5a.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708405508/E5578DBC5D96CA60DF4FCD962958B3AB48FBB7FF/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708408923/70406CED274C9EE96A5275083C1472EEB7F42655/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708405554/F313FAF23B1125C6E1F064177146B0C1726D732B/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708408969/3B7B47E8D072406708C65F819662ECC5F4B43CA7/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000015 rotZ: -6.25381972e-06 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -9.45 posY: 3.03 posZ: -0.41 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f/Custom_Tile Skids O'Droole 35a602.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f/Custom_Tile Skids O'Droole 35a602.yaml index 28c74e2b6..ada3e46c2 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f/Custom_Tile Skids O'Droole 35a602.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Barkham Horror b08c1f/Custom_Tile Skids O'Droole 35a602.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708405998/57C5A19E3FDDE6159F7D4C319C40F83CAA9E2958/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708409369/88D089A83D503494EAC46DE1D41B6852D37C7518/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708406061/324040CFDCAD02FA8C33585794D71751C3CCF6FB/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708409413/2C5B4CA5C5308BCA94B02FDA37446D2476434744/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.960001945 posZ: -2.128488 rotX: -7.556884e-05 - rotY: 180 + rotY: 180.0 rotZ: -5.03773372e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -8.07 posY: 3.04 posZ: -0.39 - rotX: 1 - rotY: 180 - rotZ: 1 + rotX: 1.0 + rotY: 180.0 + rotZ: 1.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec.yaml index f4b236fd4..45b2e11e0 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 @@ -40,11 +40,11 @@ Transform: posX: 16.65 posY: 3.29 posZ: 0.41 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec/Custom_Tile Bob Jenkins 2eea14.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec/Custom_Tile Bob Jenkins 2eea14.yaml index a7c83fb60..4a4c76668 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec/Custom_Tile Bob Jenkins 2eea14.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec/Custom_Tile Bob Jenkins 2eea14.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127589857/8350D4B8CA0167FD63AE6F4252DB131DCF02068F/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127523334/29041B1A9ECCAD66934F7394C1BAAD5A29419D5C/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127589908/773A07E5D19FAFDA6AF71CEBC069175C769EF9ED/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127588327/419EF2D650774CCB0500C73CFC43AC77D234747F/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.9599999 posZ: 4.86478758 rotX: -6.98059e-05 - rotY: 180 + rotY: 180.0 rotZ: 2.13232343e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 13.05 posY: 2.02 posZ: 0.18 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec/Custom_Tile Daniella Reyes 38912e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec/Custom_Tile Daniella Reyes 38912e.yaml index 3e82f36a3..042d67230 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec/Custom_Tile Daniella Reyes 38912e.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec/Custom_Tile Daniella Reyes 38912e.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127591539/554A5A800A2C267F06CD7E9916E7DDAFEC381EF8/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127521616/39573C71B46B811A60950D96773E901A90970259/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127591604/10ED90016BFAA3922CD739B54BD7CBF3BD34C6D5/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127588406/F938D09732F8FDBDAD79625BDA22820D52B6A5C5/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.960001349 posZ: 4.295325 rotX: -7.119444e-05 - rotY: 180 + rotY: 180.0 rotZ: 5.381034e-06 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 11.65 posY: 3.43 posZ: 7.4 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec/Custom_Tile Lily Chen ea25c3.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec/Custom_Tile Lily Chen ea25c3.yaml index 3510d8538..85c8901aa 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec/Custom_Tile Lily Chen ea25c3.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec/Custom_Tile Lily Chen ea25c3.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127590802/89F9AF2C4EAFD5ABDB3E877213F79C0D4A410C78/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127522876/4B0FEBAFA852F2D0A8C5496CF467EEB190EABD6C/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127590872/69AEF24314609C572C8EC2443582BE04F2186806/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127588477/F570ACBA35CB2F916284EFF8F671646235DA822C/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -80,9 +80,9 @@ States: posZ: 2.61119843 rotX: 3.82719481e-05 rotY: 179.999908 - rotZ: 180 + rotZ: 180.0 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 12.84 posY: 3.47 posZ: 5.95 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec/Custom_Tile Monterey Jack d9a9ba.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec/Custom_Tile Monterey Jack d9a9ba.yaml index a9af95700..aa14912f3 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec/Custom_Tile Monterey Jack d9a9ba.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec/Custom_Tile Monterey Jack d9a9ba.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127593370/DD3BE0CB11F4308ED5C966D8B6620BB50BD11186/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127522568/63253F03CECE5EDF2042D17AFFA5A1F082DD7ECC/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127593415/FA319D0449914FDED7A263FBECEF3FA4714C1905/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127588525/D4FA9699B6ED018ED996622689AD6384CA7833D2/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 179.999969 rotZ: -6.758973e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 12.61 posY: 3.47 posZ: 6.32 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec/Custom_Tile Norman Withers 3fc084.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec/Custom_Tile Norman Withers 3fc084.yaml index 79b21e0bc..729ea2a4b 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec/Custom_Tile Norman Withers 3fc084.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Edge of the Earth c4deec/Custom_Tile Norman Withers 3fc084.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127592641/5C7D4DBFC0F62886306691D6596E87C064F353D9/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127522098/E3BE272A6CDA2AD18B26FD9A8A2553006DB02EF3/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1696157607127592732/BB9E64CC70B4E6BD61EEBDD74839B8E2CBA72E2C/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1696157607127588586/8BC5F352FA3F5C2D4BF09F424A1649604D3974B7/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000061 rotZ: 1.63141249e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 12.82 posY: 3.48 posZ: 5.84 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e.yaml index 6a6280a67..752eaf39b 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 0 - g: 0 - r: 1 + b: 0.0 + g: 0.0 + r: 1.0 ContainedObjects: - !include 'Bag Scarlet Keys 4c6a2e/Custom_Tile Charlie Kane ba9781.yaml' - !include 'Bag Scarlet Keys 4c6a2e/Custom_Tile Darrell Simmons 798bfe.yaml' @@ -41,11 +41,11 @@ Transform: posX: 15.04 posY: 3.29 posZ: -2.65 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Amina Zidane 983a88.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Amina Zidane 983a88.yaml index cdbbe014b..223dffe2b 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Amina Zidane 983a88.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Amina Zidane 983a88.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632946771/4FF34F9BE90B5C5882C6CADF9A172E0E2005BAA8/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632960330/90E6E1620ACFD62849623DF312D75DEBA216BC4D/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632946814/0D8C9527E570E7F83FC14B94C9FC5C76A263735C/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632960426/FCE12D171233548F91BAC47BD2DCA07557FDE6A7/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000015 rotZ: 1.26301475e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 17.69 posY: 1.97 posZ: 11.67 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Carson Sinclair f44b03.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Carson Sinclair f44b03.yaml index 838f0aa08..eeace2e54 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Carson Sinclair f44b03.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Carson Sinclair f44b03.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632949464/2D23C92B73A245B0359ACF0FD728CA6D287A491E/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632951929/10AD6AC10E9125B22E4F0BF08EB53393DE19CF84/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632949502/8370097D70B1D2EDEA4FBAA398F86577D05B8FF5/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632952034/870E0122E968A8072CC6F5300011507EE611917F/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000076 rotZ: -3.599694e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 17.48 posY: 1.97 posZ: 11.93 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Charlie Kane ba9781.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Charlie Kane ba9781.yaml index c16e8809f..6051cc279 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Charlie Kane ba9781.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Charlie Kane ba9781.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1814399894375030660/C6ED3F6B2F5351E103EF1277496BE3088F332458/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1814399894375014306/82D626CE83CFE1AE3F3A3B0A521F2DFB177DF83A/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1814399894375030766/8DDB3114E8EAA4E6644DA807E802C03C6F54CE58/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1814399894375034886/D7435766AE971D4EC42ABCB34CFA7A92B1446224/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000031 rotZ: -5.65799564e-06 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 19.27 posY: 2.12 posZ: 1.94 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Darrell Simmons 798bfe.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Darrell Simmons 798bfe.yaml index 66883f792..145619b5d 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Darrell Simmons 798bfe.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Darrell Simmons 798bfe.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632947355/941B61A3D6771DEA0B0BBE3F603015073D856D40/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632960994/1370ADD64F9B581016C956F7EE4E7BB3A188B2D4/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632947406/933B7F89F93F09B06C4B089A621D4CE26BF65DB9/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632961033/B7EB0A964E3A2D285CD669B65A6D09B80219FB0C/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 1.06 posZ: -0.45706138 rotX: -4.26442239e-06 - rotY: 180 - rotZ: 180 + rotY: 180.0 + rotZ: 180.0 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 16.7 posY: 1.97 posZ: 14.17 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Kymani Jones 162b69.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Kymani Jones 162b69.yaml index 549113e67..79a3029e4 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Kymani Jones 162b69.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Kymani Jones 162b69.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632947978/2D4BE572C692C50D61B7F388A68BECBD2E1DACFE/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632961069/49380318F33EDA0DC95C9A43322F0AFC8B4E5ECA/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632948332/14ABF11FB8CAFC7377425F01773F10B51B6DCA58/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632961104/698C84C2E7E5A963C804F1BC15DBD0958D3E12FF/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,24 +79,24 @@ States: posY: 1.06000054 posZ: -0.32208845 rotX: -2.41434973e-05 - rotY: 180 - rotZ: 180 + rotY: 180.0 + rotZ: 180.0 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' Sticky: true Tooltip: true Transform: - posX: 18 + posX: 18.0 posY: 1.97 posZ: 11.69 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Vincent Lee 145581.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Vincent Lee 145581.yaml index d13393e29..9d8d749e8 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Vincent Lee 145581.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag Scarlet Keys 4c6a2e/Custom_Tile Vincent Lee 145581.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632948931/5077C05281A2E04372EBFE2BA974DADB867B8910/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632952090/B031DAA4DB280D0D11A41CF8351A200913C2F558/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632948977/750B84BB13732CD535E935D33778FE514E924685/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632952227/81ADF0FEFD4F8AD83F296FC252792378622CFFFF/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000092 rotZ: -2.07854464e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 19.21 posY: 1.97 posZ: 12.86 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef.yaml index 6dac09da9..26905ab6d 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef.yaml @@ -1,13 +1,13 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: b: 0.20035 - g: 0 + g: 0.0 r: 0.10799 ContainedObjects: - !include 'Bag The Circle Undone f2acef/Custom_Tile Marie Lambeau b47207.yaml' @@ -42,11 +42,11 @@ Transform: posX: 8.8 posY: 1.79 posZ: 2.84 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Bag Prologue bf6b32.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Bag Prologue bf6b32.yaml index 446827c3a..3677da82c 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Bag Prologue bf6b32.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Bag Prologue bf6b32.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 0 - g: 0 - r: 0 + b: 0.0 + g: 0.0 + r: 0.0 ContainedObjects: - !include 'Bag Prologue bf6b32/Custom_Tile Penny White 7aeedd.yaml' - !include 'Bag Prologue bf6b32/Custom_Tile Valentino Rivas 8b4fcc.yaml' @@ -39,11 +39,11 @@ Transform: posX: 7.6 posY: 2.86 posZ: 6.62 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Bag Prologue bf6b32/Custom_Tile Gavriella Mizrah f9cba2.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Bag Prologue bf6b32/Custom_Tile Gavriella Mizrah f9cba2.yaml index 83522a16c..98d4ff7ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Bag Prologue bf6b32/Custom_Tile Gavriella Mizrah f9cba2.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Bag Prologue bf6b32/Custom_Tile Gavriella Mizrah f9cba2.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708042402/D2901AC03697A42E54228B5D8D7F96B34DBD5720/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708044131/DC186D07DAB34575B1A3544784FBE993C11E229B/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708042460/684FE39DC4954AAA65F13CE0E7776ED1480DD717/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708044175/0876392599AB0CAF855CA828A4F72E8B01F6B056/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 179.998016 rotZ: -4.01837751e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 3.32 posY: 3.03 posZ: 7.75 - rotX: 359 - rotY: 180 - rotZ: 359 + rotX: 359.0 + rotY: 180.0 + rotZ: 359.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Bag Prologue bf6b32/Custom_Tile Jerome Davids eb6c8f.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Bag Prologue bf6b32/Custom_Tile Jerome Davids eb6c8f.yaml index 56cfda070..5c86347f6 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Bag Prologue bf6b32/Custom_Tile Jerome Davids eb6c8f.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Bag Prologue bf6b32/Custom_Tile Jerome Davids eb6c8f.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708043081/D91383186F9B8AA422B0811DD8F5522EDB5A14D7/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708044217/CE2E92945A690E13C7FE95586387811FA95048ED/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708043122/B0840FC4C8EC8E3971B33A0E14A8E43D8C4EEE6A/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708044267/AB7EE8AA3481039EB6F147FA7626D0076C3188E3/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 179.999969 rotZ: -8.264612e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 3.74 posY: 2.8 posZ: 6.37 - rotX: 14 - rotY: 177 - rotZ: 7 + rotX: 14.0 + rotY: 177.0 + rotZ: 7.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Bag Prologue bf6b32/Custom_Tile Penny White 7aeedd.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Bag Prologue bf6b32/Custom_Tile Penny White 7aeedd.yaml index 3d5066d3f..c6c0d3bc1 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Bag Prologue bf6b32/Custom_Tile Penny White 7aeedd.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Bag Prologue bf6b32/Custom_Tile Penny White 7aeedd.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708041558/B18C704D029D487F5144ED43C59EFA59663CA809/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708044314/922727E14CC8730ADE0AB75353A4B64C60638667/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708041617/715DCD1F1ACB93954D25583FD9544D29271A015E/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708044371/943EA7598178161B4718C9DD5D64C65F489CE35F/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 179.998123 rotZ: 0.000128975968 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 5.88 posY: 2.48 posZ: 6.45 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Bag Prologue bf6b32/Custom_Tile Valentino Rivas 8b4fcc.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Bag Prologue bf6b32/Custom_Tile Valentino Rivas 8b4fcc.yaml index e6290b689..a767e4d21 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Bag Prologue bf6b32/Custom_Tile Valentino Rivas 8b4fcc.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Bag Prologue bf6b32/Custom_Tile Valentino Rivas 8b4fcc.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708040670/D6E2F0956336D577BC309FEF99BA4F6A8BEA10B8/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708044431/AEFDF24400F85B660E1510B6A9546BEF8AE33A82/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708040724/4EC16CEEFEC119C5BEB75F6E7444FE4515CA36D4/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708044475/DAAE1705D3922D41DA166661D2BBC990470CFF61/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 179.99794 rotZ: -4.16127332e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 4.8 posY: 2.57 posZ: 6.47 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Carolyn Fern a038ff.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Carolyn Fern a038ff.yaml index 0b0a13198..5e0cbdef5 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Carolyn Fern a038ff.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Carolyn Fern a038ff.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708060895/93E0CEC02A71E77B025DEBE04062D565ABD65D11/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708057800/291702BF8534F8B2243E83E9A26970495545BE76/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708060953/2D7FA90625496CF0D2AD658E89B1853964C842EC/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708057853/34252766A27380A65E779226890EA55F9C08818E/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000046 rotZ: -3.45373155e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -9.93 posY: 3.04 posZ: -4.34 - rotX: 359 - rotY: 180 - rotZ: 358 + rotX: 359.0 + rotY: 180.0 + rotZ: 358.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Diana Stanley ca7ab1.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Diana Stanley ca7ab1.yaml index 76320d95c..77eade31a 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Diana Stanley ca7ab1.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Diana Stanley ca7ab1.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708063555/2F9E266C40AE0397082EFDD464CEFB434AAA239F/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708059083/FE0F13EC3BC4129B83902B4ADDD765A5E197B365/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708063597/B87F1B817B0D73543775B5CB291408FA791716E8/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708059120/46F8A254A2FF410E3089A56C4A26649D1A4333CA/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.960001349 posZ: -3.721062 rotX: -2.01119165e-05 - rotY: 180 + rotY: 180.0 rotZ: -1.17004083e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -7.17 posY: 3.03 posZ: -4.28 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Joe Diamond 5f7f8b.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Joe Diamond 5f7f8b.yaml index 1ccf07135..5e82f62f4 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Joe Diamond 5f7f8b.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Joe Diamond 5f7f8b.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708061628/BD683C1BBF4D6284DBF6456B9BF21CDE56875D38/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708058198/E270E67DFC8D0CCF6B3F27ADF8252017F35860C5/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708061703/26265EF57B419FD1EE547B539BA791A34010DA6D/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708058234/BFDAF1FB116F6CB0DBAC6E5E2EA4C6D169270B07/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000015 rotZ: -9.196562e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -9.55 posY: 3.03 posZ: -4.32 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Marie Lambeau b47207.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Marie Lambeau b47207.yaml index 96ea0b003..8954578d1 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Marie Lambeau b47207.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Marie Lambeau b47207.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708064666/3B3FCB362F89D258EA5CE949974064DEB781AAC7/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708059931/C11E59927991E198A6551EAE10D576C21427CFE0/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708064716/CF414F2E1AEA52AC319C8EFA22763DDCA6443BCA/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708059970/29895A4A8B99A7FF1A2BA4AD494F291C4694998B/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000015 rotZ: 8.347389e-06 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -4.9 posY: 3.03 posZ: -4.26 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Preston Fairmount d37624.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Preston Fairmount d37624.yaml index 50acf27c7..e432aa055 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Preston Fairmount d37624.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Preston Fairmount d37624.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708062694/41602A79A70F570C0B2BDD3F48EB3E0C7277547D/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708058707/B20EB03B233EF19F3DCE2DF867F9F8FCEF02D9E2/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708062739/B79E2EFBDC5344261BD995937C005CE0DDE6AFC7/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708058754/667A445AD0EAF7962759D5BD349F7B6C53662D28/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.9600011 posZ: -3.82854247 rotX: -0.000163961755 - rotY: 180 + rotY: 180.0 rotZ: -2.39470028e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -8.4 posY: 3.03 posZ: -4.31 - rotX: 359 - rotY: 180 - rotZ: 358 + rotX: 359.0 + rotY: 180.0 + rotZ: 358.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Rita Young eb0c23.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Rita Young eb0c23.yaml index 7aea4b67b..ba7a75d29 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Rita Young eb0c23.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Circle Undone f2acef/Custom_Tile Rita Young eb0c23.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708064098/9E1DB28CC00E4CD43B52E8814A990EC6C1439028/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708059477/A3B4AAD4C8173EF3EE8F99DC1F943E4A55D231EB/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708064139/800CD01A0EE5917CA4D6AA0AEEBB960ECDFD3768/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708059524/2F6A680EF130769312A480970BB67A7AF0AE694A/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.9600022 posZ: -3.73485827 rotX: -2.3794717e-05 - rotY: 180 + rotY: 180.0 rotZ: -1.85044613e-07 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -6.03 posY: 3.03 posZ: -4.3 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26.yaml index e5415cd5d..bdcc9c87d 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: b: 0.65331 g: 0.08469 - r: 0 + r: 0.0 ContainedObjects: - !include 'Bag The Core Set 177b26/Custom_Tile Wendy Adams e6d299.yaml' - !include 'Bag The Core Set 177b26/Custom_Tile Agnes Baker 01470e.yaml' @@ -40,11 +40,11 @@ Transform: posX: 14.62 posY: 3.28 posZ: 6.75 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26/Custom_Tile Agnes Baker 01470e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26/Custom_Tile Agnes Baker 01470e.yaml index 340d3eb7c..b9f5403e9 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26/Custom_Tile Agnes Baker 01470e.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26/Custom_Tile Agnes Baker 01470e.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708116857/F6525F4381108EA389FCB0A907025891D3C0A560/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707198420/4DFF0CA80A65CF166F3455373A5226C153CE7A7A/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708116942/214E8832F3F632A6092FB4D9788B42C73EA70A4E/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707198474/49327AD91E6F8064ACB52160E7AA58D26241A7A8/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 1.06000042 posZ: -2.58590031 rotX: -4.193393e-06 - rotY: 180 - rotZ: 180 + rotY: 180.0 + rotZ: 180.0 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 38.46 posY: 1.97 posZ: 14.89 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26/Custom_Tile Daisy Walker 5bc05f.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26/Custom_Tile Daisy Walker 5bc05f.yaml index c370aa481..249fd849d 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26/Custom_Tile Daisy Walker 5bc05f.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26/Custom_Tile Daisy Walker 5bc05f.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707152276/A9BCA599A2FAA24875E29E091F8EED45D1E9F905/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707154662/243E17ADB4A0E7510E07DD354F805D349E03E287/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707152339/6A5CB834C2F0D64D0932908D87BD789D695DED00/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707154723/4CEE958BF7444019B4C4AC3186006C76C4314545/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 1.06000268 posZ: -5.908639 rotX: -1.18843254e-05 - rotY: 180 + rotY: 180.0 rotZ: 180.000046 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 19.94 posY: 1.97 posZ: 9.85 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26/Custom_Tile Roland Banks e876b4.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26/Custom_Tile Roland Banks e876b4.yaml index f62b68416..6f5689a08 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26/Custom_Tile Roland Banks e876b4.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26/Custom_Tile Roland Banks e876b4.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707105818/DFA0311033860DD6A8E14C0A40B4BD71F2B06697/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707184473/85338D56A64A03F43794AB8EF5F3A5763AE140B1/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230706030974/1E4B02FA9FF5641454726CD0253815C27811BCAE/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707104892/3E08D3A6B8BE778339739AF6AE2D2E70A8D2877A/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000015 rotZ: -1.90262035e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 5.77 posY: 3.03 posZ: -0.52 - rotX: 359 - rotY: 180 - rotZ: 2 + rotX: 359.0 + rotY: 180.0 + rotZ: 2.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26/Custom_Tile Skids O'Toole e8f6cd.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26/Custom_Tile Skids O'Toole e8f6cd.yaml index 4a0f9d7c9..9289699de 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26/Custom_Tile Skids O'Toole e8f6cd.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26/Custom_Tile Skids O'Toole e8f6cd.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707188729/E4081F8F55E530E269E390A35613A8D4D311BD02/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707186936/7AE575933AB57B52351134E4952A625D6D2297A4/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707188794/AF0E4CD6B11F907B85D09F26651E3B0EE961FCA3/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707186988/9C5CF0742C6EBC8238C92E195B1D5AAB1B4D7B22/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 179.999985 rotZ: 180.000122 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 35.11 posY: 1.97 posZ: 15.1 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26/Custom_Tile Wendy Adams e6d299.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26/Custom_Tile Wendy Adams e6d299.yaml index 055c471d6..05c51f4a9 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26/Custom_Tile Wendy Adams e6d299.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Core Set 177b26/Custom_Tile Wendy Adams e6d299.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707202899/CFBE0B6D3BA95995F379A602C5A8A1A583D00793/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707202088/2216F76282F4A4FCB1778C7E5E574B88B001D379/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707202960/E1CD12C981BBAAFACA669288E245EE18EA70323E/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707202149/4A0FD0F0B7A2D889E50B39F972595AC00A2C8A8F/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 1.060002 posZ: -5.86200142 rotX: -0.000135441631 - rotY: 180 + rotY: 180.0 rotZ: 180.0001 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 22.15 posY: 1.97 posZ: 6.95 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907.yaml index 97bd07790..97fb8a86e 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 @@ -40,11 +40,11 @@ Transform: posX: 9.42 posY: 1.79 posZ: 2.65 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907/Custom_Tile Luke Robinson 1554fb.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907/Custom_Tile Luke Robinson 1554fb.yaml index f86f6619d..9e6fbd220 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907/Custom_Tile Luke Robinson 1554fb.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907/Custom_Tile Luke Robinson 1554fb.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708197291/94ABB4D5AA7291F65EDFB7B2C3CCA6AA3EF0522F/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708201100/5858E2373A89F6CB16FEBE701D3946BA9C965997/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708197345/58932A027E2D20CB188338F45734A0818F3EB38C/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708201147/2B427DD014C4FC5209B9AF01F1BC19C79AB0C1F0/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000015 rotZ: 1.1604704e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -6.51 posY: 3.03 posZ: -5.78 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907/Custom_Tile Mandy Thompson 7c5bee.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907/Custom_Tile Mandy Thompson 7c5bee.yaml index b6c191170..5a1c0af1d 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907/Custom_Tile Mandy Thompson 7c5bee.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907/Custom_Tile Mandy Thompson 7c5bee.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708195342/5351DA7E5E49F475C713410A0E987F1D630C0319/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708199818/DD1907BF3605BF9326C4346C159A2A37E7DAC3BF/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708195418/3027FAE236F7533F31123C4A2151F1C88BF800F7/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708199872/294C8959E21BED5D48F93E30897485028A4B7174/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000015 rotZ: -1.606895e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -9.05 posY: 3.03 posZ: -5.91 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907/Custom_Tile Patrice Hathaway 766ad4.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907/Custom_Tile Patrice Hathaway 766ad4.yaml index 9104c10ce..34a7f4d18 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907/Custom_Tile Patrice Hathaway 766ad4.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907/Custom_Tile Patrice Hathaway 766ad4.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708197974/23DC99948D8444641D9196853ED669B80B4E1458/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708201644/A0164787739161D57DAE1776D9385A761A6DCCA8/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708198074/6B49DCCBADD6BC03EA4E6564C5D49ABA6E5DD745/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708201716/30C452E02E8909A9B104CE8ACC0E66DC41976DE2/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000015 rotZ: 1.294456e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -5.21 posY: 3.03 posZ: -5.77 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907/Custom_Tile Tommy Muldoon 83023e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907/Custom_Tile Tommy Muldoon 83023e.yaml index 9515e7914..bfcafd2b8 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907/Custom_Tile Tommy Muldoon 83023e.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907/Custom_Tile Tommy Muldoon 83023e.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708194665/A34C45D69EC2BE7C20E1805631BB915C013B88F4/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708199362/4BD038D582CFD3330C47C61F58EF6A7CE9E1CE1B/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708194721/C86B6842A9D4FB9D48FB9D37DAC53258A957403D/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708199413/555A8115D647A95F0B148ECF884E01C708EF6016/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 179.999954 rotZ: 180.000214 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -12.15 posY: 3.03 posZ: 1.97 - rotX: 359 - rotY: 180 - rotZ: 358 + rotX: 359.0 + rotY: 180.0 + rotZ: 358.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907/Custom_Tile Tony Morgan 4ac15b.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907/Custom_Tile Tony Morgan 4ac15b.yaml index 854f4e815..317888c12 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907/Custom_Tile Tony Morgan 4ac15b.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dream-Eaters 0c3907/Custom_Tile Tony Morgan 4ac15b.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708196300/FB58ECD4C705DDBE1292D2697D813C23C24C9BB9/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708200588/B83243F3620B8A3F857EF19BD6C918DB791535E5/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708196357/33B209F29895F79441FD38C527C7B547347C095D/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708200641/15C6BAF9B845A1180C9C02DFD64D8D4466B5B3B9/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 179.999985 rotZ: 180.000031 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -7.8 posY: 3.04 posZ: -5.87 - rotX: 1 - rotY: 180 - rotZ: 359 + rotX: 1.0 + rotY: 180.0 + rotZ: 359.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223.yaml index 36cbc8cd4..e3ea41da0 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: b: 0.17373 g: 0.25261 - r: 0 + r: 0.0 ContainedObjects: - !include 'Bag The Dunwich Legacy 315223/Custom_Tile Ashcan Pete 0d621f.yaml' - !include 'Bag The Dunwich Legacy 315223/Custom_Tile Jim Culver 42a760.yaml' @@ -40,11 +40,11 @@ Transform: posX: 10.73 posY: 1.79 posZ: 2.23 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223/Custom_Tile Ashcan Pete 0d621f.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223/Custom_Tile Ashcan Pete 0d621f.yaml index 0633d0faf..68d10ce9f 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223/Custom_Tile Ashcan Pete 0d621f.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223/Custom_Tile Ashcan Pete 0d621f.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707437839/DF4CBA1822068BBA831D3EB8AD13474FB8DBCA81/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707435937/D3FD68FB9D25C45F4351E231A1A1500F8B52B0E8/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707437877/A17FC0F81149FD5750D725CEA1CB8E2E2990CAE2/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707435976/099E4506B9C55A529BEE7202D3A9E62162B95C14/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.9600011 posZ: -7.34163046 rotX: -0.000219753332 - rotY: 180 + rotY: 180.0 rotZ: -3.21620137e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 4.81 posY: 1.97 posZ: -4.71 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223/Custom_Tile Jenny Barnes 56ca21.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223/Custom_Tile Jenny Barnes 56ca21.yaml index 8fae107d6..a5e8de5fb 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223/Custom_Tile Jenny Barnes 56ca21.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223/Custom_Tile Jenny Barnes 56ca21.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707439869/3AA87F4C885E1928F938394AF7754160FCC0694D/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707436022/F40952A2FE9BB173600E2F9CE67BCEDBCFEEABAB/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707439928/BDA49447868E6DC922CA397493CBBABA7C904C23/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707436065/6A5BB76DE8B25F6D7C83B3CDA901357B8ED083A3/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.9600029 posZ: -6.38804436 rotX: -2.06030254e-05 - rotY: 180 + rotY: 180.0 rotZ: -1.89492821e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -6.77 posY: 3.04 posZ: -7.82 - rotX: 1 - rotY: 180 - rotZ: 0 + rotX: 1.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223/Custom_Tile Jim Culver 42a760.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223/Custom_Tile Jim Culver 42a760.yaml index bf9013cbe..bd9699217 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223/Custom_Tile Jim Culver 42a760.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223/Custom_Tile Jim Culver 42a760.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707440813/6326948A8D087B2101B9B283C1856EFB54F8E580/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707436133/DC2C6B48A6F101ADFEDC5CA8ADDC6F2D7FA1D384/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707440855/BC820789B1008EC280F57C9D88D56F1754B0E57F/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707436175/12917AAB8964F6124B3CDF7FFC0FAE69BBFA4C82/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000031 rotZ: -3.143159e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -5.53 posY: 3.03 posZ: -7.83 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223/Custom_Tile Rex Murphy 5996b0.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223/Custom_Tile Rex Murphy 5996b0.yaml index f530d6314..d18e90c23 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223/Custom_Tile Rex Murphy 5996b0.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223/Custom_Tile Rex Murphy 5996b0.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707438760/FAC759B3ADCD73C2FC051AB3615E617C786D5183/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707436215/18CA3FE1CE4A7591CE9C57673CCDF38F436B1BD9/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707438830/73F639A55F38437B85A9B8F5E28431C5BD87989C/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707436256/F4B3B32406F832907733CCFDC02F9292B9232DE2/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.9600011 posZ: -3.68585539 rotX: -0.000162696844 - rotY: 180 + rotY: 180.0 rotZ: -2.29980924e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -7.86 posY: 3.03 posZ: -7.84 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223/Custom_Tile Zoey Samaras 60372a.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223/Custom_Tile Zoey Samaras 60372a.yaml index 5b9666f90..ec7a65440 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223/Custom_Tile Zoey Samaras 60372a.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Dunwich Legacy 315223/Custom_Tile Zoey Samaras 60372a.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707434611/45CAB2711B641D5400837665F1D6CD3D16B27C8D/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707436303/6B67F7F71CACE92D53DB204A6643392000EC5BE2/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707434655/CE8F32FF4549A14B8BADE3C0E48F68F0E61B72FC/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707436343/8E7FB54B7D1A9FD6D037A4AE044A257580EC7BB8/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000015 rotZ: 8.123292e-06 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -8.99 posY: 3.03 posZ: -7.86 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231.yaml index db129f74b..96b0bc703 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231.yaml @@ -1,13 +1,13 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: b: 0.15196 - g: 0 + g: 0.0 r: 0.41289 ContainedObjects: - !include 'Bag The Forgotten Age d32231/Bag City of Archives cdd5b5.yaml' @@ -41,11 +41,11 @@ Transform: posX: 15.59 posY: 3.29 posZ: 1.94 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5.yaml index d93601556..771fc3283 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5.yaml @@ -1,13 +1,13 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: b: 0.15294 - g: 0 + g: 0.0 r: 0.41176 ContainedObjects: - !include 'Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian db5660.yaml' @@ -41,11 +41,11 @@ Transform: posX: 17.62 posY: 1.79 posZ: -9.52 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian 41af3c.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian 41af3c.yaml index b24076808..cbb6a3d8b 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian 41af3c.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian 41af3c.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708508538/25188B78E433A1487103B4D7FEBF8660AEBDB017/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708494679/FCF06130784FD5EDD0694D5794017F9ACB052315/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708508579/64A0C0B09767C447CC1441E1B54BA67FB66DA3BA/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708494734/076A18365A14C7E7F89184FDFFBB50B3B539C586/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000015 rotZ: 1.23184545e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -8.76 posY: 3.02 posZ: -6.17 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian 59d9b9.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian 59d9b9.yaml index 1454a2874..3b9c7bdeb 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian 59d9b9.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian 59d9b9.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708508538/25188B78E433A1487103B4D7FEBF8660AEBDB017/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708495053/9F1C7D1CF0A5F67422EB475891FFBC8B4AAE7332/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708508579/64A0C0B09767C447CC1441E1B54BA67FB66DA3BA/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708495101/BC22F1A3252365C98CD5E4CF8B90D5B7BF5D5D94/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 179.888611 rotZ: 6.892589 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -7.19 posY: 3.02 posZ: -6.04 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian 7edb33.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian 7edb33.yaml index df1f10a9c..9f1b50b40 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian 7edb33.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian 7edb33.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708508538/25188B78E433A1487103B4D7FEBF8660AEBDB017/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708494812/35FCC25E42DEEFBDEE5532239458267C6A2249FE/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708508579/64A0C0B09767C447CC1441E1B54BA67FB66DA3BA/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708494846/558E4AE3FCAB615FF4DD53792BC437859380AB97/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.96000123 posZ: -3.264808 rotX: -2.00939721e-05 - rotY: 180 + rotY: 180.0 rotZ: -9.9067e-06 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -5.26 posY: 3.03 posZ: -5.74 - rotX: 358 - rotY: 180 - rotZ: 1 + rotX: 358.0 + rotY: 180.0 + rotZ: 1.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian 864f65.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian 864f65.yaml index f2437e0d6..084e66fda 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian 864f65.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian 864f65.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708508538/25188B78E433A1487103B4D7FEBF8660AEBDB017/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708494976/72A53130063D24E953167BE7B0CA1AAC70C79DB6/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708508579/64A0C0B09767C447CC1441E1B54BA67FB66DA3BA/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708495014/AF340EF63C3FA81AB77B57C304505D3D1E45D42A/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000046 rotZ: -8.162348e-06 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -3.75 posY: 3.02 posZ: -5.87 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian ae05ab.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian ae05ab.yaml index ba78ec6d1..d87eee7dd 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian ae05ab.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian ae05ab.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708508538/25188B78E433A1487103B4D7FEBF8660AEBDB017/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708495147/5E40C14ABB1F144C335EDF3C38B474546EF9945F/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708508579/64A0C0B09767C447CC1441E1B54BA67FB66DA3BA/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708495191/C7765026DA0DC1C0CA01830224F04468A6B5CBBD/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.0001 rotZ: 1.33664835e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -1.94 posY: 3.02 posZ: -5.62 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian db5660.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian db5660.yaml index 22cc4505f..2fa3ed6ec 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian db5660.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Bag City of Archives cdd5b5/Custom_Tile Body of a Yithian db5660.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708508538/25188B78E433A1487103B4D7FEBF8660AEBDB017/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708494885/788378B90865B37A2AAF16F0E5E78F04E4B02828/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708508579/64A0C0B09767C447CC1441E1B54BA67FB66DA3BA/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708494922/D8FB1A9F81A9280B7FE5DBD7B4C2AB7F47ACFDCE/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000076 rotZ: -2.682792e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -0.2 posY: 3.02 posZ: -5.56 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Custom_Tile Calvin Wright c1f75b.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Custom_Tile Calvin Wright c1f75b.yaml index cb9ea57cd..041ed1500 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Custom_Tile Calvin Wright c1f75b.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Custom_Tile Calvin Wright c1f75b.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707758465/E5CA9A3BF3B3179F1A10B02570EC798997022E8D/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707750962/F45A0066CD7BE9E910401289D2F9BB1F313A5299/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707758516/DE0C25D639BA250F1233C2E23C9556A7475ACCB8/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707751017/03DB96699627ADEB657478D40C69B39A9ED58B61/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000015 rotZ: -2.52172267e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -1.62 posY: 3.02 posZ: -7.01 - rotX: 358 - rotY: 180 - rotZ: 2 + rotX: 358.0 + rotY: 180.0 + rotZ: 2.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Custom_Tile Father Mateo f8d9b3.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Custom_Tile Father Mateo f8d9b3.yaml index 372cbb515..44bd3ce14 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Custom_Tile Father Mateo f8d9b3.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Custom_Tile Father Mateo f8d9b3.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707758059/FF47A21028678562DF0ED3B4DF7D7814FE0281E0/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707750559/FFC924E25985685F14BACCD3B2ADF1CB37D9B1C4/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707758100/8FC7921B1688B0C0059DBA6E920FB97740065E72/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707750616/8FE56DC4942B76B85B58969A9C4C31D15BE83DFB/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000015 rotZ: -4.14255665e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -1.34 posY: 3.02 posZ: -7.01 - rotX: 359 - rotY: 180 - rotZ: 1 + rotX: 359.0 + rotY: 180.0 + rotZ: 1.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Custom_Tile Finn Edwards 46ca51.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Custom_Tile Finn Edwards 46ca51.yaml index f8f2080dd..82e3c8383 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Custom_Tile Finn Edwards 46ca51.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Custom_Tile Finn Edwards 46ca51.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707757545/03D2D6CD390A00A82423C49D687A8CC47DFA43D5/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707750170/5332C0513469EABC4C2F1B07EDAAE32F39770E70/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707757588/3537B8A94D9A6F042DA905329477EFD81391474A/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707750209/A710646322E7116EC3EBBB1254E9B4A68D6B7CE2/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.9600012 posZ: -2.99892831 rotX: -1.80291991e-05 - rotY: 180 + rotY: 180.0 rotZ: -2.61345076e-06 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -2.62 posY: 3.02 posZ: -7.05 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Custom_Tile Leo Anderson 0d621f.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Custom_Tile Leo Anderson 0d621f.yaml index 5341ad8db..24847d2aa 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Custom_Tile Leo Anderson 0d621f.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Custom_Tile Leo Anderson 0d621f.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707756335/CC5AFDEA8E26679935805BC32838833E8B12F215/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707749544/BD7A64A90A1FFA471FA4856CB29CCC273B18C7AE/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707756395/E57E07E9A854840BE33D61949BC2B4E3BAC1BFBA/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707749604/41DB7C12949B64EA6051C07CF09126D37A16D951/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.960001469 posZ: -2.82980585 rotX: -2.17961933e-05 - rotY: 180 + rotY: 180.0 rotZ: 1.16313149e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -8.37 posY: 3.03 posZ: -0.19 - rotX: 359 - rotY: 180 - rotZ: 1 + rotX: 359.0 + rotY: 180.0 + rotZ: 1.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Custom_Tile Ursula Downs 56e051.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Custom_Tile Ursula Downs 56e051.yaml index 09deaf64e..3f41d5069 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Custom_Tile Ursula Downs 56e051.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Forgotten Age d32231/Custom_Tile Ursula Downs 56e051.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707756935/8D43B642B7250E7AFE9AD3B4AE6D49EE01EA3665/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707749650/EDF46057C37CA94C52D4A3AF49BE78028530E121/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707756990/F7769C9D015E6143276B37701234D4AD282B5404/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707749696/773DAB8DB22BE7297D18D94B2940525FBBE17307/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.960001 posZ: -2.90807033 rotX: -7.7487e-05 - rotY: 180 + rotY: 180.0 rotZ: -5.331672e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 26.71 posY: 1.97 posZ: 23.64 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163.yaml index 0989e0f79..8cd3fe43e 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163.yaml @@ -1,13 +1,13 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: b: 0.14874 - g: 0 + g: 0.0 r: 0.70196 ContainedObjects: - !include 'Bag The Innsmouth Conspiracy e65163/Custom_Tile Silas Marsh ea374e.yaml' @@ -40,11 +40,11 @@ Transform: posX: 14.21 posY: 3.29 posZ: -4.09 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163/Custom_Tile Amanda Sharpe e23b96.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163/Custom_Tile Amanda Sharpe e23b96.yaml index aec7f32cf..09d902f75 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163/Custom_Tile Amanda Sharpe e23b96.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163/Custom_Tile Amanda Sharpe e23b96.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708275352/896FBACDC6BBDCD438BA962B9A02B0D13B597989/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708267572/13622DE74585FC4876A8EFEE8420F8C836BA8519/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708275387/ADA399872F35C5633E24ED2963532A2AA50928EA/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708267631/1D18D69C99B182A73C6A5FA575DE99B44852E846/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 1.06000173 posZ: -2.77054262 rotX: -2.325564e-05 - rotY: 180 - rotZ: 180 + rotY: 180.0 + rotZ: 180.0 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -5.61 posY: 3.03 posZ: -3.28 - rotX: 358 - rotY: 180 - rotZ: 0 + rotX: 358.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163/Custom_Tile Dexter Drake cc7ebf.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163/Custom_Tile Dexter Drake cc7ebf.yaml index 76204cbc4..29b4be575 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163/Custom_Tile Dexter Drake cc7ebf.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163/Custom_Tile Dexter Drake cc7ebf.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708276933/1F855BF79C7F245CD86DF20A6DF3EFD003937DD8/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708268582/D82F61CFBC8EC78B52B91DC150B694AEAA8786F8/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708276987/583BFF57285786963195B100877F2C46A36E0C63/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708268635/F1EF016E4474C1EC62988C8E36B1BF096DE05A5C/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.9600016 posZ: -2.534034 rotX: -4.97978253e-05 - rotY: 180 + rotY: 180.0 rotZ: -3.80652418e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -2.9 posY: 3.03 posZ: -3.25 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163/Custom_Tile Silas Marsh ea374e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163/Custom_Tile Silas Marsh ea374e.yaml index 7281a30ac..c29e79ba8 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163/Custom_Tile Silas Marsh ea374e.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163/Custom_Tile Silas Marsh ea374e.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708277471/62E0152FFC85349404B3B952366F83AC3D730133/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1689372753836133538/08468DD39631F30C51A0D315DBE9827C3C2BC1F7/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708277518/28DA0C3837F55D1D6C6E08FF0B60C09E5ED8E33A/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708269049/E0FAA98DADFB179B943E24145E590BD71A1779BF/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000031 rotZ: -3.02718163e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -1.66 posY: 3.03 posZ: -3.21 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163/Custom_Tile Sister Mary 41af3c.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163/Custom_Tile Sister Mary 41af3c.yaml index 4508b642f..72d09bf71 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163/Custom_Tile Sister Mary 41af3c.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163/Custom_Tile Sister Mary 41af3c.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708274860/6D669E6A0635375970BFFA53B8E4827C1217CD86/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708267155/357D4F44C80BF3EDA4DE2571580CD51AD0409DAD/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708274917/53943BB118CED98CCEFFF4E775A364D6153D8BAD/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708267218/AE7FE2333D8324CE16E72FEA3C75834F077C9E81/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.960002065 posZ: -2.78234076 rotX: -0.000101334554 - rotY: 180 + rotY: 180.0 rotZ: -4.245368e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 19.5 posY: 1.97 posZ: 15.45 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163/Custom_Tile Trish Scarborough 54285c.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163/Custom_Tile Trish Scarborough 54285c.yaml index d2a458dad..7ff08bb41 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163/Custom_Tile Trish Scarborough 54285c.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Innsmouth Conspiracy e65163/Custom_Tile Trish Scarborough 54285c.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708275800/C622A40AC5C14098BFB7B0ABE377E6A8A978A76F/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708268082/2B7A49FAE3A48E06D00848FC1E13228836AD72D9/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708275836/000C6C99DB78208FD56EFE36A6F5E8895BFC67F0/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708268124/F4AFECA42E7336BC62B6D92FBDE56CA5B0C8D099/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000015 rotZ: 4.40210943e-06 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -4.23 posY: 3.03 posZ: -3.24 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Novellas Only 7ef8b0.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Novellas Only 7ef8b0.yaml index 70169d2b2..0c719088c 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Novellas Only 7ef8b0.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Novellas Only 7ef8b0.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 0 + b: 0.0 g: 0.36652 r: 0.70588 ContainedObjects: @@ -37,11 +37,11 @@ Transform: posX: 14.23 posY: 3.28 posZ: -2.71 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Novellas Only 7ef8b0/Custom_Tile Gloria Goldberg 41af3c.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Novellas Only 7ef8b0/Custom_Tile Gloria Goldberg 41af3c.yaml index de5d84292..ea59e3672 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Novellas Only 7ef8b0/Custom_Tile Gloria Goldberg 41af3c.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Novellas Only 7ef8b0/Custom_Tile Gloria Goldberg 41af3c.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708456674/D0BD072E388A816E723E14099DB0C0F0F29D1B4A/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708453946/632737736F711F40CB028160C41BEA9ABB0E5452/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708456715/2E1B1D504A7EA17F427E5277185836A03C6F4979/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708454002/B6EE6E9D045F421A99CD5935D3B0DB8359889E89/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.960001349 posZ: -2.41127372 rotX: -2.58430046e-05 - rotY: 180 + rotY: 180.0 rotZ: 1.10427845e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -8.78 posY: 3.03 posZ: -1.86 - rotX: 0 - rotY: 180 - rotZ: 359 + rotX: 0.0 + rotY: 180.0 + rotZ: 359.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Novellas Only 7ef8b0/Custom_Tile Norman Withers 1d37ae.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Novellas Only 7ef8b0/Custom_Tile Norman Withers 1d37ae.yaml index aa1b3e7c3..13f34f548 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Novellas Only 7ef8b0/Custom_Tile Norman Withers 1d37ae.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Novellas Only 7ef8b0/Custom_Tile Norman Withers 1d37ae.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708457497/56FD4FA183C86788EF3F0D7109C75D61A711BD29/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708454043/58DCCF75F91563D964F0DE40E0466E7C1E397304/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708457543/F21AA4447E954D0BF945B0C65AEAC3147B94956C/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708454082/88D4671EDA79C9A7580390D1CEABD439B3DFE7A8/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000015 rotZ: -1.32418131e-06 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -4.75 posY: 3.03 posZ: -2.2 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc.yaml index 49abaacad..ce27ad3a4 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 0 + b: 0.0 g: 0.89346 r: 0.94251 ContainedObjects: @@ -41,11 +41,11 @@ Transform: posX: 13.89 posY: 2.28 posZ: 1.4 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile Akachi Onyele f88bf1.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile Akachi Onyele f88bf1.yaml index 0a3d2e377..d65a1bf80 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile Akachi Onyele f88bf1.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile Akachi Onyele f88bf1.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707592723/70375E6B3B8398F8882538F8F5681685B0F77222/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707578462/CCF763DA8A203AD1F5BE8ABB07AEAEA4C1B3ABD8/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707592774/0A9B3E42B422F90108EFABC21379DB6E26051F17/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707578505/A04B17BD536BC2DC33F5F070E5D58694A9527032/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000015 rotZ: -2.34869785e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -5.79 posY: 3.03 posZ: -5.85 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile Lola Hayes (Neutral) cbf983.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile Lola Hayes (Neutral) cbf983.yaml index e7817ca7e..eafe4b503 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile Lola Hayes (Neutral) cbf983.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile Lola Hayes (Neutral) cbf983.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707599222/202D33AD1FFA1D282B483A6EDC7CC03D85595E38/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707579964/900F66C54FA2AB64A74E93569BB414CA3C4BC281/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707599222/202D33AD1FFA1D282B483A6EDC7CC03D85595E38/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707580357/8291134B86F73EE0134CA1C7BB672B9B3F04ADC6/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,33 +79,33 @@ States: posY: 0.9600007 posZ: -3.740093 rotX: -1.53140772e-05 - rotY: 180 + rotY: 180.0 rotZ: -9.69686662e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' '3': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707599222/202D33AD1FFA1D282B483A6EDC7CC03D85595E38/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707580485/4B830419B7F3AEB58666165001877E1A415B47C9/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -133,30 +133,30 @@ States: rotY: 180.000015 rotZ: -3.19443279e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' '4': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707599222/202D33AD1FFA1D282B483A6EDC7CC03D85595E38/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707580435/C82EAFF3B0E5C77E27118419AD91257EFF8EF922/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -184,30 +184,30 @@ States: rotY: 180.000031 rotZ: -9.431026e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' '5': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707599222/202D33AD1FFA1D282B483A6EDC7CC03D85595E38/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707580397/65C490DDEF18EDEAD3EDD3AFE943C78B506B0044/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -235,30 +235,30 @@ States: rotY: 180.000061 rotZ: -0.000100223086 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' '6': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707599222/202D33AD1FFA1D282B483A6EDC7CC03D85595E38/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707580532/FCF2E57178A974ADCAF999CC50134D280CD16AE0/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -286,7 +286,7 @@ States: rotY: 180.000046 rotZ: -2.76226965e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -296,11 +296,11 @@ Transform: posX: -2.98 posY: 3.03 posZ: -5.82 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile Mark Harrigan 0d621f.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile Mark Harrigan 0d621f.yaml index 1350691e7..fe8def1e0 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile Mark Harrigan 0d621f.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile Mark Harrigan 0d621f.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707582720/274DE982E6EF7CC6CE291A5501F0529FAF89D8FD/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707575606/D310D938F2F80BE2AA945D11D5A00DE859E0B7D2/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707582776/E9038E182C6A99AFB84404CAD53D74B5EB214B47/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707575664/8F44118C6EB1153BA870842D850CF23029766D92/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.960001945 posZ: -3.94195914 rotX: -2.43047252e-05 - rotY: 180 + rotY: 180.0 rotZ: 1.12649741e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -9.58 posY: 3.03 posZ: -6.03 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile Minh Thi Phan 96d784.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile Minh Thi Phan 96d784.yaml index 24a433884..11795abdd 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile Minh Thi Phan 96d784.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile Minh Thi Phan 96d784.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707583229/302295141EC60FA90CB2CA97A4DB56EDDB7B9CEA/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707575701/89C1B8B59FCD52612A43D9817898F3472C190416/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707583273/7EB0882BCC380F605F3A35394A5468FB16AA1822/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707575755/A90C4EA9E4ACCAAEA025F88F4367700F1605BF10/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.9600035 posZ: -6.75175858 rotX: -1.96382116e-05 - rotY: 180 + rotY: 180.0 rotZ: -3.02018616e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -8.33 posY: 3.03 posZ: -5.97 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile Sefina Rousseau 7b1d63.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile Sefina Rousseau 7b1d63.yaml index a60810df4..392af1508 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile Sefina Rousseau 7b1d63.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile Sefina Rousseau 7b1d63.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707593340/B0EED020029C8BE786CC86AC0950DE92EB8A0DE1/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707579295/FB9F7FD8DC7DC451E702FB89303BF5869C1D6219/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707593391/4DF8A84A64A495829361DB6CE123BD576D52F290/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707579352/48339D32236F9D45D41870ECB9FEDD39649491BF/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000015 rotZ: -3.45095068e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -7.06 posY: 3.03 posZ: -5.9 - rotX: 359 - rotY: 180 - rotZ: 2 + rotX: 359.0 + rotY: 180.0 + rotZ: 2.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile William Yorick 0c7474.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile William Yorick 0c7474.yaml index 8bd5d6047..bced73f76 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile William Yorick 0c7474.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Path to Carcosa b491bc/Custom_Tile William Yorick 0c7474.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707593832/B8C4E2D75CEFB6C2CC167855163F2A6904E751FE/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707579404/BF94E6FC0D4EC9C4916F23C8A1923A0CD558398A/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230707593898/33285F298EF3C32C8DE080A330129CFFC3B34BFC/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230707579454/B5C11E1718148750AA9BD6EBEFA3B61A28940D6A/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.9600022 posZ: -7.654583 rotX: -2.45705087e-05 - rotY: 180 + rotY: 180.0 rotZ: 1.108417e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -4.4 posY: 3.03 posZ: -5.89 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53.yaml index fcf6fa3a1..f9be4714f 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 0 + b: 0.0 g: 0.36652 r: 0.70588 ContainedObjects: @@ -40,11 +40,11 @@ Transform: posX: 8.64 posY: 1.79 posZ: 2.4 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53/Custom_Tile Harvey Walters 98607a.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53/Custom_Tile Harvey Walters 98607a.yaml index 50334911a..d2f7dbc36 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53/Custom_Tile Harvey Walters 98607a.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53/Custom_Tile Harvey Walters 98607a.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708352413/D2D829214A3D78A3CFE97319A3D3C2B1CAD66AED/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708339924/8530773A311DEA65FB59380D60635DC1510E1D3F/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708352462/AB9320A7EFEAABB89C81402FE25E2B86D56518D1/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708339987/528F0AB144F2CFA1F81E13B0BA38590D0B2D87B3/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.960002542 posZ: -2.53136683 rotX: -1.77730763e-05 - rotY: 180 + rotY: 180.0 rotZ: -3.75366676e-06 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -6.49 posY: 3.03 posZ: -3.21 - rotX: 1 - rotY: 180 - rotZ: 358 + rotX: 1.0 + rotY: 180.0 + rotZ: 358.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53/Custom_Tile Jacqueline Fine 8007d3.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53/Custom_Tile Jacqueline Fine 8007d3.yaml index 45f88a2e1..9213473df 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53/Custom_Tile Jacqueline Fine 8007d3.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53/Custom_Tile Jacqueline Fine 8007d3.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708354798/23612793AE012CDFD906D19FAC167E81F3ED78F7/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708340666/402C6AA9EACD3D74A286A7BB3F59FADFED47D95E/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708354840/A8B4F12E6DD0A1BC641627FD3170671F34551F10/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708340716/31853BB4E6FB5C7C6EB93B48698DEB3DB9198DFD/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -79,10 +79,10 @@ States: posY: 0.9600022 posZ: -2.61121845 rotX: -1.754304e-05 - rotY: 180 + rotY: 180.0 rotZ: -1.87718229e-06 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -3.89 posY: 3.03 posZ: -3.19 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53/Custom_Tile Nathaniel Cho 41af3c.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53/Custom_Tile Nathaniel Cho 41af3c.yaml index 44ce6f07e..a39492246 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53/Custom_Tile Nathaniel Cho 41af3c.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53/Custom_Tile Nathaniel Cho 41af3c.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708344319/1CBFAE08EF3FDD939AEEC1195F53B6E57F05D098/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708339555/596AB8F4AC36C120431CE65AE962919660CF7F2D/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708344373/47E1455D596285DA9AC591B8CBBA8A6BBC3A399D/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708339610/369551E19D2D282ACDEFE9E828B5693736415C60/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -80,9 +80,9 @@ States: posZ: -2.944681 rotX: -1.985872e-05 rotY: 180.000015 - rotZ: 180 + rotZ: 180.0 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -7.91 posY: 3.03 posZ: -3.23 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53/Custom_Tile Stella Clark 68c7c8.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53/Custom_Tile Stella Clark 68c7c8.yaml index afe3d2767..93704fd63 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53/Custom_Tile Stella Clark 68c7c8.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53/Custom_Tile Stella Clark 68c7c8.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708355417/A1FCE73454122F3B14CBCFC313660D9D032624F6/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708341095/86B5B824E926576A815D31D26AE3D0A855D78A2E/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708355469/E91F08E1796B1E0E4F21E2E1B7EEF68CB35D433B/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708341146/6372AE92829917C3270E03943CAB54DC19B2F7B0/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000015 rotZ: -2.38037519e-05 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -2.56 posY: 3.03 posZ: -3.22 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53/Custom_Tile Winifred Habbamock 801e8a.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53/Custom_Tile Winifred Habbamock 801e8a.yaml index fe0cfba72..ac1929bc6 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53/Custom_Tile Winifred Habbamock 801e8a.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Bag The Starter Decks 151d53/Custom_Tile Winifred Habbamock 801e8a.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708353668/6FFADF9E7F21046DAEDDCC7C7B049831353C8329/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708340350/3880B5C3B9AEA9B05CA358A0DBAAB87D57E33BF7/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1763698230708353726/A9E04180C3AE495EA6CB2FA331CEBA034B83EB30/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1763698230708340389/3602C2AD31DB9A9120811C379C432C1924EB9471/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000015 rotZ: -9.511086e-06 scaleX: 0.5657107 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.5657107 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: -5.2 posY: 3.03 posZ: -3.2 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.57 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.57 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Custom_Tile Summoned Servitor 862983.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Custom_Tile Summoned Servitor 862983.yaml index d273f7cf3..77ac353ef 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Custom_Tile Summoned Servitor 862983.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Bag Tokens 8b8b41/Custom_Tile Summoned Servitor 862983.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632950023/32B84D3806148A6BB12304CDBDC1B4B0AEF3BE65/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632961194/758470726C5430CA0E5D55E3B8B96162DD54F145/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,24 +37,24 @@ Snap: false States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: true Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1840305815632950061/3DD39FE00BCF2D0F995862FF7BEE8F9B07552894/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1840305815632961243/4484267F67622813B829B1D24E9C35A200828313/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -82,7 +82,7 @@ States: rotY: 180.000031 rotZ: -1.710464e-05 scaleX: 0.801324666 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.801324666 Value: 0 XmlUI: '' @@ -92,11 +92,11 @@ Transform: posX: 16.2 posY: 1.97 posZ: -7.49 - rotX: 0 - rotY: 180 - rotZ: 0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.8 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.8 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Notecard [b]Arkham Fantasy - Pixel Art Mini-Cards[b] 4564ef.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Notecard [b]Arkham Fantasy - Pixel Art Mini-Cards[b] 4564ef.yaml index 2488714ab..022c17cd3 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Notecard [b]Arkham Fantasy - Pixel Art Mini-Cards[b] 4564ef.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Notecard [b]Arkham Fantasy - Pixel Art Mini-Cards[b] 4564ef.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 Description: "Designed by William \"Lemmingrad\" Jung\n\nTo properly illuminate stands.\n[b]Options[/b]: [b]Lighting[/b]\n1) Set [b]Ambient[/b] to [b]Gradient[/b]. \n2) Turn down [b]Reflection Intensity[/b] to your preference. \n3) Adjust [b]Ambient Intensity[/b] to your preference.\n" @@ -32,11 +32,11 @@ Transform: posX: 17.15 posY: 3.65 posZ: 2.31 - rotX: 0 - rotY: 0 - rotZ: 2 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 2.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Notecard [b]Arkham Fantasy - Pixel Art Mini-Cards[b] 8dc454.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Notecard [b]Arkham Fantasy - Pixel Art Mini-Cards[b] 8dc454.yaml index 3997c8b3a..58b6d574d 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Notecard [b]Arkham Fantasy - Pixel Art Mini-Cards[b] 8dc454.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - Pixel Art Mini-Cards e17c9e/Notecard [b]Arkham Fantasy - Pixel Art Mini-Cards[b] 8dc454.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 Description: 'Updated - 2022-09-13 - Added Scarlet Keys Investigator @@ -38,11 +38,11 @@ Transform: posX: 21.32 posY: 2.04 posZ: 14.05 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Descriptive Phase Tracker b171c8.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Descriptive Phase Tracker b171c8.yaml index 8197e02d9..7be0c55bc 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Descriptive Phase Tracker b171c8.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Descriptive Phase Tracker b171c8.yaml @@ -1,10 +1,10 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.0083 r: 0.10624 CustomImage: @@ -13,10 +13,10 @@ CustomImage: Stretch: true Thickness: 0.2 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/933819604050849524/797528309EFBAC7485283048AAB9DA68B8A31891/ ImageURL: http://cloud-3.steamusercontent.com/ugc/933819604050849085/9E22AFD7B0157140FC177DBCCBCB1D61D6A0329F/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -37,9 +37,9 @@ Snap: true States: '2': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.0009864086 @@ -51,10 +51,10 @@ States: Stretch: true Thickness: 0.2 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/933819604050886219/5987AB68E0D2609CC3831F1311E9070D7189FBA8/ ImageURL: http://cloud-3.steamusercontent.com/ugc/933819604050885611/845B5AA915F30492B5F34864698B9C3627FA5763/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -93,19 +93,19 @@ States: rotY: 269.9888 rotZ: 0.016764963 scaleX: 1.5 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.5 Value: 0 XmlUI: '' '3': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 - g: 0 + b: 0.0 + g: 0.0 r: 0.235189646 CustomImage: CustomTile: @@ -113,10 +113,10 @@ States: Stretch: true Thickness: 0.2 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/982233321870235526/32D11CE67CBFB6E1197E540F9CA08F871A500C85/ ImageURL: http://cloud-3.steamusercontent.com/ugc/982233321870235122/492996D07ABF6DDA4B605A3013C4892839DCF1F3/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -153,18 +153,18 @@ States: rotY: 269.9888 rotZ: 0.016764963 scaleX: 1.5 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.5 Value: 0 XmlUI: '' '4': AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 0 + b: 0.0 g: 0.3496283 r: 0.5313587 CustomImage: @@ -173,10 +173,10 @@ States: Stretch: true Thickness: 0.2 Type: 2 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/982233321870237827/81374325F650673C37C89E4E2A1DC25F1C97FED8/ ImageURL: http://cloud-3.steamusercontent.com/ugc/982233321870237261/C287CAED2423970F33E72D6C7415CBEC6794C533/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -211,7 +211,7 @@ States: rotY: 269.9888 rotZ: 0.016764963 scaleX: 1.5 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.5 Value: 0 XmlUI: '' @@ -221,11 +221,11 @@ Transform: posX: 43.12 posY: 2.34 posZ: -36.62 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.5 - scaleY: 1 + scaleY: 1.0 scaleZ: 1.5 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Double-Sided Resource bc81cb.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Double-Sided Resource bc81cb.yaml index 826be7a16..eb7fa887b 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Double-Sided Resource bc81cb.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Double-Sided Resource bc81cb.yaml @@ -1,22 +1,22 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: false Thickness: 0.1 Type: 1 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1634201755654309873/9A23829955A98CBAC1E6BA2D3E14D4FFF0A86463/ ImageURL: http://cloud-3.steamusercontent.com/ugc/1634201755654309427/59F903E0AF5599D782B756AB92B5D9203002DF61/ - WidthScale: 0 + WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' @@ -40,11 +40,11 @@ Transform: posX: 29.9 posY: 4.09 posZ: -21.01 - rotX: 0 - rotY: 0 - rotZ: 359 + rotX: 0.0 + rotY: 0.0 + rotZ: 359.0 scaleX: 0.46 - scaleY: 1 + scaleY: 1.0 scaleZ: 0.46 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Generic Difficulty Selector 8112ff.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Generic Difficulty Selector 8112ff.ttslua new file mode 100644 index 000000000..b7009949d --- /dev/null +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Generic Difficulty Selector 8112ff.ttslua @@ -0,0 +1,38 @@ +-- edit the "tokenData" table to change the preset difficulties +-- list of valid ids: 'p1', '0', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'm8', +-- 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue', 'bless', 'curse', 'frost' + +local tokenData = { + Easy = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'red', 'blue' }, + Standard = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'red', 'blue' }, + Hard = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'red', 'blue' }, + Expert = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'red', 'blue' } +} + +-- create buttons on startup +function onLoad() + local z_offset = -0.15 + for difficulty, _ in pairs(tokenData) do + local clickFunction = difficulty:lower() .. "Click" + self.setVar(clickFunction, function() clickFun(difficulty) end) + + self.createButton({ + label = difficulty, + function_owner = self, + click_function = clickFunction, + position = { 0, 0.1, z_offset }, + rotation = { 0, 0, 0 }, + scale = { 0.47, 1, 0.47 }, + height = 200, + width = 1150, + font_size = 100, + color = { 0.87, 0.8, 0.70 }, + font_color = { 0, 0, 0 } + }) + z_offset = z_offset + 0.20 + end +end + +function clickFun(difficulty) + Global.call("setChaosBagState", tokenData[difficulty]) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Custom_Tile Generic Difficulty Selector 8112ff.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Generic Difficulty Selector 8112ff.yaml similarity index 79% rename from unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Custom_Tile Generic Difficulty Selector 8112ff.yaml rename to unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Generic Difficulty Selector 8112ff.yaml index 4d68e5823..f841674ec 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Custom_Tile Generic Difficulty Selector 8112ff.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Generic Difficulty Selector 8112ff.yaml @@ -1,23 +1,23 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomImage: CustomTile: Stackable: false Stretch: true Thickness: 0.1 Type: 3 - ImageScalar: 1 + ImageScalar: 1.0 ImageSecondaryURL: https://i.imgur.com/EcbhVuh.jpg/ ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ - WidthScale: 0 -Description: click to set chaos token difficulty + WidthScale: 0.0 +Description: Define difficulties in this object's script. DragSelectable: true GMNotes: '' GUID: 8112ff @@ -40,11 +40,11 @@ Transform: posX: 12.17 posY: 4.22 posZ: 29.91 - rotX: 0 - rotY: 270 - rotZ: 42 + rotX: 0.0 + rotY: 270.0 + rotZ: 42.0 scaleX: 2.2 - scaleY: 1 + scaleY: 1.0 scaleZ: 2.2 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Chaos Bag Manager 023240.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Chaos Bag Manager 023240.ttslua deleted file mode 100644 index 7170bc5c4..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Chaos Bag Manager 023240.ttslua +++ /dev/null @@ -1,232 +0,0 @@ --- Bundled by luabundle {"version":"1.6.0"} -local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) - local loadingPlaceholder = {[{}] = true} - - local register - local modules = {} - - local require - local loaded = {} - - register = function(name, body) - if not modules[name] then - modules[name] = body - end - end - - require = function(name) - local loadedModule = loaded[name] - - if loadedModule then - if loadedModule == loadingPlaceholder then - return nil - end - else - if not modules[name] then - if not superRequire then - local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) - error('Tried to require ' .. identifier .. ', but no such module has been registered') - else - return superRequire(name) - end - end - - loaded[name] = loadingPlaceholder - loadedModule = modules[name](require, loaded, register, modules) - loaded[name] = loadedModule - end - - return loadedModule - end - - return require, loaded, register, modules -end)(nil) -__bundle_register("accessories/ChaosBagManager", function(require, _LOADED, __bundle_register, __bundle_modules) -local TOKEN_URL = { - ElderSign = "https://i.imgur.com/nEmqjmj.png", - plusOne = "https://i.imgur.com/uIx8jbY.png", - Zero = "https://i.imgur.com/btEtVfd.png", - minusOne = "https://i.imgur.com/w3XbrCC.png", - minusTwo = "https://i.imgur.com/bfTg2hb.png", - minusThree = "https://i.imgur.com/yfs8gHq.png", - minusFour = "https://i.imgur.com/qrgGQRD.png", - minusFive = "https://i.imgur.com/3Ym1IeG.png", - minusSix = "https://i.imgur.com/c9qdSzS.png", - minusSeven = "https://i.imgur.com/4WRD42n.png", - minusEight = "https://i.imgur.com/9t3rPTQ.png", - Skull = "https://i.imgur.com/stbBxtx.png", - Cultist = "https://i.imgur.com/VzhJJaH.png", - Tablet = "https://i.imgur.com/1plY463.png", - ElderThing = "https://i.imgur.com/ttnspKt.png", - AutoFail = "https://i.imgur.com/lns4fhz.png", - Frost = "http://cloud-3.steamusercontent.com/ugc/1858293462583104677/195F93C063A8881B805CE2FD4767A9718B27B6AE/" -} - -local TOKEN_NAMES = { - -- first row - "plusOne", "Zero", "minusOne", "minusTwo", "minusThree", "minusFour", - -- second row - "minusFive", "minusSix", "minusSeven", "minusEight", "Frost", - -- third row - "ElderSign", "Skull", "Cultist", "Tablet", "ElderThing", "AutoFail" -} - -local BUTTON_TOOLTIP = { - -- first row - "+1", "0", "-1", "-2", "-3", "-4", - -- second row - "-5", "-6", "-7", "-8", "Frost", - -- third row - "Elder Sign", "Skull", "Cultist", "Tablet", "Elder Thing", "Auto-fail" -} - -local BUTTON_POSITION = { - -- first row - -1.90, -1.14, -0.38, 0.38, 1.14, 1.90, - -- second row - -1.90, -1.14, -0.38, 0.38, 1.90, - -- third row - -1.90, -1.14, -0.38, 0.38, 1.14, 1.90 -} - --- common button parameters -local buttonParameters = {} -buttonParameters.function_owner = self -buttonParameters.color = { 0, 0, 0, 0 } -buttonParameters.width = 300 -buttonParameters.height = 300 - -local UPDATING = false -local tokenArranger - -local name -local tokens = {} - -function onLoad() - -- create buttons for tokens - for i = 1, #BUTTON_POSITION do - local funcName = "buttonClick" .. i - self.setVar(funcName, function(_, _, isRightClick) buttonClick(i, isRightClick) end) - - buttonParameters.click_function = funcName - buttonParameters.tooltip = BUTTON_TOOLTIP[i] - buttonParameters.position = { x = BUTTON_POSITION[i], y = 0, z = 0 } - - if i < 7 then - buttonParameters.position.z = -0.778 - elseif i > 11 then - buttonParameters.position.z = 0.755 - end - - self.createButton(buttonParameters) - end - - self.addContextMenuItem("More Information", function() - printToAll("------------------------------", "White") - printToAll("Chaos Bag Manager by Chr1Z", "Orange") - end) - - tokenArranger = getObjectFromGUID("022907") -end - --- get chaos bag from scripting zone and description -function getChaosBag() - local chaosbag = nil - local chaosbag_zone = getObjectFromGUID("83ef06") - - -- error handling: scripting zone not found - if chaosbag_zone == nil then - printToAll("Zone for chaos bag detection couldn't be found.", "Red") - return nil - end - - for _, v in ipairs(chaosbag_zone.getObjects()) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break - end - end - - -- error handling: chaos bag not found - if chaosbag == nil then - printToAll("Chaos bag couldn't be found.", "Red") - end - return chaosbag -end - --- click function for buttons -function buttonClick(index, isRightClick) - chaosbag = getChaosBag() - - -- error handling: chaos bag not found - if chaosbag == nil then return end - - name = BUTTON_TOOLTIP[index] - tokens = {} - for _, v in ipairs(chaosbag.getObjects()) do - if v.name == name then table.insert(tokens, v.guid) end - end - - token = TOKEN_NAMES[index] - if isRightClick then - -- error handling: no matching token found - if #tokens == 0 then - printToAll("No " .. name .. " tokens in the chaos bag.", "Yellow") - return - end - - -- remove token - chaosbag.takeObject({ - guid = tokens[1], - position = self.getPosition(), - smooth = false, - callback_function = removeCallback - }) - else - -- spawn token (only 8 frost tokens allowed) - if token == "Frost" and #tokens == 8 then - printToAll("The maximum of 8 Frost tokens is already in the bag.", "Yellow") - return - end - - local obj = spawnObject({ - type = 'Custom_Tile', - position = chaosbag.getPosition() + Vector(0, 1, 0), - rotation = { x = 0, y = 260, z = 0 }, - callback_function = spawnCallback - }) - obj.setCustomObject({ - type = 2, - image = TOKEN_URL[token], - thickness = 0.1 - }) - end - - updateTokenArranger() -end - -function removeCallback(obj) - printToAll("Removing " .. name .. " token (in bag: " .. #tokens - 1 .. ")", "White") - obj.destruct() -end - -function spawnCallback(obj) - obj.scale { 0.81, 1, 0.81 } - obj.setName(name) - printToAll("Adding " .. name .. " token (in bag: " .. #tokens + 1 .. ")", "White") -end - -function updateTokenArranger() - if tokenArranger and not UPDATING then - UPDATING = true - Wait.time(function() - UPDATING = false - tokenArranger.call("layout") - end, 1.5) - end -end -end) -__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) -require("accessories/ChaosBagManager") -end) -return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Token Arranger 022907.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Token Arranger 022907.ttslua deleted file mode 100644 index f05cd1a7d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Token Arranger 022907.ttslua +++ /dev/null @@ -1,296 +0,0 @@ --- Bundled by luabundle {"version":"1.6.0"} -local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) - local loadingPlaceholder = {[{}] = true} - - local register - local modules = {} - - local require - local loaded = {} - - register = function(name, body) - if not modules[name] then - modules[name] = body - end - end - - require = function(name) - local loadedModule = loaded[name] - - if loadedModule then - if loadedModule == loadingPlaceholder then - return nil - end - else - if not modules[name] then - if not superRequire then - local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) - error('Tried to require ' .. identifier .. ', but no such module has been registered') - else - return superRequire(name) - end - end - - loaded[name] = loadingPlaceholder - loadedModule = modules[name](require, loaded, register, modules) - loaded[name] = loadedModule - end - - return loadedModule - end - - return require, loaded, register, modules -end)(nil) -__bundle_register("accessories/TokenArranger", function(require, _LOADED, __bundle_register, __bundle_modules) --- names of tokens in order -local TOKEN_NAMES = { - "Elder Sign", - "Skull", - "Cultist", - "Tablet", - "Elder Thing", - "Auto-fail", - "Bless", - "Curse", - "Frost", - "" -} - --- token modifiers for sorting (and order for same modifier) --- order starts at 2 because there is a "+1" token -local TOKEN_PRECEDENCE = { - ["Elder Sign"] = { 100, 2 }, - ["Skull"] = { -1, 3 }, - ["Cultist"] = { -2, 4 }, - ["Tablet"] = { -3, 5 }, - ["Elder Thing"] = { -4, 6 }, - ["Auto-fail"] = { -100, 7 }, - ["Bless"] = { 101, 8 }, - ["Curse"] = { -101, 9 }, - ["Frost"] = { -99, 10 }, - [""] = { 0, 11 } -} - --- common parameters -local buttonParameters = {} -buttonParameters.function_owner = self -buttonParameters.label = "" -buttonParameters.tooltip = "Add / Remove" -buttonParameters.color = { 0, 0, 0, 0 } -buttonParameters.width = 325 -buttonParameters.height = 325 - -local inputParameters = {} -inputParameters.function_owner = self -inputParameters.font_size = 100 -inputParameters.width = 250 -inputParameters.height = inputParameters.font_size + 23 -inputParameters.alignment = 3 -inputParameters.validation = 2 -inputParameters.tab = 2 - -updating = false - -function onSave() return JSON.encode(TOKEN_PRECEDENCE) end - -function onLoad(save_state) - if save_state ~= nil then - TOKEN_PRECEDENCE = JSON.decode(save_state) - end - - -- create UI - local offset = 0.725 - local pos = { x = { -1.067, 0.377 }, z = -2.175 } - - -- button and inputs index 1-10 - for i = 1, 10 do - if i < 6 then - buttonParameters.position = { pos.x[1], 0, pos.z + i * offset } - inputParameters.position = { pos.x[1] + offset, 0.1, pos.z + i * offset } - else - buttonParameters.position = { pos.x[2], 0, pos.z + (i - 5) * offset } - inputParameters.position = { pos.x[2] + offset, 0.1, pos.z + (i - 5) * offset } - end - - buttonParameters.click_function = attachIndex("tokenClick", i) - inputParameters.input_function = attachIndex2("tokenInput", i) - inputParameters.value = TOKEN_PRECEDENCE[TOKEN_NAMES[i]][1] - - self.createButton(buttonParameters) - self.createInput(inputParameters) - end - - -- index 11: "Update / Hide" button - buttonParameters.label = "Update / Hide" - buttonParameters.click_function = "layout" - buttonParameters.tooltip = "Left-Click: Update!\nRight-Click: Hide Tokens!" - buttonParameters.position = { 0.725, 0.1, 2.025 } - buttonParameters.color = { 1, 1, 1 } - buttonParameters.width = 675 - buttonParameters.height = 175 - self.createButton(buttonParameters) - - self.addContextMenuItem("More Information", function() - printToAll("------------------------------", "White") - printToAll("Token Arranger by Chr1Z", "Orange") - printToAll("original concept by Whimsical", "White") - end) - - -- send object reference to bless/curse manager - Wait.time(function() getObjectFromGUID("5933fb").setVar("tokenArranger", self) end, 1) -end - -function onDestroy() - deleteCopiedTokens() - -- remove object reference from bless/curse manager - getObjectFromGUID("5933fb").setVar("tokenArranger", nil) -end - -function onPickUp() - deleteCopiedTokens() -end - --- helper functions to carry index -function attachIndex(click_function, index) - local fn_name = click_function .. index - _G[fn_name] = function(obj, player_color, isRightClick) - _G[click_function](obj, player_color, isRightClick, index) - end - return fn_name -end - -function attachIndex2(input_function, index) - local fn_name = input_function .. index - _G[fn_name] = function(obj, player_color, input, selected) - _G[input_function](obj, player_color, input, selected, index) - end - return fn_name -end - --- click_function for buttons on chaos tokens -function tokenClick(_, _, isRightClick, index) - if not updating then - updating = true - local change = tonumber(isRightClick and "-1" or "1") - TOKEN_PRECEDENCE[TOKEN_NAMES[index]][1] = TOKEN_PRECEDENCE[TOKEN_NAMES[index]][1] + change - self.editInput({ index = index - 1, value = TOKEN_PRECEDENCE[TOKEN_NAMES[index]][1] }) - layout() - end -end - --- input_function for input_boxes -function tokenInput(_, _, input, selected, index) - if selected == false and not updating then - updating = true - local num = tonumber(input) - if num ~= nil then - TOKEN_PRECEDENCE[TOKEN_NAMES[index]][1] = num - end - layout() - end -end - --- order function for data sorting -function token_value_comparator(left, right) - if left.value > right.value then return true - elseif right.value > left.value then return false - elseif left.order < right.order then return true - elseif right.order < left.order then return false - else return left.token.getGUID() > right.token.getGUID() - end -end - --- get chaos bag from scripting zone and description -function getChaosBag() - local chaosbag = nil - local chaosbag_zone = getObjectFromGUID("83ef06") - - -- error handling: scripting zone not found - if chaosbag_zone == nil then - printToAll("Zone for chaos bag detection couldn't be found.", "Red") - return nil - end - - for _, v in ipairs(chaosbag_zone.getObjects()) do - if v.getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(v.getGUID()) - break - end - end - - -- error handling: chaos bag not found - if chaosbag == nil then - printToAll("Chaos bag couldn't be found.", "Red") - end - return chaosbag -end - --- deletes previously placed tokens -function deleteCopiedTokens() - for _, token in ipairs(getObjectsWithTag("to_be_deleted")) do token.destruct() end -end - --- main function (delete old tokens, clone chaos bag content, sort it and position it) -function layout(_, _, isRightClick) - deleteCopiedTokens() - - -- stop here if right-clicked - if isRightClick then return end - - local chaosBag = getChaosBag() - local data = {} - - -- clone tokens from chaos bag (default position above trash can) - for i, obj in ipairs(chaosBag.getData().ContainedObjects) do - obj["Tags"] = { "to_be_deleted" } - local spawnedObj = spawnObjectData({ - data = obj, - position = { 0.49, 3, 0 } - }) - - local value = tonumber(obj["Nickname"]) - local precedence = TOKEN_PRECEDENCE[obj["Nickname"]] - - data[i] = { - token = spawnedObj, - value = value or precedence[1] - } - - if precedence ~= nil then - data[i].order = precedence[2] - else - data[i].order = value - end - end - - -- sort table by value (symbols last if same value) - table.sort(data, token_value_comparator) - - -- error handling for removal of token arranger - if self == nil then - for _, token in ipairs(getObjectsWithTag("to_be_deleted")) do token.destruct() end - return - end - - -- laying out the tokens - local pos = self.getPosition() + Vector(3.55, -0.05, -3.95) - local location = { x = pos.x, y = pos.y, z = pos.z } - local current_value = data[1].value - - for _, item in ipairs(data) do - if item.value ~= current_value then - location.x = location.x - 1.75 - location.z = pos.z - current_value = item.value - end - item.token.setPosition(location) - item.token.setRotation(self.getRotation()) - location.z = location.z - 1.75 - end - updating = false -end -end) -__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) -require("accessories/TokenArranger") -end) -return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Infinite_Bag Attachment Helper 7f4976.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Infinite_Bag Attachment Helper 7f4976.yaml deleted file mode 100644 index fff019817..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Infinite_Bag Attachment Helper 7f4976.yaml +++ /dev/null @@ -1,178 +0,0 @@ -AltLookAngle: - x: 0 - y: 0 - z: 0 -Autoraise: true -ColorDiffuse: - b: 1 - g: 0.37256 - r: 0.30589 -ContainedObjects: -- AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - Bag: - Order: 0 - ColorDiffuse: - b: 1 - g: 1 - r: 1 - CustomMesh: - CastShadows: true - ColliderURL: http://cloud-3.steamusercontent.com/ugc/1754695414379239413/0B8E68F3B7311DCF2138FB701F78D1D93FBA4CAB/ - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1750192233783143973/D526236AAE16BDBB98D3F30E27BAFC1D3E21F4AC/ - MaterialIndex: 1 - MeshURL: http://cloud-3.steamusercontent.com/ugc/1754695414379239413/0B8E68F3B7311DCF2138FB701F78D1D93FBA4CAB/ - NormalURL: '' - TypeIndex: 6 - Description: 'Drop cards here to display name, cost and skill icons. - - - See context menu for options.' - DragSelectable: true - GMNotes: '' - GUID: d45664 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: "local OPTION_TEXT = {\n \"Ancestral Knowledge\",\n \"Astronomical - Atlas\",\n \"Crystallizer of Dreams\",\n \"Diana Stanley\",\n \"Gloria Goldberg\",\n - \ \"Sefina Rousseau\",\n \"Wooden Sledge\"\n}\n\nlocal IMAGE_LIST = {\n -- Ancestral - Knowledge\n \"http://cloud-3.steamusercontent.com/ugc/1915746489207287888/2F9F6F211ED0F98E66C9D35D93221E4C7FB6DD3C/\",\n - \ -- Astronomical Atlas\n \"http://cloud-3.steamusercontent.com/ugc/1754695853007989004/9153BC204FC707AE564ECFAC063A11CB8C2B5D1E/\",\n - \ -- Crystallizer of Dreams\n \"http://cloud-3.steamusercontent.com/ugc/1915746489207280958/100F16441939E5E23818651D1EB5C209BF3125B9/\",\n - \ -- Diana Stanley\n \"http://cloud-3.steamusercontent.com/ugc/1754695635919071208/1AB7222850201630826BFFBA8F2BD0065E2D572F/\",\n - \ -- Gloria Goldberg\n \"http://cloud-3.steamusercontent.com/ugc/1754695635919102502/453D4426118C8A6DE2EA281184716E26CA924C84/\",\n - \ -- Sefina Rousseau\n \"http://cloud-3.steamusercontent.com/ugc/1754695635919099826/3C3CBFFAADB2ACA9957C736491F470AE906CC953/\",\n - \ -- Wooden Sledge\n \"http://cloud-3.steamusercontent.com/ugc/1750192233783143973/D526236AAE16BDBB98D3F30E27BAFC1D3E21F4AC/\"\n}\n\n-- - save state and options to restore onLoad\nfunction onSave() return JSON.encode({ - cardsInBag, showCost, showIcons }) end\n\n-- load variables and create context - menu\nfunction onLoad(savedData)\n local loadedData = JSON.decode(savedData)\n - \ cardsInBag = loadedData[1] or {}\n showCost = loadedData[2] or - true\n showIcons = loadedData[3] or true\n\n recreateButtons()\n\n self.addContextMenuItem(\"Select - image\", selectImage)\n self.addContextMenuItem(\"Toggle cost\", function(color)\n - \ showCost = not showCost\n printToColor(\"Show cost of cards: \" .. tostring(showCost), - color, \"White\")\n refresh()\n end)\n\n self.addContextMenuItem(\"Toggle - skill icons\", function(color)\n showIcons = not showIcons\n printToColor(\"Show - skill icons of cards: \" .. tostring(showIcons), color, \"White\")\n refresh()\n - \ end)\n\n self.addContextMenuItem(\"More Information\", function()\n printToAll(\"------------------------------\", - \"White\")\n printToAll(\"Attachment Helper by Chr1Z\", \"Orange\")\n printToAll(\"original - by bankey\", \"White\")\n end)\nend\n\nfunction selectImage(color)\n Player[color].showOptionsDialog(\"Select - image:\", OPTION_TEXT, 1, function(_, option_index)\n local customInfo = self.getCustomObject()\n - \ customInfo.diffuse = IMAGE_LIST[option_index]\n self.setCustomObject(customInfo)\n - \ self.reload()\n end)\nend\n\n-- called for every card that enters\nfunction - onObjectEnterContainer(container, object)\n if container == self then\n if - object.tag ~= \"Card\" then\n broadcastToAll(\"The 'Attachment Helper' is - meant to be used for single cards.\", \"White\")\n else\n findCard(object.getGUID(), - object.getName(), object.getGMNotes())\n end\n -- TODO: implement splitting - of decks that get thrown in here\n recreateButtons()\n end\nend\n\n-- removes - leaving cards from the \"cardInBag\" table\nfunction onObjectLeaveContainer(container, - object)\n if container == self then\n local guid = object.getGUID()\n local - found = false\n for i, card in ipairs(cardsInBag) do\n if card.id == guid - then\n table.remove(cardsInBag, i)\n found = true\n break\n - \ end\n end\n\n if found ~= true then\n local name = object.getName()\n - \ for i, card in ipairs(cardsInBag) do\n if card.name == name then\n - \ table.remove(cardsInBag, i)\n break\n end\n end\n - \ end\n recreateButtons()\n end\nend\n\n-- refreshes displayed buttons based - on contained cards\nfunction refresh()\n cardsInBag = {}\n for _, object in - ipairs(self.getObjects()) do\n findCard(object.guid, object.name, object.gm_notes)\n - \ end\n recreateButtons()\nend\n\n-- gets cost and icons for a card\nfunction - findCard(guid, name, GMNotes)\n local cost = \"\"\n local icons = {}\n local - metadata = {}\n local displayName = name\n\n if displayName == nil or displayName - == \"\" then displayName = \"unnamed\" end\n if showCost or showIcons then metadata - = JSON.decode(GMNotes) end\n\n if showCost then\n if GMNotes ~= \"\" then - cost = metadata.cost end\n if cost == nil or cost == \"\" then cost = \"\u2013\" - end\n displayName = \"[\" .. cost .. \"] \" .. displayName\n end\n\n if showIcons - then\n if GMNotes ~= \"\" then\n icons[1] = metadata.wildIcons\n icons[2] - = metadata.willpowerIcons\n icons[3] = metadata.intellectIcons\n icons[4] - = metadata.combatIcons\n icons[5] = metadata.agilityIcons\n end\n\n local - IconTypes = { \"Wild\", \"Willpower\", \"Intellect\", \"Combat\", \"Agility\" - }\n local found = false\n for i = 1, 5 do\n if icons[i] ~= nil and - icons[i] ~= \"\" then\n if found == false then\n displayName = - displayName .. \"\\n\" .. IconTypes[i] .. \": \" .. icons[i]\n found - = true\n else\n displayName = displayName .. \" \" .. IconTypes[i] - .. \": \" .. icons[i]\n end\n end\n end\n end\n table.insert(cardsInBag, - { name = name, displayName = displayName, id = guid })\nend\n\n-- recreates buttons - with up-to-date labels\nfunction recreateButtons()\n self.clearButtons()\n local - verticalPosition = 1.65\n\n for _, card in ipairs(cardsInBag) do\n local id - = card.id\n local funcName = \"removeCard\" .. id\n self.setVar(funcName, - function() removeCard(id) end)\n self.createButton({\n label = - card.displayName,\n click_function = funcName,\n function_owner = self,\n - \ position = { 0, 0, verticalPosition },\n height = 200,\n - \ width = 1200,\n font_size = string.len(card.displayName) - > 20 and 75 or 100\n })\n verticalPosition = verticalPosition - 0.5\n end\n\n - \ local countLabel = \"Attachment\\nHelper\"\n if #cardsInBag ~= 0 then countLabel - = #cardsInBag end\n\n self.createButton({\n label = countLabel,\n - \ click_function = \"none\",\n function_owner = self,\n position = - { 0, 0, -1.35 },\n height = 0,\n width = 0,\n font_size - \ = 225,\n font_color = { 1, 1, 1 }\n })\nend\n\n-- click-function - for buttons to take a card out of the bag\nfunction removeCard(cardGUID)\n self.takeObject({\n - \ guid = cardGUID,\n rotation = self.getRotation(),\n position = self.getPosition() - + Vector(0, 0.25, 0),\n callback_function = function(obj) obj.resting = true - end\n })\nend" - LuaScriptState: '[[],true,true]' - MaterialIndex: -1 - MeasureMovement: false - MeshIndex: -1 - Name: Custom_Model_Bag - Nickname: Attachment Helper - Number: 0 - Snap: true - Sticky: true - Tags: - - Asset - - scesetup_memory_object - Tooltip: true - Transform: - posX: 19.228 - posY: 3.822 - posZ: -19.636 - rotX: 0 - rotY: 270 - rotZ: 359 - scaleX: 0.8 - scaleY: 1 - scaleZ: 0.8 - Value: 0 - XmlUI: '' -Description: Provides card-sized bags that are useful for cards that are attached - facedown (e.g. Backpack). -DragSelectable: true -GMNotes: '' -GUID: 7f4976 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Infinite_Bag -Nickname: Attachment Helper -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 27.68 - posY: 4.47 - posZ: -31.03 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c.yaml index 407dbb85b..ad94b0150 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c.yaml @@ -1,33 +1,33 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 0.99217 - r: 1 + b: 1.0 + g: 0.9921699 + r: 1.0 ContainedObjects: - !include 'Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c.yaml' -- !include 'Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret - Objectives & Ultimatums b2077d.yaml' - !include 'Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e.yaml' +- !include 'Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret + Objectives & Ultimatums b2077d.yaml' CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1758068588410888435/EDEEC5792F4161A1F125EF7F65AB1C1DC8FDBC27/ MaterialIndex: 3 MeshURL: http://pastebin.com/raw.php?i=uWAmuNZ2 @@ -55,12 +55,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0 + posX: 0.0 posY: 1.87 - posZ: -55 - rotX: 0 - rotY: 270 - rotZ: 0 + posZ: -55.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.76 scaleY: 0.11 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret Objectives & Ultimatums b2077d.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret Objectives & Ultimatums b2077d.yaml index 2844ff53d..a94e72e79 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret Objectives & Ultimatums b2077d.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret Objectives & Ultimatums b2077d.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 0 - g: 0 - r: 0 + b: 0.0 + g: 0.0 + r: 0.0 ContainedObjects: - !include 'Bag Secret Objectives & Ultimatums b2077d/Deck 5f3cba.yaml' - !include 'Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE SECRET OBJ. @@ -38,14 +38,14 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -9 + posX: -9.0 posY: 1.3 - posZ: -55 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + posZ: -55.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret Objectives & Ultimatums b2077d/Deck 1e8a13.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret Objectives & Ultimatums b2077d/Deck 1e8a13.yaml index 679f6d175..c230c0c52 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret Objectives & Ultimatums b2077d/Deck 1e8a13.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret Objectives & Ultimatums b2077d/Deck 1e8a13.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.71324 @@ -9,9 +9,9 @@ ColorDiffuse: r: 0.71324 ContainedObjects: - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33111 ColorDiffuse: @@ -50,18 +50,18 @@ ContainedObjects: posX: 7.158 posY: 1.231 posZ: 2.808 - rotX: 0 - rotY: 180 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 180.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33101 ColorDiffuse: @@ -100,18 +100,18 @@ ContainedObjects: posX: 7.354 posY: 1.152 posZ: 2.884 - rotX: 0 - rotY: 180 - rotZ: 1 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 180.0 + rotZ: 1.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33111 ColorDiffuse: @@ -150,18 +150,18 @@ ContainedObjects: posX: 7.158 posY: 1.231 posZ: 2.808 - rotX: 0 - rotY: 180 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 180.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33111 ColorDiffuse: @@ -200,18 +200,18 @@ ContainedObjects: posX: 7.158 posY: 1.231 posZ: 2.808 - rotX: 0 - rotY: 180 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 180.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33111 ColorDiffuse: @@ -250,18 +250,18 @@ ContainedObjects: posX: 7.158 posY: 1.231 posZ: 2.808 - rotX: 0 - rotY: 180 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 180.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33111 ColorDiffuse: @@ -300,18 +300,18 @@ ContainedObjects: posX: 7.158 posY: 1.231 posZ: 2.808 - rotX: 0 - rotY: 180 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 180.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33111 ColorDiffuse: @@ -350,18 +350,18 @@ ContainedObjects: posX: 7.158 posY: 1.231 posZ: 2.808 - rotX: 0 - rotY: 180 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 180.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33111 ColorDiffuse: @@ -400,18 +400,18 @@ ContainedObjects: posX: 7.158 posY: 1.231 posZ: 2.808 - rotX: 0 - rotY: 180 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 180.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33111 ColorDiffuse: @@ -450,18 +450,18 @@ ContainedObjects: posX: 7.158 posY: 1.231 posZ: 2.808 - rotX: 0 - rotY: 180 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 180.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33111 ColorDiffuse: @@ -500,18 +500,18 @@ ContainedObjects: posX: 7.158 posY: 1.231 posZ: 2.808 - rotX: 0 - rotY: 180 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 180.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33111 ColorDiffuse: @@ -550,18 +550,18 @@ ContainedObjects: posX: 7.158 posY: 1.231 posZ: 2.808 - rotX: 0 - rotY: 180 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 180.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33111 ColorDiffuse: @@ -600,12 +600,12 @@ ContainedObjects: posX: 7.158 posY: 1.231 posZ: 2.808 - rotX: 0 - rotY: 180 - rotZ: 359 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 180.0 + rotZ: 359.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' CustomDeck: @@ -654,11 +654,11 @@ Transform: posX: 14.37 posY: 3.61 posZ: -31.02 - rotX: 0 - rotY: 270 - rotZ: 180 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret Objectives & Ultimatums b2077d/Deck 5f3cba.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret Objectives & Ultimatums b2077d/Deck 5f3cba.yaml index 1c9b6645b..cb6b574e6 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret Objectives & Ultimatums b2077d/Deck 5f3cba.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret Objectives & Ultimatums b2077d/Deck 5f3cba.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: b: 0.71324 @@ -9,9 +9,9 @@ ColorDiffuse: r: 0.71324 ContainedObjects: - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -50,18 +50,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33001 ColorDiffuse: @@ -100,18 +100,18 @@ ContainedObjects: posX: -5.625 posY: 1.171 posZ: 0.319 - rotX: 0 - rotY: 180 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -150,18 +150,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -200,18 +200,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -250,18 +250,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -300,18 +300,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -350,18 +350,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -400,18 +400,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -450,18 +450,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -500,18 +500,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -550,18 +550,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -600,18 +600,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -650,18 +650,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -700,18 +700,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -750,18 +750,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -800,18 +800,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -850,18 +850,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -900,18 +900,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -950,18 +950,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -1000,18 +1000,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -1050,18 +1050,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -1100,18 +1100,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -1150,18 +1150,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -1200,18 +1200,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -1250,18 +1250,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -1300,18 +1300,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -1350,18 +1350,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -1400,18 +1400,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -1450,18 +1450,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -1500,18 +1500,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -1550,18 +1550,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -1600,18 +1600,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -1650,18 +1650,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33034 ColorDiffuse: @@ -1700,18 +1700,18 @@ ContainedObjects: posX: -0.326 posY: 1.032 posZ: -3.647 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' - AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 33033 ColorDiffuse: @@ -1750,12 +1750,12 @@ ContainedObjects: posX: -0.481 posY: 1.176 posZ: -3.573 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' CustomDeck: @@ -1827,11 +1827,11 @@ Transform: posX: 16.5 posY: 3.61 posZ: -39.14 - rotX: 357 - rotY: 270 - rotZ: 185 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 357.0 + rotY: 270.0 + rotZ: 185.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE SECRET OBJ. f3dfc9.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE SECRET OBJ. f3dfc9.yaml index 9d33433c8..8018ed0b6 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE SECRET OBJ. f3dfc9.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE SECRET OBJ. f3dfc9.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 Description: ' @@ -38,11 +38,11 @@ Transform: posX: 17.18 posY: 3.59 posZ: -38.82 - rotX: 0 - rotY: 90 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE ULTIMATUMS ed4645.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE ULTIMATUMS ed4645.yaml index 0a9d1cb9c..7aa0c5a77 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE ULTIMATUMS ed4645.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE ULTIMATUMS ed4645.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 Description: ' At the start of each scenario, investigators may collectively choose to draw a random @@ -34,11 +34,11 @@ Transform: posX: 13.5 posY: 3.57 posZ: -31.3 - rotX: 336 - rotY: 87 - rotZ: 7 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 336.0 + rotY: 87.0 + rotZ: 7.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e.yaml index ae73507a4..aa12bcb4a 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e.yaml @@ -1,25 +1,37 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Winter Winds 754057.yaml' - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The War of the Worlds 19d469.yaml' +- !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Outsider 3c175c.yaml' +- !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The London Set + 0f96ac.yaml' +- !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Ghosts Of + Onigawa Campaign Expansion 8daa73.yaml' +- !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Dying Star + bcfff6.yaml' +- !include "Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model \uF729The Crown + of Egil 7458b7.yaml" +- !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Color Out + of Oz be7d21.yaml' +- !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Approaching + Storm ab6b9a.yaml' - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Strange Aeons 2abdd6.yaml' - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Pokemon Eldritch Edition 75fe78.yaml' - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Parallel Universe 28e0a1.yaml' -- !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Outsider 3c175c.yaml' - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Ordo Templi Orientis 608bea.yaml' - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Of Sphinx and @@ -28,8 +40,6 @@ ContainedObjects: Cycle aaceca.yaml' - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Machining A Mystery 79b36d.yaml' -- !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The London Set - 0f96ac.yaml' - !include "Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Kiedy sny Staj\u0105 si\u0119 Rzeczywi\u015Bci\u0105 acdf16.yaml" - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Kaimonogatari @@ -39,31 +49,25 @@ ContainedObjects: 019847.yaml' - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Idol Thoughts 2d417b.yaml' -- !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Ghosts Of - Onigawa Campaign Expansion 8daa73.yaml' - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Future Reflections 0f0680.yaml' - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Essence of Humanity Campaign Box 691339.yaml' -- !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Dying Star - bcfff6.yaml' - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Dark Matter d713f4.yaml' - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Darkham Horror bc7fa7.yaml' - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Cyclopean Foundations 169eb9.yaml' -- !include "Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model \uF729The Crown - of Egil 7458b7.yaml" - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Close Encounters of the LV-426 Kind 4f5421.yaml' - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Celtic Rising 4d305a.yaml' - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Call of the Plaguebearer 613b64.yaml' +- !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Bloodborne - City + of the Unseen 24fb2b.yaml' - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Betrayal at the - Mountains of Madness 0.8.4 ef939a.yaml' -- !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Approaching - Storm ab6b9a.yaml' + Mountains of Madness ef939a.yaml' - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Alice in Wonderland 39916d.yaml' - !include 'Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Ages Unwound f7e5eb.yaml' @@ -72,13 +76,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1758068588410858852/B3312EB929FDEF7CB2B88F98CD757950B919B147/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj @@ -106,12 +110,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -9 + posX: -9.0 posY: 1.48 - posZ: -60 - rotX: 0 - rotY: 270 - rotZ: 0 + posZ: -60.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.5 scaleY: 0.1 scaleZ: 0.5 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Ages Unwound f7e5eb.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Ages Unwound f7e5eb.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Ages Unwound f7e5eb.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Ages Unwound f7e5eb.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Ages Unwound f7e5eb.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Ages Unwound f7e5eb.yaml index 6f7b46464..3b4121bf5 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Ages Unwound f7e5eb.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Ages Unwound f7e5eb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,9 +11,9 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 @@ -27,13 +27,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1811004822724765158/DE184EBA95BF16D06DC2528B30E9058A87C7567E/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -51,7 +51,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Ages Unwound f7e5eb.ttslua' -LuaScriptState: '{"ml":{"00430e":{"lock":false,"pos":{"x":-2.7248,"y":1.6208,"z":0.3733},"rot":{"x":359.9197,"y":270.0209,"z":0.0168}},"004cfe":{"lock":false,"pos":{"x":-26.9746,"y":1.6474,"z":-7.719},"rot":{"x":359.9201,"y":269.9977,"z":0.0168}},"00d866":{"lock":false,"pos":{"x":-36.7731,"y":1.6463,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"022ddf":{"lock":false,"pos":{"x":12.2516,"y":1.4582,"z":-21.306},"rot":{"x":359.9201,"y":270.0089,"z":0.0169}},"031bc3":{"lock":false,"pos":{"x":-36.7731,"y":1.6463,"z":-0.0302},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"04861e":{"lock":false,"pos":{"x":-22.1074142456055,"y":1.65198755264282,"z":-0.0799271017313004},"rot":{"x":358.949035644531,"y":269.996215820313,"z":0.00770164048299193}},"0504b5":{"lock":false,"pos":{"x":-11.2926998138428,"y":1.64528131484985,"z":10.474401473999},"rot":{"x":359.920104980469,"y":270,"z":0.0168414264917374}},"05b0dd":{"lock":false,"pos":{"x":-23.6763114929199,"y":1.6280529499054,"z":-0.0299995802342892},"rot":{"x":359.920288085938,"y":270.000335693359,"z":0.015868254005909}},"066856":{"lock":false,"pos":{"x":-20.3639,"y":1.711,"z":3.7797},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"0727ee":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"073668":{"lock":false,"pos":{"x":-2.68840003013611,"y":1.614302277565,"z":-5.04850006103516},"rot":{"x":0.0168355908244848,"y":180.000106811523,"z":0.0802557617425919}},"0b0c58":{"lock":false,"pos":{"x":-5.7816,"y":1.6687,"z":15.6917},"rot":{"x":359.9197,"y":270.0067,"z":180.0168}},"0bbad1":{"lock":false,"pos":{"x":-32.2743,"y":1.6254,"z":-3.6548},"rot":{"x":0.0254,"y":30.0076,"z":359.9224}},"0dc38e":{"lock":false,"pos":{"x":-2.6885,"y":1.5973,"z":-5.0485},"rot":{"x":0.0168,"y":180.0005,"z":0.0803}},"0e28db":{"lock":false,"pos":{"x":-36.7732,"y":1.6486,"z":7.5699},"rot":{"x":359.9201,"y":269.9991,"z":0.0168}},"0f29d2":{"lock":false,"pos":{"x":-23.6766,"y":1.6865,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"0f6a9a":{"lock":false,"pos":{"x":-30.2243,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":269.9991,"z":180.0168}},"0f9069":{"lock":false,"pos":{"x":-2.68841552734375,"y":1.62393045425415,"z":-5.04849767684937},"rot":{"x":0.0167863219976425,"y":180.035003662109,"z":0.0802668780088425}},"11f346":{"lock":false,"pos":{"x":-2.7248,"y":1.6159,"z":0.3733},"rot":{"x":359.9197,"y":269.9995,"z":0.0168}},"127c22":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":270.0034,"z":180.0168}},"12ee5c":{"lock":false,"pos":{"x":-2.6886,"y":1.6239,"z":-5.0485},"rot":{"x":0.0168,"y":179.9979,"z":0.0803}},"133c08":{"lock":false,"pos":{"x":-26.8915,"y":1.6274,"z":-17.6781},"rot":{"x":359.9201,"y":269.9982,"z":180.0168}},"140554":{"lock":false,"pos":{"x":-30.2241,"y":1.6372,"z":-0.0301},"rot":{"x":359.9201,"y":270,"z":180.0168}},"14294d":{"lock":false,"pos":{"x":-30.2243003845215,"y":1.62247538566589,"z":-3.82999968528748},"rot":{"x":359.983154296875,"y":9.45557644627115E-07,"z":359.920074462891}},"156143":{"lock":false,"pos":{"x":-26.8175,"y":1.6176,"z":-4.2813},"rot":{"x":359.9316,"y":314.9987,"z":359.9554}},"188869":{"lock":false,"pos":{"x":-33.7877006530762,"y":1.62736082077026,"z":-4.1144003868103},"rot":{"x":359.931579589844,"y":314.995208740234,"z":359.955413818359}},"18fe65":{"lock":false,"pos":{"x":-2.7246,"y":1.6551,"z":0.3733},"rot":{"x":0.0168,"y":180,"z":0.0803}},"1b18e3":{"lock":false,"pos":{"x":-28.6364,"y":1.6179,"z":-11.6987},"rot":{"x":0.0254,"y":30.0069,"z":359.9224}},"1b5ff6":{"lock":false,"pos":{"x":-3.9278,"y":1.7396,"z":5.7572},"rot":{"x":359.9197,"y":269.9997,"z":180.0168}},"1c0ba0":{"lock":false,"pos":{"x":-2.7248,"y":1.6256,"z":0.3733},"rot":{"x":359.9197,"y":270.0203,"z":0.0168}},"1c28a2":{"lock":false,"pos":{"x":-3.9278,"y":1.8118,"z":5.7572},"rot":{"x":359.9197,"y":270,"z":180.0168}},"1d3069":{"lock":false,"pos":{"x":-3.9272,"y":1.8463,"z":5.7572},"rot":{"x":359.9197,"y":270,"z":180.0168}},"1eacd2":{"lock":false,"pos":{"x":-23.6762199401855,"y":1.62580633163452,"z":-7.69966125488281},"rot":{"x":359.920471191406,"y":269.987823486328,"z":0.0164900496602058}},"232fcf":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9996,"z":0.0168}},"24051c":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9973,"z":180.0168}},"24194b":{"lock":false,"pos":{"x":-26.9644,"y":1.619,"z":-0.0254},"rot":{"x":0.0799,"y":89.9918,"z":359.9831}},"242601":{"lock":false,"pos":{"x":-12.1035,"y":1.6502,"z":7.1013},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"247967":{"lock":false,"pos":{"x":-3.502,"y":1.582,"z":-14.91},"rot":{"x":359.9204,"y":270.007,"z":0.0177}},"24d46d":{"lock":false,"pos":{"x":-5.8948,"y":1.5,"z":-14.5194},"rot":{"x":359.9817,"y":0,"z":359.953}},"24d9ae":{"lock":false,"pos":{"x":-23.6765,"y":1.6247,"z":-11.5103},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"254882":{"lock":false,"pos":{"x":-30.2243,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"255665":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"255ca1":{"lock":false,"pos":{"x":-33.5974,"y":1.7283,"z":0.0331},"rot":{"x":0.0799,"y":89.9999,"z":179.9832}},"26f00f":{"lock":false,"pos":{"x":-17.12,"y":1.6201,"z":3.86},"rot":{"x":359.9201,"y":269.9983,"z":180.0168}},"2701b0":{"lock":false,"pos":{"x":-3.9563,"y":1.5975,"z":-10.442},"rot":{"x":359.9197,"y":269.9972,"z":0.0168}},"27d0df":{"lock":false,"pos":{"x":-2.7246,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":179.9939,"z":0.0803}},"2889fa":{"lock":false,"pos":{"x":-2.6886,"y":1.6143,"z":-5.0485},"rot":{"x":359.9197,"y":269.9995,"z":0.0168}},"289f45":{"lock":false,"pos":{"x":-2.6886,"y":1.6191,"z":-5.0485},"rot":{"x":359.9197,"y":270.0211,"z":0.0168}},"2a8b58":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"2baf46":{"lock":false,"pos":{"x":-23.6765,"y":1.6314,"z":11.46},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"2c0325":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2789},"rot":{"x":359.9551,"y":225.0012,"z":0.0687}},"2c535b":{"lock":false,"pos":{"x":-29.0341,"y":1.7197,"z":-7.6416},"rot":{"x":0.0254,"y":30.0001,"z":179.9224}},"2d2cea":{"lock":false,"pos":{"x":-30.2243,"y":1.6586,"z":15.19},"rot":{"x":359.9201,"y":269.9971,"z":0.0168}},"2e58be":{"lock":false,"pos":{"x":-2.7248,"y":1.6208,"z":0.3733},"rot":{"x":359.9197,"y":269.9995,"z":0.0168}},"2eb7a1":{"lock":false,"pos":{"x":-21.4944,"y":1.7855,"z":-7.738},"rot":{"x":356.077,"y":270.0019,"z":0.0175}},"2ee2b1":{"lock":false,"pos":{"x":-3.927414894104,"y":1.76844847202301,"z":5.75720548629761},"rot":{"x":359.919738769531,"y":270,"z":180.016815185547}},"2ee4bd":{"lock":false,"pos":{"x":-2.68842387199402,"y":1.61430239677429,"z":-5.04849529266357},"rot":{"x":0.0168356243520975,"y":180.000106811523,"z":0.0802557170391083}},"30684d":{"lock":false,"pos":{"x":12.2514,"y":1.4633,"z":-3.92},"rot":{"x":359.9201,"y":269.9965,"z":0.0169}},"356aa9":{"lock":false,"pos":{"x":-30.2243,"y":1.6349,"z":-7.7},"rot":{"x":359.9201,"y":270.0009,"z":180.0168}},"35a5ed":{"lock":false,"pos":{"x":-2.7248,"y":1.6256,"z":0.3733},"rot":{"x":359.9197,"y":270.0204,"z":0.0168}},"35bf8e":{"lock":false,"pos":{"x":-26.6194000244141,"y":1.62078189849854,"z":7.51179981231689},"rot":{"x":0.0798935890197754,"y":89.9971008300781,"z":359.983123779297}},"3638b9":{"lock":false,"pos":{"x":-36.7731,"y":1.6633,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":180.0168}},"364115":{"lock":false,"pos":{"x":-30.2242,"y":1.6586,"z":15.1899},"rot":{"x":359.9201,"y":269.9997,"z":0.0168}},"3726c0":{"lock":false,"pos":{"x":-27.1284,"y":1.6204,"z":3.8457},"rot":{"x":359.9316,"y":315.0028,"z":359.9554}},"38d15b":{"lock":false,"pos":{"x":-28.3176,"y":1.6199,"z":-3.6849},"rot":{"x":359.9454,"y":329.9789,"z":359.9392}},"393742":{"lock":false,"pos":{"x":-26.6029,"y":1.631,"z":-3.8066},"rot":{"x":359.9201,"y":270,"z":180.0168}},"393c71":{"lock":false,"pos":{"x":-3.96210074424744,"y":1.58277440071106,"z":-14.4190082550049},"rot":{"x":359.919738769531,"y":270.005798339844,"z":0.0168296620249748}},"3de646":{"lock":false,"pos":{"x":-36.7729,"y":1.7339,"z":3.8599},"rot":{"x":359.9832,"y":0.0004,"z":179.92}},"3f13be":{"lock":false,"pos":{"x":-30.224,"y":1.7247,"z":3.86},"rot":{"x":359.9832,"y":0.0002,"z":179.9201}},"3f69bd":{"lock":false,"pos":{"x":-3.9562,"y":1.5975,"z":-10.4418},"rot":{"x":359.9197,"y":269.9989,"z":0.0168}},"3fd58d":{"lock":false,"pos":{"x":-28.533,"y":1.6224,"z":3.8911},"rot":{"x":0.0254,"y":30.0068,"z":359.9224}},"425157":{"lock":false,"pos":{"x":-26.7825,"y":1.6272,"z":-17.6964},"rot":{"x":359.9201,"y":270,"z":180.0168}},"43194d":{"lock":false,"pos":{"x":-3.9275,"y":1.807,"z":5.7571},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}},"44b0c5":{"lock":false,"pos":{"x":-20.5196,"y":1.6101,"z":-0.0882},"rot":{"x":359.9201,"y":269.9942,"z":0.0169}},"44ba74":{"lock":false,"pos":{"x":-2.7248,"y":1.6208,"z":0.3734},"rot":{"x":0.0168,"y":179.9984,"z":0.0803}},"45341b":{"lock":false,"pos":{"x":-23.6765174865723,"y":1.63030016422272,"z":7.57000255584717},"rot":{"x":359.920104980469,"y":269.999877929688,"z":0.0168404877185822}},"47ff0e":{"lock":false,"pos":{"x":-30.224100112915,"y":1.6371967792511,"z":-0.0300003066658974},"rot":{"x":359.920104980469,"y":269.999694824219,"z":0.0168400406837463}},"49bfac":{"lock":false,"pos":{"x":-23.6764,"y":1.6428,"z":-7.7001},"rot":{"x":359.9201,"y":270,"z":180.0168}},"4b1874":{"lock":false,"pos":{"x":-23.6764163970947,"y":1.62806642055511,"z":-0.030196737498045},"rot":{"x":359.920104980469,"y":269.998413085938,"z":0.0168425049632788}},"4b3a73":{"lock":false,"pos":{"x":-23.6766,"y":1.6258,"z":-7.7},"rot":{"x":359.9201,"y":270.0014,"z":180.0168}},"4c4031":{"lock":false,"pos":{"x":-2.7248,"y":1.6208,"z":0.3733},"rot":{"x":0.0169,"y":179.96,"z":0.0802}},"4f0ae7":{"lock":false,"pos":{"x":-30.2243,"y":1.6394,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":0.0168}},"4f822c":{"lock":false,"pos":{"x":-28.57,"y":1.7214,"z":0.2148},"rot":{"x":359.9455,"y":330.0001,"z":179.9392}},"500ae5":{"lock":false,"pos":{"x":-35.5959,"y":1.63,"z":-3.703},"rot":{"x":359.9455,"y":329.9933,"z":359.9392}},"50fc37":{"lock":false,"pos":{"x":-3.92750406265259,"y":1.70105195045471,"z":5.75720119476318},"rot":{"x":359.919738769531,"y":269.999420166016,"z":180.016815185547}},"51c0d9":{"lock":false,"pos":{"x":12.2531,"y":1.4735,"z":30.8262},"rot":{"x":359.9201,"y":270.0129,"z":0.0169}},"52dd93":{"lock":false,"pos":{"x":-17.12,"y":1.6721,"z":-15.28},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}},"52f8d5":{"lock":false,"pos":{"x":1.6964008808136,"y":1.55831670761108,"z":14.278902053833},"rot":{"x":359.955139160156,"y":224.998016357422,"z":0.0686715692281723}},"5484d3":{"lock":false,"pos":{"x":-36.7732,"y":1.661,"z":-7.7002},"rot":{"x":359.9201,"y":269.9997,"z":180.0168}},"55cac8":{"lock":false,"pos":{"x":-11.1399278640747,"y":1.41411137580872,"z":7.3362250328064},"rot":{"x":359.983154296875,"y":-7.57175366743468E-05,"z":359.920043945313}},"57d9e9":{"lock":false,"pos":{"x":-23.6765003204346,"y":1.61560487747192,"z":3.86000108718872},"rot":{"x":0.0168614368885756,"y":179.984069824219,"z":0.0799344405531883}},"57fc40":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9997,"z":0.0168}},"584326":{"lock":false,"pos":{"x":-30.2243,"y":1.6542,"z":-0.03},"rot":{"x":359.9201,"y":270.0335,"z":0.0168}},"584b1a":{"lock":false,"pos":{"x":-2.72460699081421,"y":1.62076032161713,"z":0.373302042484283},"rot":{"x":0.016835467889905,"y":180.000091552734,"z":0.080255888402462}},"588354":{"lock":false,"pos":{"x":-30.2243,"y":1.6805,"z":11.46},"rot":{"x":359.9201,"y":270.0007,"z":0.0169}},"5a09e8":{"lock":false,"pos":{"x":-26.8946,"y":1.6167,"z":-7.7475},"rot":{"x":0.0799,"y":89.9671,"z":359.9831}},"5a6870":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":179.9999,"z":0.0799}},"5a6fc6":{"lock":false,"pos":{"x":-36.7732,"y":1.6655,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":180.0168}},"5af4bf":{"lock":false,"pos":{"x":-23.6765,"y":1.6258,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"5b01f6":{"lock":false,"pos":{"x":-33.431999206543,"y":1.63023662567139,"z":7.35879898071289},"rot":{"x":0.0798932984471321,"y":89.9970321655273,"z":359.983123779297}},"5b0903":{"lock":false,"pos":{"x":-23.6765,"y":1.645,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":180.0168}},"5c46c6":{"lock":false,"pos":{"x":-30.2243,"y":1.6349,"z":-7.7001},"rot":{"x":359.9201,"y":269.9992,"z":0.0168}},"5e6a84":{"lock":false,"pos":{"x":1.6978,"y":1.5583,"z":14.2786},"rot":{"x":359.9551,"y":225.0012,"z":0.0687}},"5e9e43":{"lock":false,"pos":{"x":-27.0287,"y":1.7203,"z":3.8183},"rot":{"x":359.92,"y":270.0641,"z":180.0166}},"60a5f6":{"lock":false,"pos":{"x":-17.1201,"y":1.6042,"z":-3.8287},"rot":{"x":359.9831,"y":-0.0041,"z":359.92}},"62a154":{"lock":false,"pos":{"x":-2.6886,"y":1.6239,"z":-5.0486},"rot":{"x":359.9197,"y":269.9958,"z":0.0168}},"62c028":{"lock":false,"pos":{"x":-3.9268,"y":1.793,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}},"633816":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":0.0169}},"6368e6":{"lock":false,"pos":{"x":-2.6886,"y":1.6239,"z":-5.0522},"rot":{"x":0.0168,"y":180.0047,"z":0.0803}},"64a607":{"lock":false,"pos":{"x":-4.0506,"y":1.5828,"z":-14.8887},"rot":{"x":359.9197,"y":269.9735,"z":0.0169}},"655f00":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":-0.0041,"z":359.92}},"6571a3":{"lock":false,"pos":{"x":-2.6884,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"65f985":{"lock":false,"pos":{"x":-2.6885,"y":1.6143,"z":-5.0485},"rot":{"x":0.0168,"y":180.0002,"z":0.0803}},"66a2dd":{"lock":false,"pos":{"x":-25.0681,"y":1.7141,"z":-7.7809},"rot":{"x":359.9455,"y":330,"z":179.9392}},"67d0e2":{"lock":false,"pos":{"x":-30.2243,"y":1.6394,"z":7.57},"rot":{"x":359.9201,"y":269.9991,"z":180.0168}},"680d25":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":179.9999,"z":0.0803}},"69b78e":{"lock":false,"pos":{"x":1.69600069522858,"y":1.55831730365753,"z":14.2787017822266},"rot":{"x":359.955139160156,"y":224.998001098633,"z":0.0686735510826111}},"69f8c5":{"lock":false,"pos":{"x":-23.4317,"y":1.633,"z":17.8768},"rot":{"x":359.9201,"y":269.9994,"z":180.0168}},"69fdfb":{"lock":false,"pos":{"x":-30.2243,"y":1.6258,"z":7.57},"rot":{"x":359.9201,"y":270.0274,"z":0.0168}},"6a6a67":{"lock":false,"pos":{"x":-33.3743,"y":1.6405,"z":-3.7899},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"6a83c1":{"lock":false,"pos":{"x":1.69610178470612,"y":1.55831718444824,"z":14.2789039611816},"rot":{"x":359.955139160156,"y":224.9912109375,"z":0.0686781033873558}},"6bdd52":{"lock":false,"pos":{"x":-36.7732,"y":1.6486,"z":7.57},"rot":{"x":359.9201,"y":269.9991,"z":180.0168}},"6c39d5":{"lock":false,"pos":{"x":-20.6956,"y":1.6103,"z":-0.0915},"rot":{"x":359.9201,"y":269.9926,"z":0.0169}},"6c7a0b":{"lock":false,"pos":{"x":-26.7378005981445,"y":1.61766254901886,"z":-3.66310119628906},"rot":{"x":0.0683989003300667,"y":135.011825561523,"z":0.0445992574095726}},"6d6451":{"lock":false,"pos":{"x":-33.7106,"y":1.6307,"z":7.6711},"rot":{"x":0.0799,"y":89.9933,"z":359.9831}},"6e7317":{"lock":false,"pos":{"x":-2.7249,"y":1.6208,"z":0.3734},"rot":{"x":0.0168,"y":179.9996,"z":0.0803}},"703373":{"lock":false,"pos":{"x":-4.1502,"y":1.5829,"z":-14.7443},"rot":{"x":359.9197,"y":269.9849,"z":0.0169}},"70df0b":{"lock":false,"pos":{"x":-3.95591688156128,"y":1.59753930568695,"z":-10.4412984848022},"rot":{"x":359.919738769531,"y":269.997314453125,"z":0.0168418549001217}},"71627e":{"lock":false,"pos":{"x":-3.9279,"y":1.6914,"z":5.7573},"rot":{"x":359.9197,"y":270.0761,"z":180.0167}},"72053e":{"lock":false,"pos":{"x":1.6967,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"7234af":{"lock":false,"pos":{"x":-33.6046,"y":1.6305,"z":7.4915},"rot":{"x":359.9201,"y":269.9946,"z":0.0169}},"726813":{"lock":false,"pos":{"x":-3.9274,"y":1.8357,"z":5.7571},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"72eded":{"lock":false,"pos":{"x":-11.9367,"y":1.6011,"z":-1.7661},"rot":{"x":359.9201,"y":270.0135,"z":0.0168}},"7310f8":{"lock":false,"pos":{"x":-17.1200180053711,"y":1.61666798591614,"z":-7.69979953765869},"rot":{"x":359.920135498047,"y":270.002746582031,"z":0.0167039167135954}},"740ce8":{"lock":false,"pos":{"x":-2.7247,"y":1.6208,"z":0.3734},"rot":{"x":0.0168,"y":179.9997,"z":0.0803}},"74c9ca":{"lock":false,"pos":{"x":-33.3711,"y":1.6563,"z":-7.6052},"rot":{"x":359.9201,"y":269.997,"z":0.0168}},"766316":{"lock":false,"pos":{"x":-3.9278,"y":1.7684,"z":5.7571},"rot":{"x":359.9197,"y":269.9987,"z":180.0168}},"767883":{"lock":false,"pos":{"x":-23.6995,"y":1.6334,"z":17.8548},"rot":{"x":359.9201,"y":269.9985,"z":180.0168}},"768494":{"lock":false,"pos":{"x":-30.2243,"y":1.6956,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"76ee28":{"lock":false,"pos":{"x":-33.4321,"y":1.6608,"z":7.5042},"rot":{"x":359.9201,"y":269.9997,"z":0.0168}},"777479":{"lock":false,"pos":{"x":-26.9066,"y":1.6517,"z":7.5415},"rot":{"x":359.9201,"y":269.9975,"z":0.0168}},"7b8844":{"lock":false,"pos":{"x":-2.72460007667542,"y":1.62076032161713,"z":0.373300313949585},"rot":{"x":0.0168356467038393,"y":180,"z":0.0802559331059456}},"7b8d65":{"lock":false,"pos":{"x":-22.547700881958,"y":1.61185455322266,"z":-3.54469966888428},"rot":{"x":0.0168615225702524,"y":179.983963012695,"z":0.0799346789717674}},"7bb181":{"lock":false,"pos":{"x":1.6845,"y":1.541,"z":-18.7682},"rot":{"x":359.9201,"y":270.0003,"z":180.0169}},"7c5f0c":{"lock":false,"pos":{"x":-3.9276,"y":1.7877,"z":5.7571},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}},"7d01a8":{"lock":false,"pos":{"x":-12.0961,"y":1.6502,"z":7.054},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"7ec61f":{"lock":false,"pos":{"x":-20.3635234832764,"y":1.60756397247314,"z":-7.79511642456055},"rot":{"x":359.918487548828,"y":269.896545410156,"z":0.0177300665527582}},"7faf81":{"lock":false,"pos":{"x":-17.1199169158936,"y":1.61892378330231,"z":-0.0299970954656601},"rot":{"x":359.920104980469,"y":269.999877929688,"z":0.0168409533798695}},"7fe445":{"lock":false,"pos":{"x":-2.6893,"y":1.6191,"z":-5.0488},"rot":{"x":359.9197,"y":270.0017,"z":0.0168}},"800725":{"lock":false,"pos":{"x":-23.6765,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":269.9984,"z":0.0168}},"80170c":{"lock":false,"pos":{"x":0.9576,"y":1.6,"z":-40.432},"rot":{"x":0,"y":270.0164,"z":-0.0003}},"80236e":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9994,"z":0.0169}},"81aa81":{"lock":false,"pos":{"x":-25.1421,"y":1.7166,"z":0.1523},"rot":{"x":0.0254,"y":30.0001,"z":179.9224}},"828c23":{"lock":false,"pos":{"x":-30.2243,"y":1.6383,"z":3.86},"rot":{"x":359.9201,"y":269.998,"z":180.0168}},"82f7d9":{"lock":false,"pos":{"x":-3.92740058898926,"y":1.749192237854,"z":5.75720071792603},"rot":{"x":359.919738769531,"y":270,"z":180.016815185547}},"835bdb":{"lock":false,"pos":{"x":-17.1202,"y":1.6633,"z":11.4601},"rot":{"x":359.9201,"y":269.992,"z":180.0168}},"84963c":{"lock":false,"pos":{"x":-33.5150985717773,"y":1.62818801403046,"z":-0.00610029092058539},"rot":{"x":0.0798945277929306,"y":90.0005187988281,"z":359.983123779297}},"850adf":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4413},"rot":{"x":359.9197,"y":269.999,"z":0.0168}},"855c79":{"lock":false,"pos":{"x":-11.889,"y":1.6499,"z":6.9123},"rot":{"x":359.9201,"y":270,"z":180.0168}},"8662fa":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"86a48b":{"lock":false,"pos":{"x":-2.7247,"y":1.6256,"z":0.3735},"rot":{"x":0.0168,"y":180.0012,"z":0.0803}},"870c38":{"lock":false,"pos":{"x":-33.4038,"y":1.6268,"z":-4.2273},"rot":{"x":0.0445,"y":44.9587,"z":359.9316}},"87adbf":{"lock":false,"pos":{"x":12.2514,"y":1.4684,"z":13.4371},"rot":{"x":359.9201,"y":270.0184,"z":0.0168}},"880f76":{"lock":false,"pos":{"x":-36.7733,"y":1.6418,"z":-15.28},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"88403a":{"lock":false,"pos":{"x":-23.6766,"y":1.6258,"z":-7.7},"rot":{"x":359.9201,"y":269.9998,"z":0.0168}},"88a80e":{"lock":false,"pos":{"x":-26.7661,"y":1.6471,"z":-7.7342},"rot":{"x":359.9201,"y":269.9989,"z":0.0168}},"89652f":{"lock":false,"pos":{"x":-3.9278,"y":1.7973,"z":5.7572},"rot":{"x":359.9197,"y":269.9983,"z":180.0168}},"896640":{"lock":false,"pos":{"x":-30.224,"y":1.7225,"z":-3.83},"rot":{"x":0.0799,"y":89.9998,"z":179.9832}},"89943d":{"lock":false,"pos":{"x":-35.4139,"y":1.6319,"z":3.6922},"rot":{"x":0.0254,"y":30.0032,"z":359.9224}},"8ad293":{"lock":false,"pos":{"x":-28.5349,"y":1.6246,"z":11.3875},"rot":{"x":359.9455,"y":329.9887,"z":359.9392}},"8af52e":{"lock":false,"pos":{"x":-30.2243,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":269.9958,"z":180.0168}},"8dfbb1":{"lock":false,"pos":{"x":-28.0506992340088,"y":1.62181973457336,"z":4.2514009475708},"rot":{"x":0.0445704311132431,"y":44.9847793579102,"z":359.931610107422}},"8fffb7":{"lock":false,"pos":{"x":-27.3820991516113,"y":1.62016415596008,"z":1.79079973697662},"rot":{"x":359.931579589844,"y":315,"z":359.955413818359}},"90bb07":{"lock":false,"pos":{"x":-23.67649269104,"y":1.62694978713989,"z":-3.83000540733337},"rot":{"x":359.920104980469,"y":269.999938964844,"z":0.0168403331190348}},"92a0b0":{"lock":false,"pos":{"x":-36.7732,"y":1.6486,"z":7.57},"rot":{"x":359.9201,"y":270.0014,"z":180.0168}},"92b54a":{"lock":false,"pos":{"x":-3.40050005912781,"y":1.58169901371002,"z":-15.4017019271851},"rot":{"x":359.919738769531,"y":270.004913330078,"z":0.0168309509754181}},"92e6c2":{"lock":false,"pos":{"x":-36.7731,"y":1.6655,"z":7.5698},"rot":{"x":359.9201,"y":270,"z":180.0168}},"92ecba":{"lock":false,"pos":{"x":-23.6765,"y":1.645,"z":-0.0299},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"9342b3":{"lock":false,"pos":{"x":-36.7733,"y":1.6418,"z":-15.28},"rot":{"x":359.9201,"y":269.993,"z":180.0168}},"96ea0d":{"lock":false,"pos":{"x":-26.7154,"y":1.6312,"z":-3.781},"rot":{"x":359.9201,"y":269.9982,"z":180.0168}},"98208f":{"lock":false,"pos":{"x":-30.2264,"y":1.6425,"z":17.8565},"rot":{"x":359.9201,"y":269.9985,"z":180.0168}},"98a5aa":{"lock":false,"pos":{"x":-30.2243,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"995fe7":{"lock":false,"pos":{"x":-17.1199150085449,"y":1.61892187595367,"z":-0.0298978574573994},"rot":{"x":359.920135498047,"y":270.003723144531,"z":0.0166994705796242}},"9a3039":{"lock":false,"pos":{"x":-30.2243175506592,"y":1.63834023475647,"z":3.86000323295593},"rot":{"x":359.920104980469,"y":269.999664306641,"z":0.0168407000601292}},"9abec6":{"lock":false,"pos":{"x":1.7023,"y":1.5583,"z":14.2777},"rot":{"x":359.9551,"y":225.0013,"z":0.0687}},"9bfecc":{"lock":false,"pos":{"x":-17.12,"y":1.6201,"z":3.86},"rot":{"x":359.9201,"y":270,"z":180.0168}},"9e1376":{"lock":false,"pos":{"x":-3.9277,"y":1.7973,"z":5.7572},"rot":{"x":359.9197,"y":269.9998,"z":180.0168}},"9f034b":{"lock":false,"pos":{"x":-36.7731,"y":1.6486,"z":7.5695},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"9f9330":{"lock":false,"pos":{"x":-2.6884,"y":1.6623,"z":-5.0485},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"a27f32":{"lock":false,"pos":{"x":-23.6765,"y":1.6292,"z":3.86},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"a55672":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.279},"rot":{"x":359.9551,"y":224.9978,"z":0.0687}},"a5f7b3":{"lock":false,"pos":{"x":-36.7732,"y":1.6463,"z":-0.03},"rot":{"x":359.9201,"y":270.0007,"z":180.0168}},"a621ae":{"lock":false,"pos":{"x":-3.9907,"y":1.5827,"z":-14.7887},"rot":{"x":359.9206,"y":270.0058,"z":0.0172}},"a6e3da":{"lock":false,"pos":{"x":-27.0759,"y":1.6181,"z":-3.6496},"rot":{"x":0.0446,"y":44.9972,"z":359.9316}},"a6ebc7":{"lock":false,"pos":{"x":-32.5504,"y":1.6301,"z":11.1831},"rot":{"x":0.0254,"y":30.0397,"z":359.9224}},"a706b9":{"lock":false,"pos":{"x":-18.4929962158203,"y":1.60845816135406,"z":4.13670015335083},"rot":{"x":0.0684079602360725,"y":135.000152587891,"z":0.0445851348340511}},"a7143d":{"lock":false,"pos":{"x":-33.3438,"y":1.6562,"z":-7.7623},"rot":{"x":359.9201,"y":269.9958,"z":0.0168}},"a9eebf":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4414},"rot":{"x":359.9197,"y":270,"z":0.0168}},"aa3f28":{"lock":false,"pos":{"x":-36.7732,"y":1.6463,"z":-0.03},"rot":{"x":359.9201,"y":269.9994,"z":0.0168}},"aa50e4":{"lock":false,"pos":{"x":-3.95601749420166,"y":1.59753942489624,"z":-10.4412002563477},"rot":{"x":359.919738769531,"y":270.000061035156,"z":0.0168371647596359}},"ac4427":{"lock":false,"pos":{"x":-23.6764163970947,"y":1.63029801845551,"z":7.57009840011597},"rot":{"x":359.920135498047,"y":270.002380371094,"z":0.0166968833655119}},"acc7ef":{"lock":false,"pos":{"x":-2.72460699081421,"y":1.62076032161713,"z":0.373301833868027},"rot":{"x":0.0168390069156885,"y":179.997497558594,"z":0.0802554115653038}},"ad0bbd":{"lock":false,"pos":{"x":-12.1489,"y":1.6132,"z":4.2018},"rot":{"x":359.9201,"y":269.9927,"z":0.0168}},"ad4c69":{"lock":false,"pos":{"x":-30.2244,"y":1.6497,"z":-15.28},"rot":{"x":359.9201,"y":270.001,"z":0.0168}},"ad54b7":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4413},"rot":{"x":359.9197,"y":269.9995,"z":0.0168}},"ade140":{"lock":false,"pos":{"x":-30.2242,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"ae73b7":{"lock":false,"pos":{"x":-27.0013,"y":1.6236,"z":15.18},"rot":{"x":359.92,"y":270.2697,"z":0.0165}},"af6ef5":{"lock":false,"pos":{"x":-3.9276,"y":1.7973,"z":5.757},"rot":{"x":359.9197,"y":269.9996,"z":180.0168}},"afe7ce":{"lock":false,"pos":{"x":12.251,"y":1.4607,"z":-12.6664},"rot":{"x":359.9201,"y":270.0271,"z":0.0168}},"b0533f":{"lock":false,"pos":{"x":-30.2242,"y":1.6372,"z":-0.0299},"rot":{"x":359.9201,"y":269.9997,"z":180.0168}},"b0601f":{"lock":false,"pos":{"x":-3.9277,"y":1.7011,"z":5.7572},"rot":{"x":359.9197,"y":270,"z":180.0168}},"b0b20f":{"lock":false,"pos":{"x":1.6959,"y":1.5583,"z":14.2786},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"b1e332":{"lock":false,"pos":{"x":-22.1459178924561,"y":1.69905459880829,"z":-7.67576932907104},"rot":{"x":1.72527134418488,"y":269.965606689453,"z":0.0172667019069195}},"b24a2a":{"lock":false,"pos":{"x":-2.4995,"y":1.6602,"z":15.6924},"rot":{"x":359.9197,"y":270.0029,"z":0.0168}},"b297d9":{"lock":false,"pos":{"x":-2.7248,"y":1.6208,"z":0.3733},"rot":{"x":359.9197,"y":270.001,"z":0.0168}},"b2db43":{"lock":false,"pos":{"x":-30.2244,"y":1.6213,"z":-7.7},"rot":{"x":359.9201,"y":270.0276,"z":0.0168}},"b30814":{"lock":false,"pos":{"x":0.748,"y":1.6191,"z":-5.1345},"rot":{"x":359.9197,"y":269.9924,"z":0.0168}},"b42613":{"lock":false,"pos":{"x":-30.2243,"y":1.6338,"z":-11.51},"rot":{"x":359.9201,"y":269.9982,"z":180.0168}},"b4298b":{"lock":false,"pos":{"x":-30.2243,"y":1.6383,"z":3.86},"rot":{"x":359.9201,"y":270,"z":180.0168}},"b47b11":{"lock":false,"pos":{"x":-2.6884,"y":1.6543,"z":-5.0485},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"b49857":{"lock":false,"pos":{"x":-23.6765,"y":1.6473,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":180.0168}},"b4d898":{"lock":false,"pos":{"x":-3.9275,"y":1.754,"z":5.7572},"rot":{"x":359.9197,"y":270,"z":180.0168}},"b5076f":{"lock":false,"pos":{"x":-23.6764,"y":1.6473,"z":7.57},"rot":{"x":359.9201,"y":270.0002,"z":180.0168}},"b551bf":{"lock":false,"pos":{"x":-3.9277,"y":1.7684,"z":5.7572},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}},"b5928a":{"lock":false,"pos":{"x":-3.84430050849915,"y":1.58257055282593,"z":-14.5511026382446},"rot":{"x":359.919738769531,"y":270.001403808594,"z":0.0168359410017729}},"b68edf":{"lock":false,"pos":{"x":-27.1597995758057,"y":1.62095999717712,"z":5.5543007850647},"rot":{"x":359.955413818359,"y":224.999816894531,"z":0.0683797672390938}},"b70946":{"lock":false,"pos":{"x":1.6971,"y":1.5583,"z":14.2776},"rot":{"x":359.9552,"y":224.9676,"z":0.0687}},"b78188":{"lock":false,"pos":{"x":-2.7248,"y":1.6256,"z":0.3733},"rot":{"x":0.0168,"y":180.0012,"z":0.0803}},"b7b517":{"lock":false,"pos":{"x":-3.9278,"y":1.7877,"z":5.7572},"rot":{"x":359.9197,"y":270.0156,"z":180.0168}},"b858d0":{"lock":false,"pos":{"x":-3.7524,"y":1.6624,"z":15.1757},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"b97eaa":{"lock":false,"pos":{"x":-30.2244,"y":1.6497,"z":-15.28},"rot":{"x":359.9201,"y":269.9854,"z":0.0169}},"bb419a":{"lock":false,"pos":{"x":-11.8716,"y":1.6021,"z":1.9311},"rot":{"x":359.9201,"y":270.0144,"z":0.0168}},"bc110a":{"lock":false,"pos":{"x":-36.7731,"y":1.6633,"z":-0.0302},"rot":{"x":359.9201,"y":269.9967,"z":0.0168}},"bcae3c":{"lock":false,"pos":{"x":-30.2243,"y":1.6394,"z":7.57},"rot":{"x":359.9201,"y":270.0005,"z":180.0168}},"bd431f":{"lock":false,"pos":{"x":-26.8465995788574,"y":1.6178685426712,"z":-3.47939968109131},"rot":{"x":0.0446006134152412,"y":45.0099945068359,"z":359.931640625}},"bd5693":{"lock":false,"pos":{"x":-2.7247,"y":1.6159,"z":0.3733},"rot":{"x":0.0168,"y":179.9996,"z":0.0803}},"bd5f07":{"lock":false,"pos":{"x":-27.1714,"y":1.7237,"z":14.8589},"rot":{"x":0.0685,"y":134.8521,"z":180.0444}},"bfde22":{"lock":false,"pos":{"x":-30.2243,"y":1.6349,"z":-7.7},"rot":{"x":359.9201,"y":270,"z":180.0168}},"c103b6":{"lock":false,"pos":{"x":-2.6886,"y":1.6239,"z":-5.0486},"rot":{"x":359.9197,"y":270.0198,"z":0.0168}},"c24eb1":{"lock":false,"pos":{"x":-3.9276,"y":1.7636,"z":5.7572},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"c36da2":{"lock":false,"pos":{"x":-26.9329,"y":1.6518,"z":7.6102},"rot":{"x":359.9201,"y":269.989,"z":0.0169}},"c3915f":{"lock":false,"pos":{"x":-21.5971,"y":1.7953,"z":7.5353},"rot":{"x":355.8867,"y":269.984,"z":0.0177}},"c3d6f1":{"lock":false,"pos":{"x":-23.6765,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":270.0029,"z":180.0168}},"c50379":{"lock":false,"pos":{"x":-30.2242736816406,"y":1.63719654083252,"z":-0.0300307180732489},"rot":{"x":359.920104980469,"y":270.004699707031,"z":0.0168058946728706}},"c5386d":{"lock":false,"pos":{"x":-29.9794,"y":1.6421,"z":17.8773},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"c54325":{"lock":false,"pos":{"x":-12.1299,"y":1.655,"z":6.9461},"rot":{"x":359.9201,"y":269.9991,"z":180.0168}},"c5b428":{"lock":false,"pos":{"x":-26.7529,"y":1.724,"z":17.7955},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"c5df1c":{"lock":false,"pos":{"x":-26.7180004119873,"y":1.61867380142212,"z":-0.128800302743912},"rot":{"x":0.0798946842551231,"y":90.0006103515625,"z":359.983123779297}},"c6f73e":{"lock":false,"pos":{"x":-30.2242,"y":1.6338,"z":-11.51},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"c7883c":{"lock":false,"pos":{"x":-25.0514,"y":1.7121,"z":-14.4709},"rot":{"x":0.0254,"y":30.0001,"z":179.9224}},"cb6782":{"lock":false,"pos":{"x":-31.7819,"y":1.6269,"z":3.8828},"rot":{"x":359.9455,"y":329.989,"z":359.9392}},"cbb9f5":{"lock":false,"pos":{"x":-33.5382,"y":1.6283,"z":0.1047},"rot":{"x":0.0799,"y":90.003,"z":359.9831}},"ccf7a9":{"lock":false,"pos":{"x":-23.6766,"y":1.6428,"z":-7.7},"rot":{"x":359.9201,"y":269.9997,"z":180.0168}},"cda035":{"lock":false,"pos":{"x":-15.6361103057861,"y":1.66888344287872,"z":0.00989916734397411},"rot":{"x":0.078995443880558,"y":269.9970703125,"z":359.983184814453}},"ce00f0":{"lock":false,"pos":{"x":-36.7731,"y":1.6633,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":180.0168}},"ce102e":{"lock":false,"pos":{"x":-17.1201,"y":1.6633,"z":11.46},"rot":{"x":359.9201,"y":269.9926,"z":180.0168}},"ce23c7":{"lock":false,"pos":{"x":-17.12,"y":1.6087,"z":11.46},"rot":{"x":359.9831,"y":-0.004,"z":359.9201}},"ceb4ac":{"lock":false,"pos":{"x":-28.9209,"y":1.7176,"z":-14.363},"rot":{"x":359.9455,"y":330.0001,"z":179.9392}},"cf0c00":{"lock":false,"pos":{"x":-12.0714,"y":1.6132,"z":4.3416},"rot":{"x":359.9201,"y":270.0012,"z":0.0168}},"cf3bf4":{"lock":false,"pos":{"x":-1.4656,"y":1.4756,"z":-26.9304},"rot":{"x":359.9201,"y":269.9989,"z":0.0169}},"cf40fc":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"cf4a62":{"lock":false,"pos":{"x":-22.2064895629883,"y":1.68026161193848,"z":7.57819843292236},"rot":{"x":359.919281005859,"y":270.001129150391,"z":0.0165986157953739}},"d0b0a3":{"lock":false,"pos":{"x":-36.7732,"y":1.6655,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":180.0168}},"d14543":{"lock":false,"pos":{"x":-4.3037,"y":1.4068,"z":14.6856},"rot":{"x":0.0169,"y":179.9964,"z":0.0803}},"d2eb25":{"lock":false,"pos":{"x":-23.6763,"y":1.6884,"z":7.5698},"rot":{"x":359.9185,"y":270.0043,"z":0.0158}},"d308d4":{"lock":false,"pos":{"x":-2.6886,"y":1.5973,"z":-5.0485},"rot":{"x":359.9197,"y":269.9951,"z":0.0168}},"d30e98":{"lock":false,"pos":{"x":-2.7246,"y":1.656,"z":0.3733},"rot":{"x":0.0168,"y":180,"z":0.0803}},"d3ae26":{"lock":false,"pos":{"x":-23.6764,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9993,"z":0.0169}},"d5b919":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9976,"z":0.0169}},"d68664":{"lock":false,"pos":{"x":-2.6886,"y":1.6287,"z":-5.0486},"rot":{"x":359.9197,"y":270.0041,"z":0.0168}},"d6e449":{"lock":false,"pos":{"x":12.2513,"y":1.4658,"z":4.6876},"rot":{"x":359.9201,"y":270.0106,"z":0.0169}},"d775de":{"lock":false,"pos":{"x":-2.6885,"y":1.6287,"z":-5.0496},"rot":{"x":0.0168,"y":180,"z":0.0803}},"d7c523":{"lock":false,"pos":{"x":-30.2242,"y":1.6372,"z":-0.0301},"rot":{"x":359.9201,"y":269.9998,"z":180.0168}},"d9037e":{"lock":false,"pos":{"x":-3.62380027770996,"y":1.6407071352005,"z":14.8200025558472},"rot":{"x":359.919738769531,"y":270.000091552734,"z":180.016830444336}},"d927d3":{"lock":false,"pos":{"x":-30.2242,"y":1.6394,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"dbdfa1":{"lock":false,"pos":{"x":-2.7246,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180,"z":0.0803}},"dc9168":{"lock":false,"pos":{"x":-26.9419,"y":1.6202,"z":3.9387},"rot":{"x":0.0446,"y":45.0005,"z":359.9316}},"dde8af":{"lock":false,"pos":{"x":-20.5824,"y":1.6146,"z":15.1047},"rot":{"x":359.92,"y":270.4175,"z":0.0163}},"ddf740":{"lock":false,"pos":{"x":-23.6765,"y":1.6247,"z":-11.51},"rot":{"x":359.9201,"y":269.9982,"z":180.0168}},"de311e":{"lock":false,"pos":{"x":-36.7732,"y":1.6463,"z":-0.03},"rot":{"x":359.9201,"y":269.9995,"z":180.0168}},"deb7fa":{"lock":false,"pos":{"x":-2.7248,"y":1.6208,"z":0.3733},"rot":{"x":0.0168,"y":180.0032,"z":0.0803}},"df2a30":{"lock":false,"pos":{"x":-30.2242,"y":1.6394,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"df4b70":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"df6781":{"lock":false,"pos":{"x":-33.7177,"y":1.6296,"z":3.9819},"rot":{"x":0.0446,"y":44.9972,"z":359.9316}},"df8f01":{"lock":false,"pos":{"x":-26.7663097381592,"y":1.6187549829483,"z":-0.0818684622645378},"rot":{"x":359.920104980469,"y":269.976593017578,"z":0.016977870836854}},"df91a7":{"lock":false,"pos":{"x":-11.9213,"y":1.6478,"z":28.3382},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"e17f3d":{"lock":false,"pos":{"x":-33.5812,"y":1.7294,"z":3.9031},"rot":{"x":0.0684,"y":134.9999,"z":180.0445}},"e28a88":{"lock":false,"pos":{"x":-32.3453,"y":1.7266,"z":0.264},"rot":{"x":0.0254,"y":30.0003,"z":179.9224}},"e3aa5c":{"lock":false,"pos":{"x":12.2517,"y":1.4709,"z":22.0767},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"e40b5e":{"lock":false,"pos":{"x":-33.4657,"y":1.6609,"z":7.4691},"rot":{"x":359.9201,"y":269.9972,"z":0.0168}},"e49027":{"lock":false,"pos":{"x":-3.9275,"y":1.7684,"z":5.7571},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}},"e58475":{"lock":false,"pos":{"x":-28.6475563049316,"y":1.70839071273804,"z":-0.0576328821480274},"rot":{"x":1.64902567863464,"y":270.001312255859,"z":0.0169164203107357}},"e81640":{"lock":false,"pos":{"x":-30.2259,"y":1.6542,"z":-0.0303},"rot":{"x":359.9201,"y":269.9984,"z":0.0168}},"e83b93":{"lock":false,"pos":{"x":-23.6765,"y":1.6314,"z":11.46},"rot":{"x":359.9201,"y":269.9985,"z":180.0168}},"e9d2f5":{"lock":false,"pos":{"x":-33.4028,"y":1.6405,"z":-3.9525},"rot":{"x":359.9201,"y":269.9982,"z":180.0168}},"eb094d":{"lock":false,"pos":{"x":-3.9273,"y":1.7984,"z":5.7572},"rot":{"x":359.9197,"y":270,"z":180.0168}},"eb1e0d":{"lock":false,"pos":{"x":-3.9275,"y":1.7396,"z":5.7571},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}},"eb677a":{"lock":false,"pos":{"x":-23.6765,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"ec1b56":{"lock":false,"pos":{"x":-23.6765003204346,"y":1.61560475826263,"z":3.85999989509583},"rot":{"x":0.0168418455868959,"y":179.998184204102,"z":0.0799393355846405}},"eccd5d":{"lock":false,"pos":{"x":0.4793,"y":1.6195,"z":-5.1104},"rot":{"x":0.0169,"y":179.986,"z":0.0803}},"ed811e":{"lock":false,"pos":{"x":-36.7732,"y":1.661,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"eda3e2":{"lock":false,"pos":{"x":-36.7731018066406,"y":1.63386702537537,"z":3.86000108718872},"rot":{"x":0.0168423820286989,"y":179.997940063477,"z":0.07996666431427}},"ee7d12":{"lock":false,"pos":{"x":-3.9274,"y":1.7877,"z":5.743},"rot":{"x":359.9197,"y":270.0052,"z":180.0168}},"ef14ab":{"lock":false,"pos":{"x":1.6995,"y":1.5583,"z":14.2782},"rot":{"x":359.9551,"y":225.0025,"z":0.0687}},"efb46a":{"lock":false,"pos":{"x":-11.9166,"y":1.6031,"z":-5.5701},"rot":{"x":359.9201,"y":270.0035,"z":0.1429}},"f153a0":{"lock":false,"pos":{"x":-2.6886,"y":1.5973,"z":-5.0485},"rot":{"x":0.0168,"y":179.9977,"z":0.0803}},"f1a996":{"lock":false,"pos":{"x":-33.5508,"y":1.6283,"z":0.1083},"rot":{"x":0.0799,"y":90.1043,"z":359.9832}},"f37775":{"lock":false,"pos":{"x":-3.19291043281555,"y":1.63545417785645,"z":15.3806056976318},"rot":{"x":359.919738769531,"y":269.99951171875,"z":0.01684027351439}},"f58e95":{"lock":false,"pos":{"x":1.696,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"f5db25":{"lock":false,"pos":{"x":-4.1775,"y":1.5321,"z":-19.107},"rot":{"x":359.9206,"y":269.9862,"z":1.8615}},"f6c645":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9975,"z":180.0168}},"f797c9":{"lock":false,"pos":{"x":-23.6765003204346,"y":1.6156051158905,"z":3.86000037193298},"rot":{"x":359.983154296875,"y":0.000157246773596853,"z":359.920074462891}},"f7dd31":{"lock":false,"pos":{"x":-15.6663131713867,"y":1.66663253307343,"z":-7.68120002746582},"rot":{"x":0.0790727958083153,"y":269.994262695313,"z":359.983215332031}},"f92015":{"lock":false,"pos":{"x":-23.6765,"y":1.6292,"z":3.86},"rot":{"x":359.9201,"y":269.9984,"z":180.0168}},"f9f1c8":{"lock":false,"pos":{"x":-2.6885,"y":1.6191,"z":-5.0485},"rot":{"x":0.0168,"y":179.9956,"z":0.0803}},"fa04c2":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0.0001,"z":359.92}},"fa1884":{"lock":false,"pos":{"x":-11.7427,"y":1.6031,"z":5.8325},"rot":{"x":359.9201,"y":270.0032,"z":0.0168}},"fcb3e4":{"lock":false,"pos":{"x":-23.6763,"y":1.684,"z":-7.7002},"rot":{"x":359.9186,"y":270.0033,"z":0.0158}},"fe3b58":{"lock":false,"pos":{"x":-31.9286,"y":1.6226,"z":-11.587},"rot":{"x":359.9455,"y":329.9887,"z":359.9392}},"ff051b":{"lock":false,"pos":{"x":-5.6891,"y":1.4994,"z":-14.2727},"rot":{"x":0.0013,"y":359.939,"z":6.2808}},"ff4a1d":{"lock":false,"pos":{"x":-3.9563,"y":1.5975,"z":-10.4423},"rot":{"x":359.9197,"y":269.996,"z":0.0168}},"ffa446":{"lock":false,"pos":{"x":-36.7732,"y":1.6633,"z":-0.03},"rot":{"x":359.9201,"y":269.9972,"z":0.0168}},"fff605":{"lock":false,"pos":{"x":-2.7248,"y":1.6208,"z":0.3733},"rot":{"x":359.9197,"y":270.0245,"z":0.0168}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Ages Unwound @@ -62,9 +62,9 @@ Transform: posX: 18.63 posY: 1.85 posZ: 24.43 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Alice in Wonderland 39916d.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Alice in Wonderland 39916d.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Alice in Wonderland 39916d.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Alice in Wonderland 39916d.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Alice in Wonderland 39916d.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Alice in Wonderland 39916d.yaml index e875d215f..df54fdd52 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Alice in Wonderland 39916d.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Alice in Wonderland 39916d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1478823218929917964/80063921C2355FE26816A0E40F88D31F9EF5C4A6/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Alice in Wonderland 39916d.ttslua' -LuaScriptState: '{"ml":{"0916b6":{"lock":false,"pos":{"x":12.2601,"y":1.4609,"z":-12.0168},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"18aa54":{"lock":false,"pos":{"x":12.2578,"y":1.4727,"z":27.9861},"rot":{"x":359.9201,"y":270.0804,"z":0.0168}},"1cc5a6":{"lock":false,"pos":{"x":12.2488,"y":1.29,"z":35.9871},"rot":{"x":359.9831,"y":0.0028,"z":359.92}},"219a80":{"lock":false,"pos":{"x":4.3697,"y":1.5643,"z":-38.8587},"rot":{"x":-0.0004,"y":90.0462,"z":0.439}},"2ec188":{"lock":false,"pos":{"x":12.2496,"y":1.2688,"z":-36.0141},"rot":{"x":359.9831,"y":359.9885,"z":359.92}},"8d88c8":{"lock":false,"pos":{"x":12.2599,"y":1.4679,"z":11.9849},"rot":{"x":359.9201,"y":270.0313,"z":0.0168}},"8eb793":{"lock":false,"pos":{"x":12.2592,"y":1.4656,"z":3.9839},"rot":{"x":359.9201,"y":270.001,"z":0.0169}},"952572":{"lock":false,"pos":{"x":12.2575,"y":1.4703,"z":19.9857},"rot":{"x":359.9201,"y":270.0386,"z":0.0168}},"9e33a0":{"lock":false,"pos":{"x":12.2582,"y":1.4632,"z":-4.0158},"rot":{"x":359.9201,"y":270.0062,"z":0.0169}},"b5928a":{"lock":false,"pos":{"x":-3.6881,"y":1.5822,"z":-15.0624},"rot":{"x":359.9198,"y":269.9666,"z":0.0169}},"bd556e":{"lock":false,"pos":{"x":12.2593,"y":1.4585,"z":-20.0202},"rot":{"x":359.9201,"y":270.0686,"z":0.0168}},"dddf97":{"lock":false,"pos":{"x":-5.4661,"y":1.5,"z":-42.0169},"rot":{"x":0,"y":270.0246,"z":0}},"e6bb63":{"lock":false,"pos":{"x":12.2572,"y":1.4562,"z":-28.0186},"rot":{"x":359.9201,"y":270.0342,"z":0.0168}},"eda22b":{"lock":false,"pos":{"x":-1.4103,"y":1.5756,"z":-26.7181},"rot":{"x":359.9202,"y":269.6949,"z":0.0173}},"f22477":{"lock":false,"pos":{"x":8.444,"y":1.5098,"z":-33.462},"rot":{"x":359.9201,"y":270.0056,"z":0.0169}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Alice in Wonderland @@ -63,9 +63,9 @@ Transform: posX: 15.31 posY: 1.82 posZ: -2.2 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Betrayal at the Mountains of Madness 0.8.4 ef939a.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Betrayal at the Mountains of Madness 0.8.4 ef939a.ttslua deleted file mode 100644 index d25f21689..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Betrayal at the Mountains of Madness 0.8.4 ef939a.ttslua +++ /dev/null @@ -1,22 +0,0 @@ -function onload(saved_data) - createDownloadButton() -end - - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,6}, rotation={0,0,0}, height=500, width=1600, - font_size=350, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, -function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Betrayal at the Mountains of Madness 0.8.4 ef939a.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Betrayal at the Mountains of Madness 0.8.4 ef939a.yaml deleted file mode 100644 index a2a190194..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Betrayal at the Mountains of Madness 0.8.4 ef939a.yaml +++ /dev/null @@ -1,58 +0,0 @@ -AltLookAngle: - x: 0 - y: 0 - z: 0 -Autoraise: true -ColorDiffuse: - a: 0.27451 - b: 1 - g: 1 - r: 1 -CustomMesh: - CastShadows: true - ColliderURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_COL.obj - Convex: true - CustomShader: - FresnelStrength: 0 - SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1479949766318759506/9BAB9C45ECB33AC5A0F83806B5EF79A6D89C1D31/ - MaterialIndex: 3 - MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj - NormalURL: '' - TypeIndex: 0 -Description: '' -DragSelectable: true -GMNotes: fancreations/campaign_betrayal_at_mountains.json -GUID: ef939a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Model Betrayal at the Mountains of Madness 0.8.4 ef939a.ttslua' -LuaScriptState: '{"ml":{"00d19a":{"lock":false,"pos":{"x":-36.6934394836426,"y":1.78606903553009,"z":11.7293663024902},"rot":{"x":359.920104980469,"y":270.001678466797,"z":0.0168516132980585}},"026bb9":{"lock":false,"pos":{"x":-29.9402446746826,"y":1.76979196071625,"z":-11.6138305664063},"rot":{"x":359.920104980469,"y":270.001831054688,"z":0.01674441434443}},"0326ec":{"lock":false,"pos":{"x":-3.92767333984375,"y":1.76844882965088,"z":5.75714778900146},"rot":{"x":359.919738769531,"y":270,"z":180.016815185547}},"03f2d2":{"lock":false,"pos":{"x":-19.198823928833,"y":1.63660669326782,"z":-7.41333341598511},"rot":{"x":359.920104980469,"y":269.999938964844,"z":0.0168411899358034}},"04c355":{"lock":false,"pos":{"x":-30.4029121398926,"y":1.77261936664581,"z":-4.18756866455078},"rot":{"x":359.920104980469,"y":270.001373291016,"z":0.0168157480657101}},"0b3f66":{"lock":false,"pos":{"x":-30.2242889404297,"y":1.63719701766968,"z":-0.0299866534769535},"rot":{"x":359.920104980469,"y":270.000183105469,"z":0.0168393161147833}},"0c7bc9":{"lock":false,"pos":{"x":-23.676456451416,"y":1.6280665397644,"z":-0.0300143845379353},"rot":{"x":359.920104980469,"y":269.999938964844,"z":0.016839686781168}},"0f3a96":{"lock":false,"pos":{"x":-34.2316017150879,"y":1.63262534141541,"z":11.6933040618896},"rot":{"x":359.955413818359,"y":224.999816894531,"z":0.0683767721056938}},"0f9675":{"lock":false,"pos":{"x":-17.1093864440918,"y":1.66055345535278,"z":-7.68931484222412},"rot":{"x":359.920104980469,"y":270.000030517578,"z":0.0168509911745787}},"104e07":{"lock":false,"pos":{"x":-23.6765060424805,"y":1.62360739707947,"z":-15.2800035476685},"rot":{"x":359.920623779297,"y":269.999847412109,"z":0.0172669123858213}},"127b42":{"lock":false,"pos":{"x":-23.6765594482422,"y":1.6156051158905,"z":3.86000800132751},"rot":{"x":359.983154296875,"y":0.00569404289126396,"z":359.920074462891}},"16562e":{"lock":false,"pos":{"x":-3.778564453125,"y":1.5823141336441,"z":-15.1127977371216},"rot":{"x":359.919738769531,"y":269.995697021484,"z":0.0168447867035866}},"1686fa":{"lock":false,"pos":{"x":-13.5306854248047,"y":1.61670362949371,"z":9.44509124755859},"rot":{"x":359.920104980469,"y":269.982208251953,"z":0.0168643463402987}},"17a1c0":{"lock":false,"pos":{"x":-5.47325468063354,"y":1.59320950508118,"z":13.8895883560181},"rot":{"x":359.919738769531,"y":270.003631591797,"z":0.0168438944965601}},"184c04":{"lock":false,"pos":{"x":-30.1927070617676,"y":1.77478229999542,"z":4.16888952255249},"rot":{"x":359.920104980469,"y":270.027770996094,"z":0.0168158337473869}},"19ce01":{"lock":false,"pos":{"x":-2.72474837303162,"y":1.63038861751556,"z":0.373418718576431},"rot":{"x":0.0168451704084873,"y":179.99284362793,"z":0.0802551209926605}},"1a136d":{"lock":false,"pos":{"x":-3.95599365234375,"y":1.59753942489624,"z":-10.441258430481},"rot":{"x":359.919738769531,"y":270.000030517578,"z":0.0168370809406042}},"1b4fad":{"lock":false,"pos":{"x":-33.1410827636719,"y":1.65547871589661,"z":-0.0487568117678165},"rot":{"x":0.452195674180985,"y":269.997894287109,"z":0.0168655049055815}},"1c3217":{"lock":false,"pos":{"x":-30.2241725921631,"y":1.6371967792511,"z":-0.0300170015543699},"rot":{"x":359.920104980469,"y":270,"z":0.0168396662920713}},"1f3d04":{"lock":false,"pos":{"x":-2.68847250938416,"y":1.59734869003296,"z":-5.04854679107666},"rot":{"x":0.016828827559948,"y":180.005096435547,"z":0.0802566483616829}},"1f7e6e":{"lock":false,"pos":{"x":-30.2241764068604,"y":1.63834011554718,"z":3.85998702049255},"rot":{"x":359.920104980469,"y":269.999755859375,"z":0.0168400518596172}},"247aab":{"lock":false,"pos":{"x":15.2989015579224,"y":1.45448100566864,"z":-19.3576030731201},"rot":{"x":359.920135498047,"y":270,"z":0.0168734509497881}},"27107a":{"lock":false,"pos":{"x":-3.95598721504211,"y":1.59753942489624,"z":-10.4411535263062},"rot":{"x":359.919738769531,"y":269.999969482422,"z":0.016837241128087}},"2a5738":{"lock":false,"pos":{"x":-20.5369892120361,"y":1.61009585857391,"z":0.0111605348065495},"rot":{"x":359.920104980469,"y":269.999816894531,"z":0.0168679878115654}},"2b06f0":{"lock":false,"pos":{"x":-24.9242305755615,"y":1.63540399074554,"z":-1.29638540744781},"rot":{"x":359.978332519531,"y":269.899169921875,"z":2.22956490516663}},"2bca7f":{"lock":false,"pos":{"x":-12.0200004577637,"y":1.65759384632111,"z":6.76927661895752},"rot":{"x":359.920104980469,"y":270.000274658203,"z":0.0168495122343302}},"2c6d3b":{"lock":false,"pos":{"x":-30.2241992950439,"y":1.64166986942291,"z":15.189998626709},"rot":{"x":359.920104980469,"y":269.999847412109,"z":0.0168398693203926}},"2dea23":{"lock":false,"pos":{"x":-19.2135334014893,"y":1.63872611522675,"z":-0.271478444337845},"rot":{"x":359.920104980469,"y":270.019470214844,"z":0.0168139021843672}},"2fa817":{"lock":false,"pos":{"x":-23.4853191375732,"y":1.76775705814362,"z":12.08873462677},"rot":{"x":359.920135498047,"y":270.001556396484,"z":0.0168066136538982}},"306c50":{"lock":false,"pos":{"x":-23.6764965057373,"y":1.63253951072693,"z":15.1899976730347},"rot":{"x":359.920104980469,"y":269.99951171875,"z":0.0168402437120676}},"30b2c0":{"lock":false,"pos":{"x":-30.2242870330811,"y":1.63271534442902,"z":-15.2800092697144},"rot":{"x":359.920562744141,"y":269.999603271484,"z":0.0161979831755161}},"3359db":{"lock":false,"pos":{"x":-32.8963012695313,"y":1.62404108047485,"z":-11.1805028915405},"rot":{"x":359.931579589844,"y":314.999908447266,"z":359.955413818359}},"33cf09":{"lock":false,"pos":{"x":-36.7732353210449,"y":1.64189267158508,"z":-15.2800188064575},"rot":{"x":359.920715332031,"y":269.999481201172,"z":0.0183802768588066}},"33d465":{"lock":false,"pos":{"x":-2.62676882743835,"y":1.39977955818176,"z":-1.11660575866699},"rot":{"x":359.983154296875,"y":2.30986443057191E-05,"z":359.919677734375}},"357354":{"lock":false,"pos":{"x":-24.7442150115967,"y":1.7696293592453,"z":12.4872913360596},"rot":{"x":359.920104980469,"y":270.001190185547,"z":0.0168757438659668}},"360107":{"lock":false,"pos":{"x":-4.93661975860596,"y":1.6425005197525,"z":14.6651029586792},"rot":{"x":359.919738769531,"y":270,"z":180.016830444336}},"3702a2":{"lock":false,"pos":{"x":-2.72465229034424,"y":1.62557435035706,"z":0.373309999704361},"rot":{"x":0.0168577060103416,"y":179.984176635742,"z":0.0802514851093292}},"373f94":{"lock":false,"pos":{"x":-14.2823753356934,"y":1.60931038856506,"z":12.8869428634644},"rot":{"x":359.920104980469,"y":270.005920410156,"z":0.0887472331523895}},"392d3e":{"lock":false,"pos":{"x":-36.7731018066406,"y":1.64856243133545,"z":7.5699987411499},"rot":{"x":359.920104980469,"y":269.997741699219,"z":0.0168427955359221}},"39b7e5":{"lock":false,"pos":{"x":15.2789011001587,"y":1.46524322032928,"z":17.0972995758057},"rot":{"x":359.920135498047,"y":269.999389648438,"z":0.0168747808784246}},"39d3b6":{"lock":false,"pos":{"x":-3.62809991836548,"y":1.58220231533051,"z":-14.7738103866577},"rot":{"x":359.919738769531,"y":270.013854980469,"z":0.0168185215443373}},"3a4050":{"lock":false,"pos":{"x":-27.228099822998,"y":1.62276828289032,"z":11.3825006484985},"rot":{"x":359.931579589844,"y":315.000122070313,"z":359.955413818359}},"3b60c1":{"lock":false,"pos":{"x":-30.2243003845215,"y":1.62582564353943,"z":7.56999969482422},"rot":{"x":359.920104980469,"y":270.009216308594,"z":0.0168544296175241}},"3c838d":{"lock":false,"pos":{"x":-11.9238615036011,"y":1.65971231460571,"z":7.44205474853516},"rot":{"x":359.920104980469,"y":269.999481201172,"z":0.0168435890227556}},"3d5b6e":{"lock":false,"pos":{"x":-17.1200408935547,"y":1.66476213932037,"z":-0.0299920253455639},"rot":{"x":359.920104980469,"y":270.025451660156,"z":0.0168073829263449}},"3d74a9":{"lock":false,"pos":{"x":-30.224271774292,"y":1.62247550487518,"z":-3.82999110221863},"rot":{"x":359.983154296875,"y":0.00565720442682505,"z":359.920043945313}},"3d771d":{"lock":false,"pos":{"x":-3.86219477653503,"y":1.58226752281189,"z":-15.6675100326538},"rot":{"x":359.919738769531,"y":270.019897460938,"z":0.0168101079761982}},"3f3098":{"lock":false,"pos":{"x":-29.5331211090088,"y":1.77582204341888,"z":10.8370208740234},"rot":{"x":359.920074462891,"y":270.001342773438,"z":0.0167114734649658}},"429c04":{"lock":false,"pos":{"x":-5.65999460220337,"y":1.59417402744293,"z":16.2830371856689},"rot":{"x":0.0168313961476088,"y":179.999877929688,"z":0.0802587419748306}},"436836":{"lock":false,"pos":{"x":-2.48159146308899,"y":1.39956986904144,"z":-1.13640820980072},"rot":{"x":359.983154296875,"y":7.58510577725247E-05,"z":359.919677734375}},"44c342":{"lock":false,"pos":{"x":-23.6765213012695,"y":1.62581241130829,"z":-7.70001602172852},"rot":{"x":359.920104980469,"y":269.99951171875,"z":0.0168402977287769}},"457419":{"lock":false,"pos":{"x":-17.1147937774658,"y":1.65833163261414,"z":-15.2746601104736},"rot":{"x":359.920104980469,"y":269.999481201172,"z":0.0168520100414753}},"46b30a":{"lock":false,"pos":{"x":-24.0696392059326,"y":1.76390063762665,"z":-3.80506658554077},"rot":{"x":359.920104980469,"y":270.001312255859,"z":0.016846502199769}},"477094":{"lock":false,"pos":{"x":15.3148012161255,"y":1.45663189888,"z":-11.9785032272339},"rot":{"x":359.920135498047,"y":270.000091552734,"z":0.0168740842491388}},"47aa44":{"lock":false,"pos":{"x":-5.65999984741211,"y":1.59379947185516,"z":15.0073289871216},"rot":{"x":359.983154296875,"y":0.000168540776940063,"z":359.919738769531}},"47b626":{"lock":false,"pos":{"x":-43.3647575378418,"y":1.70389008522034,"z":15.1953573226929},"rot":{"x":359.920104980469,"y":270.000885009766,"z":0.0168442670255899}},"480325":{"lock":false,"pos":{"x":-5.99066162109375,"y":1.69096922874451,"z":14.2936716079712},"rot":{"x":0.0479598082602024,"y":89.9961471557617,"z":-0.00540546141564846}},"48aa10":{"lock":false,"pos":{"x":-17.1200084686279,"y":1.61666977405548,"z":-7.70001602172852},"rot":{"x":359.920104980469,"y":269.999969482422,"z":0.0168397333472967}},"495eae":{"lock":false,"pos":{"x":-17.1200408935547,"y":1.6086962223053,"z":11.4600086212158},"rot":{"x":359.920104980469,"y":270.004241943359,"z":0.0168335791677237}},"496013":{"lock":false,"pos":{"x":-23.6765727996826,"y":1.62358474731445,"z":-15.2800149917603},"rot":{"x":359.920104980469,"y":269.999908447266,"z":0.0168397631496191}},"4a056b":{"lock":false,"pos":{"x":-6.86820650100708,"y":1.59542381763458,"z":14.775857925415},"rot":{"x":359.983154296875,"y":-0.00199077953584492,"z":359.919738769531}},"4bccef":{"lock":false,"pos":{"x":-43.9187240600586,"y":1.69622933864594,"z":-13.5003805160522},"rot":{"x":359.920104980469,"y":270,"z":0.016851807013154}},"4bec3c":{"lock":false,"pos":{"x":-43.3647994995117,"y":1.69493532180786,"z":-15.2746620178223},"rot":{"x":359.920104980469,"y":269.999359130859,"z":0.0168498121201992}},"5185cc":{"lock":false,"pos":{"x":-27.4687023162842,"y":1.61969769001007,"z":-0.206716448068619},"rot":{"x":359.920104980469,"y":270,"z":0.0168671440333128}},"556e96":{"lock":false,"pos":{"x":-3.92769265174866,"y":1.74437856674194,"z":5.75714778900146},"rot":{"x":359.919738769531,"y":270,"z":180.016815185547}},"567a44":{"lock":false,"pos":{"x":-22.6210269927979,"y":1.76160717010498,"z":-4.73528909683228},"rot":{"x":359.920104980469,"y":270.001098632813,"z":0.0168349165469408}},"57ff37":{"lock":false,"pos":{"x":-24.4017162322998,"y":1.76877474784851,"z":11.2043485641479},"rot":{"x":359.920074462891,"y":270.001159667969,"z":0.0169201232492924}},"5ab2b6":{"lock":false,"pos":{"x":1.69638311862946,"y":1.55831694602966,"z":14.2788572311401},"rot":{"x":359.955139160156,"y":224.997924804688,"z":0.0686725005507469}},"5aca66":{"lock":false,"pos":{"x":-3.92755842208862,"y":1.72993612289429,"z":5.75711727142334},"rot":{"x":359.919738769531,"y":269.999969482422,"z":180.016815185547}},"5bf732":{"lock":false,"pos":{"x":-3.95589447021484,"y":1.59753930568695,"z":-10.441180229187},"rot":{"x":359.919738769531,"y":270.003448486328,"z":0.0168323330581188}},"5c6098":{"lock":false,"pos":{"x":-11.8456468582153,"y":1.65209102630615,"z":-11.5084714889526},"rot":{"x":359.920104980469,"y":269.999694824219,"z":0.0168492347002029}},"614563":{"lock":false,"pos":{"x":1.69561696052551,"y":1.5583188533783,"z":14.278736114502},"rot":{"x":359.955139160156,"y":224.998016357422,"z":0.0686735212802887}},"617f07":{"lock":false,"pos":{"x":-17.1200141906738,"y":1.65960693359375,"z":15.1899967193604},"rot":{"x":359.920104980469,"y":270.014770507813,"z":0.0168221797794104}},"61eee2":{"lock":false,"pos":{"x":-36.2253150939941,"y":1.78294146060944,"z":3.30846977233887},"rot":{"x":359.920104980469,"y":270.001342773438,"z":0.0168270375579596}},"62791a":{"lock":false,"pos":{"x":-27.0009994506836,"y":1.62018239498138,"z":3.66190147399902},"rot":{"x":359.955413818359,"y":224.999984741211,"z":0.0683809816837311}},"654916":{"lock":false,"pos":{"x":-13.361985206604,"y":1.61765897274017,"z":13.4964761734009},"rot":{"x":359.920104980469,"y":269.987731933594,"z":0.0168566945940256}},"664378":{"lock":false,"pos":{"x":-12.0199060440063,"y":1.65369355678558,"z":-6.8824896812439},"rot":{"x":359.920104980469,"y":270.000061035156,"z":0.0168544203042984}},"68da69":{"lock":false,"pos":{"x":-2.72472810745239,"y":1.62076032161713,"z":0.372717529535294},"rot":{"x":0.0174714233726263,"y":179.545700073242,"z":0.0801199153065681}},"6c9c95":{"lock":false,"pos":{"x":-5.18622922897339,"y":1.64189851284027,"z":14.9168252944946},"rot":{"x":0.0781028941273689,"y":89.9994430541992,"z":359.989471435547}},"70b534":{"lock":false,"pos":{"x":-11.5784,"y":1.7925,"z":26.5447},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-20.366189956665,"y":1.60755860805511,"z":-7.81213760375977},"rot":{"x":359.920104980469,"y":270.011810302734,"z":0.0168506354093552}},"7556a4":{"lock":false,"pos":{"x":-2.68849968910217,"y":1.59734869003296,"z":-5.04849910736084},"rot":{"x":0.0168360080569983,"y":180,"z":0.0802551135420799}},"755fc0":{"lock":false,"pos":{"x":-36.7731170654297,"y":1.64632892608643,"z":-0.0300152152776718},"rot":{"x":359.920104980469,"y":269.99951171875,"z":0.0168402697890997}},"785a9e":{"lock":false,"pos":{"x":-7.88368320465088,"y":1.61056900024414,"z":15.2385272979736},"rot":{"x":359.921600341797,"y":270.003845214844,"z":0.0167044159024954}},"792349":{"lock":false,"pos":{"x":15.2765007019043,"y":1.45884120464325,"z":-4.65600061416626},"rot":{"x":359.920135498047,"y":269.999786376953,"z":0.0168749578297138}},"7959be":{"lock":false,"pos":{"x":-6.91199398040771,"y":1.5950688123703,"z":13.3590431213379},"rot":{"x":359.983154296875,"y":359.978942871094,"z":359.919738769531}},"79a6f9":{"lock":false,"pos":{"x":15.371000289917,"y":1.45230603218079,"z":-26.4016036987305},"rot":{"x":359.920135498047,"y":270.003143310547,"z":0.0168696343898773}},"7ac282":{"lock":false,"pos":{"x":-23.7311782836914,"y":1.76116323471069,"z":-11.5141897201538},"rot":{"x":359.920104980469,"y":270.0009765625,"z":0.0168525502085686}},"7c4014":{"lock":false,"pos":{"x":-3.95590496063232,"y":1.59753930568695,"z":-10.441180229187},"rot":{"x":359.919738769531,"y":269.998413085938,"z":0.0168393962085247}},"7d08d0":{"lock":false,"pos":{"x":-2.68858337402344,"y":1.6191166639328,"z":-5.0485200881958},"rot":{"x":0.0168415699154139,"y":179.995513916016,"z":0.0802554786205292}},"7e160e":{"lock":false,"pos":{"x":-27.0879993438721,"y":1.77365863323212,"z":15.0756101608276},"rot":{"x":359.920104980469,"y":270.000518798828,"z":0.0168688949197531}},"7e3c60":{"lock":false,"pos":{"x":-15.5948553085327,"y":1.66510093212128,"z":-3.74399757385254},"rot":{"x":0.0799026787281036,"y":90.0193481445313,"z":359.983184814453}},"8378e1":{"lock":false,"pos":{"x":15.2491006851196,"y":1.46100044250488,"z":2.54710006713867},"rot":{"x":359.920135498047,"y":270.001342773438,"z":0.0168719943612814}},"859ff0":{"lock":false,"pos":{"x":-30.2241668701172,"y":1.6371967792511,"z":-0.0300171375274658},"rot":{"x":359.920104980469,"y":269.999481201172,"z":0.0168403070420027}},"863c96":{"lock":false,"pos":{"x":-30.2242908477783,"y":1.63715088367462,"z":-0.0442854017019272},"rot":{"x":359.920532226563,"y":270.000671386719,"z":0.0140526294708252}},"86e447":{"lock":false,"pos":{"x":-36.4723968505859,"y":1.78122019767761,"z":-3.72188901901245},"rot":{"x":359.920104980469,"y":270.001342773438,"z":0.0168581400066614}},"8984ad":{"lock":false,"pos":{"x":-23.6767978668213,"y":1.62581276893616,"z":-7.70000028610229},"rot":{"x":359.920104980469,"y":270.019287109375,"z":0.0168125182390213}},"8a1786":{"lock":false,"pos":{"x":-29.2802066802979,"y":1.77121841907501,"z":-3.62734723091125},"rot":{"x":359.920104980469,"y":270.001281738281,"z":0.0168429110199213}},"8a4092":{"lock":false,"pos":{"x":-3.95589399337769,"y":1.59753930568695,"z":-10.4411811828613},"rot":{"x":359.919738769531,"y":269.999847412109,"z":0.0168374720960855}},"8ad0a3":{"lock":false,"pos":{"x":-3.95589399337769,"y":1.59753930568695,"z":-10.441180229187},"rot":{"x":359.919738769531,"y":270.009735107422,"z":0.0168235301971436}},"8bde30":{"lock":false,"pos":{"x":-6.96000099182129,"y":1.59583497047424,"z":15.7375001907349},"rot":{"x":359.983215332031,"y":0.0285408888012171,"z":359.919738769531}},"8cbe29":{"lock":false,"pos":{"x":-3.92764377593994,"y":1.76844871044159,"z":5.75713920593262},"rot":{"x":359.919738769531,"y":269.999908447266,"z":180.016815185547}},"8ea37f":{"lock":false,"pos":{"x":-23.6523628234863,"y":1.76558470726013,"z":3.9050920009613},"rot":{"x":359.920104980469,"y":270.001098632813,"z":0.0168053023517132}},"91c7d0":{"lock":false,"pos":{"x":-43.6087455749512,"y":1.70360279083252,"z":13.0591011047363},"rot":{"x":359.920104980469,"y":270.000061035156,"z":0.0168486852198839}},"91e019":{"lock":false,"pos":{"x":-3.89826369285584,"y":1.59676170349121,"z":-12.8125944137573},"rot":{"x":359.919738769531,"y":270.000610351563,"z":180.016830444336}},"921a9b":{"lock":false,"pos":{"x":-23.6764392852783,"y":1.62806642055511,"z":-0.0300293453037739},"rot":{"x":359.920104980469,"y":270,"z":0.0168396234512329}},"9336b4":{"lock":false,"pos":{"x":-2.68848180770874,"y":1.61911654472351,"z":-5.04854345321655},"rot":{"x":0.0168223418295383,"y":180.009521484375,"z":0.0802588611841202}},"99972a":{"lock":false,"pos":{"x":-2.11983871459961,"y":1.40336513519287,"z":13.5037107467651},"rot":{"x":359.983154296875,"y":0.000808796321507543,"z":359.919677734375}},"9ae75c":{"lock":false,"pos":{"x":-30.2241859436035,"y":1.63943040370941,"z":7.56998586654663},"rot":{"x":359.920104980469,"y":269.99951171875,"z":0.0168402697890997}},"9c140b":{"lock":false,"pos":{"x":-26.767599105835,"y":1.61765778064728,"z":-3.82140040397644},"rot":{"x":359.931579589844,"y":314.977905273438,"z":359.955444335938}},"9c6651":{"lock":false,"pos":{"x":-30.2298126220703,"y":1.49485957622528,"z":-7.66663932800293},"rot":{"x":0.397051692008972,"y":269.543975830078,"z":352.934112548828}},"9ed77c":{"lock":false,"pos":{"x":-10.890398979187,"y":1.65856766700745,"z":15.0608711242676},"rot":{"x":359.920104980469,"y":269.999938964844,"z":0.0168520919978619}},"a17a82":{"lock":false,"pos":{"x":-30.2242546081543,"y":1.6416699886322,"z":15.1899929046631},"rot":{"x":359.920104980469,"y":269.999267578125,"z":0.0168407261371613}},"a358fc":{"lock":false,"pos":{"x":-30.2241230010986,"y":1.63494253158569,"z":-7.70027875900269},"rot":{"x":359.920104980469,"y":269.998382568359,"z":0.0168418847024441}},"a359d6":{"lock":false,"pos":{"x":-11.8673753738403,"y":1.60140740871429,"z":11.5826091766357},"rot":{"x":359.920104980469,"y":270,"z":0.0168513767421246}},"a45247":{"lock":false,"pos":{"x":1.69638359546661,"y":1.5583176612854,"z":14.2788581848145},"rot":{"x":359.955139160156,"y":224.997909545898,"z":0.0686735063791275}},"a90516":{"lock":false,"pos":{"x":-2.68857192993164,"y":1.61430263519287,"z":-5.04852151870728},"rot":{"x":0.0167915709316731,"y":180.031509399414,"z":0.0802650526165962}},"abef2c":{"lock":false,"pos":{"x":-17.1200523376465,"y":1.61892402172089,"z":-0.0299869459122419},"rot":{"x":359.920104980469,"y":270.003479003906,"z":0.0168348085135221}},"ad0d44":{"lock":false,"pos":{"x":1.69638121128082,"y":1.55831694602966,"z":14.2788515090942},"rot":{"x":359.955139160156,"y":224.997970581055,"z":0.0686735138297081}},"aeb649":{"lock":false,"pos":{"x":-2.7246994972229,"y":1.6159462928772,"z":0.373300731182098},"rot":{"x":0.0168358944356442,"y":179.999893188477,"z":0.0802557542920113}},"b228a8":{"lock":false,"pos":{"x":-36.4113616943359,"y":1.78363132476807,"z":4.77336597442627},"rot":{"x":359.920104980469,"y":269.987274169922,"z":0.0168488305062056}},"b4e0a1":{"lock":false,"pos":{"x":-17.1199150085449,"y":1.62115740776062,"z":7.56997871398926},"rot":{"x":359.920104980469,"y":270.000061035156,"z":180.016830444336}},"b6b9b7":{"lock":false,"pos":{"x":-36.7732009887695,"y":1.6440749168396,"z":-7.70000267028809},"rot":{"x":359.920104980469,"y":269.999816894531,"z":0.0168398804962635}},"b6e32d":{"lock":false,"pos":{"x":-37.1079788208008,"y":1.77959871292114,"z":-12.2537422180176},"rot":{"x":359.920135498047,"y":270.001525878906,"z":0.0168745927512646}},"b71c73":{"lock":false,"pos":{"x":-14.3876991271973,"y":1.60447669029236,"z":10.0663480758667},"rot":{"x":359.920104980469,"y":269.999969482422,"z":0.0168395526707172}},"b7b094":{"lock":false,"pos":{"x":-30.2243347167969,"y":1.65638446807861,"z":7.5700216293335},"rot":{"x":359.920104980469,"y":269.999084472656,"z":0.0168434344232082}},"b8638a":{"lock":false,"pos":{"x":-2.68847942352295,"y":1.59734869003296,"z":-5.04854345321655},"rot":{"x":0.0168538186699152,"y":179.987243652344,"z":0.0802513435482979}},"b909c7":{"lock":false,"pos":{"x":-3.92772746086121,"y":1.76844894886017,"z":5.75715303421021},"rot":{"x":359.919738769531,"y":270.000061035156,"z":180.016815185547}},"b91e4c":{"lock":false,"pos":{"x":-23.6765251159668,"y":1.62581241130829,"z":-7.70001459121704},"rot":{"x":359.920104980469,"y":269.999938964844,"z":0.0168397128582001}},"bbb70a":{"lock":false,"pos":{"x":-3.85586786270142,"y":1.58250105381012,"z":-14.8428268432617},"rot":{"x":359.919738769531,"y":270.030364990234,"z":0.0167953297495842}},"c0496c":{"lock":false,"pos":{"x":-2.49824857711792,"y":1.40054845809937,"z":2.11387157440186},"rot":{"x":359.983154296875,"y":3.16821060550865E-05,"z":359.919677734375}},"c0d0df":{"lock":false,"pos":{"x":-36.7731819152832,"y":1.64407479763031,"z":-7.70002794265747},"rot":{"x":359.920104980469,"y":269.999725341797,"z":0.0168400630354881}},"c150be":{"lock":false,"pos":{"x":-23.6765003204346,"y":1.63030004501343,"z":7.5699987411499},"rot":{"x":359.920104980469,"y":269.999816894531,"z":0.0168398134410381}},"c31a6c":{"lock":false,"pos":{"x":-17.1093368530273,"y":1.66504108905792,"z":7.5806941986084},"rot":{"x":359.920104980469,"y":270.000030517578,"z":0.0168491918593645}},"c67431":{"lock":false,"pos":{"x":-23.6765727996826,"y":1.62806665897369,"z":-0.0299873240292072},"rot":{"x":359.920104980469,"y":270.001831054688,"z":0.016837066039443}},"cace7f":{"lock":false,"pos":{"x":-3.42462277412415,"y":1.58195745944977,"z":-14.6367473602295},"rot":{"x":359.919738769531,"y":270.013854980469,"z":0.0168184246867895}},"ce45f7":{"lock":false,"pos":{"x":-2.67772579193115,"y":1.40076732635498,"z":2.00538849830627},"rot":{"x":359.983154296875,"y":0.000144133737194352,"z":359.919677734375}},"d1bf92":{"lock":false,"pos":{"x":-3.9276008605957,"y":1.72993648052216,"z":5.7577018737793},"rot":{"x":359.919738769531,"y":269.99951171875,"z":180.016815185547}},"d28cd1":{"lock":false,"pos":{"x":-30.2241992950439,"y":1.63719689846039,"z":-0.0300004538148642},"rot":{"x":359.920104980469,"y":269.999755859375,"z":0.0168399680405855}},"d38aeb":{"lock":false,"pos":{"x":-4.2873387336731,"y":1.47145700454712,"z":14.5038290023804},"rot":{"x":359.983123779297,"y":-0.000269911222858354,"z":359.919616699219}},"d3b120":{"lock":false,"pos":{"x":-2.72477197647095,"y":1.62557470798492,"z":0.373721837997437},"rot":{"x":0.0168351754546165,"y":180.000259399414,"z":0.0802561789751053}},"d49bfd":{"lock":false,"pos":{"x":-37.5114936828613,"y":1.78494012355804,"z":4.00672578811646},"rot":{"x":359.920257568359,"y":269.487274169922,"z":0.0175487641245127}},"d5b3cb":{"lock":false,"pos":{"x":-17.1199398040771,"y":1.60869610309601,"z":11.4599885940552},"rot":{"x":359.920104980469,"y":269.96923828125,"z":0.0168823394924402}},"d5f792":{"lock":false,"pos":{"x":-33.2551002502441,"y":1.62890458106995,"z":3.66560101509094},"rot":{"x":359.931579589844,"y":315.000061035156,"z":359.955413818359}},"d6bbe3":{"lock":false,"pos":{"x":-23.6764755249023,"y":1.63030004501343,"z":7.56998777389526},"rot":{"x":359.920104980469,"y":269.999877929688,"z":0.0168394427746534}},"d70b36":{"lock":false,"pos":{"x":-5.65999507904053,"y":1.5934339761734,"z":13.7641000747681},"rot":{"x":359.919738769531,"y":270.019714355469,"z":0.0168206840753555}},"d9882d":{"lock":false,"pos":{"x":-27.0109996795654,"y":1.61566078662872,"z":-11.7710018157959},"rot":{"x":359.955413818359,"y":224.999969482422,"z":0.068376362323761}},"d9e4e4":{"lock":false,"pos":{"x":-3.92770743370056,"y":1.78289103507996,"z":5.75714731216431},"rot":{"x":359.919738769531,"y":269.999938964844,"z":180.016815185547}},"daee0c":{"lock":false,"pos":{"x":-35.9802627563477,"y":1.77833580970764,"z":-11.200704574585},"rot":{"x":359.920166015625,"y":270.000183105469,"z":0.0167865082621574}},"db3d41":{"lock":false,"pos":{"x":-19.2110919952393,"y":1.63774025440216,"z":-3.61433815956116},"rot":{"x":359.920104980469,"y":270.003814697266,"z":0.0168354269117117}},"dbc679":{"lock":false,"pos":{"x":-2.68845248222351,"y":1.61430239677429,"z":-5.04855680465698},"rot":{"x":0.0176577121019363,"y":179.412521362305,"z":0.0800789222121239}},"de80aa":{"lock":false,"pos":{"x":-17.1199645996094,"y":1.69702303409576,"z":11.4599943161011},"rot":{"x":359.920104980469,"y":269.999328613281,"z":0.0168457590043545}},"df464a":{"lock":false,"pos":{"x":-17.1199417114258,"y":1.6514630317688,"z":3.8599853515625},"rot":{"x":359.920104980469,"y":269.998291015625,"z":0.0168441496789455}},"e02917":{"lock":false,"pos":{"x":-2.72474956512451,"y":1.62076056003571,"z":0.373335152864456},"rot":{"x":0.0168035086244345,"y":180.022979736328,"z":0.0802627131342888}},"e0573a":{"lock":false,"pos":{"x":-23.6741008758545,"y":1.62820291519165,"z":-0.0202894769608974},"rot":{"x":359.922546386719,"y":270.007843017578,"z":0.0207790993154049}},"e099f7":{"lock":false,"pos":{"x":-29.6727886199951,"y":1.77369928359985,"z":2.950119972229},"rot":{"x":359.920471191406,"y":268.815185546875,"z":0.0184947494417429}},"e14d4b":{"lock":false,"pos":{"x":-22.9191303253174,"y":1.76251232624054,"z":-3.07010459899902},"rot":{"x":359.920104980469,"y":270.001312255859,"z":0.0168283302336931}},"e18dd7":{"lock":false,"pos":{"x":-3.92768979072571,"y":1.73956453800201,"z":5.75717401504517},"rot":{"x":359.919738769531,"y":270,"z":180.016815185547}},"e377ef":{"lock":false,"pos":{"x":-10.6899299621582,"y":1.6399792432785,"z":11.6738691329956},"rot":{"x":359.920104980469,"y":269.978851318359,"z":0.0168716758489609}},"e580e5":{"lock":false,"pos":{"x":15.2763013839722,"y":1.46735560894012,"z":24.2576026916504},"rot":{"x":359.920135498047,"y":269.999359130859,"z":0.0168746151030064}},"e589b8":{"lock":false,"pos":{"x":-36.773136138916,"y":1.64856243133545,"z":7.56998109817505},"rot":{"x":359.920104980469,"y":269.999481201172,"z":0.0168404337018728}},"e58cff":{"lock":false,"pos":{"x":-36.7731742858887,"y":1.65080201625824,"z":15.1899871826172},"rot":{"x":359.920104980469,"y":270.006958007813,"z":0.0168298780918121}},"e8fcf0":{"lock":false,"pos":{"x":-30.2243003845215,"y":1.63271510601044,"z":-15.2799997329712},"rot":{"x":359.920104980469,"y":269.999908447266,"z":0.0168397668749094}},"ec69ae":{"lock":false,"pos":{"x":-3.75105881690979,"y":1.47043025493622,"z":13.5667877197266},"rot":{"x":359.983123779297,"y":0.000302749540423974,"z":359.919647216797}},"ecc8e5":{"lock":false,"pos":{"x":-23.2233047485352,"y":1.76699233055115,"z":10.7314119338989},"rot":{"x":359.920104980469,"y":270.001007080078,"z":0.0167829915881157}},"ecff30":{"lock":false,"pos":{"x":-30.8015308380127,"y":1.77792608737946,"z":11.9776372909546},"rot":{"x":359.920104980469,"y":270.001403808594,"z":0.0168240908533335}},"eda931":{"lock":false,"pos":{"x":15.3036012649536,"y":1.46945595741272,"z":31.520601272583},"rot":{"x":359.920135498047,"y":269.996063232422,"z":0.0168791171163321}},"edc524":{"lock":false,"pos":{"x":-3.97627353668213,"y":1.58263719081879,"z":-14.9533967971802},"rot":{"x":359.919738769531,"y":270.019897460938,"z":0.0168099906295538}},"ee13c6":{"lock":false,"pos":{"x":-23.6765556335449,"y":1.61334502696991,"z":-3.82999181747437},"rot":{"x":359.983154296875,"y":0.00572012271732092,"z":359.920043945313}},"ee32d2":{"lock":false,"pos":{"x":-3.95590043067932,"y":1.59753930568695,"z":-10.4412040710449},"rot":{"x":359.919738769531,"y":269.982727050781,"z":0.0168613940477371}},"ee74e5":{"lock":false,"pos":{"x":15.2573003768921,"y":1.46312141418457,"z":9.78870010375977},"rot":{"x":359.920135498047,"y":269.999908447266,"z":0.0168749652802944}},"eeb375":{"lock":false,"pos":{"x":-37.6513442993164,"y":1.64497935771942,"z":-16.7265434265137},"rot":{"x":359.942169189453,"y":269.99951171875,"z":1.83502340316772}},"eeb51f":{"lock":false,"pos":{"x":-19.1465129852295,"y":1.86955404281616,"z":-0.0595723651349545},"rot":{"x":359.921051025391,"y":270.019592285156,"z":0.0156556870788336}},"ef8cef":{"lock":false,"pos":{"x":-23.6871891021729,"y":1.63031983375549,"z":7.58641004562378},"rot":{"x":359.920104980469,"y":270.009704589844,"z":0.0168260782957077}},"f2a6d9":{"lock":false,"pos":{"x":-6.9558892250061,"y":1.59543836116791,"z":14.4068689346313},"rot":{"x":359.983184814453,"y":0.0202351771295071,"z":359.919738769531}},"f3ec1a":{"lock":false,"pos":{"x":-4.1392068862915,"y":1.64114463329315,"z":13.8521070480347},"rot":{"x":359.919738769531,"y":269.999969482422,"z":180.016830444336}},"f508c6":{"lock":false,"pos":{"x":-2.17174243927002,"y":1.40422546863556,"z":16.1852245330811},"rot":{"x":359.983154296875,"y":0.000792859180364758,"z":359.919677734375}},"f724f6":{"lock":false,"pos":{"x":-3.95589113235474,"y":1.59753930568695,"z":-10.441180229187},"rot":{"x":359.919738769531,"y":269.998809814453,"z":0.0168387722223997}},"f92601":{"lock":false,"pos":{"x":-23.6766185760498,"y":1.64725410938263,"z":7.57001829147339},"rot":{"x":359.920104980469,"y":269.981109619141,"z":0.0168684143573046}},"f9aa84":{"lock":false,"pos":{"x":-3.60487985610962,"y":1.58209574222565,"z":-15.0256805419922},"rot":{"x":359.919738769531,"y":270.016235351563,"z":0.0168155282735825}},"fc6896":{"lock":false,"pos":{"x":-31.0463085174561,"y":1.63351726531982,"z":-16.8635444641113},"rot":{"x":359.934448242188,"y":270.034027099609,"z":1.57601070404053}},"fe6f38":{"lock":false,"pos":{"x":-11.7010860443115,"y":1.65868031978607,"z":11.5981149673462},"rot":{"x":359.920104980469,"y":269.999908447266,"z":0.0168502647429705}},"fff4bf":{"lock":false,"pos":{"x":-2.68847942352295,"y":1.59734869003296,"z":-5.04854393005371},"rot":{"x":0.0168257001787424,"y":180.007339477539,"z":0.0802572071552277}}}}' -MeasureMovement: false -Name: Custom_Model -Nickname: Betrayal at the Mountains of Madness 0.8.4 -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 61.16 - posY: 3.41 - posZ: -57.22 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 0.14 - scaleZ: 1 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Betrayal at the Mountains of Madness ef939a.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Betrayal at the Mountains of Madness ef939a.ttslua new file mode 100644 index 000000000..3c2a044ca --- /dev/null +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Betrayal at the Mountains of Madness ef939a.ttslua @@ -0,0 +1,90 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) +end + +function buttonClick_download() + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Betrayal at the Mountains of Madness ef939a.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Betrayal at the Mountains of Madness ef939a.yaml new file mode 100644 index 000000000..4f7f7abee --- /dev/null +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Betrayal at the Mountains of Madness ef939a.yaml @@ -0,0 +1,60 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + a: 0.27451 + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_COL.obj + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1479949766318759506/9BAB9C45ECB33AC5A0F83806B5EF79A6D89C1D31/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj + NormalURL: '' + TypeIndex: 0 +Description: '' +DragSelectable: true +GMNotes: fancreations/campaign_betrayal_at_mountains.json +GUID: ef939a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model Betrayal at the Mountains of Madness ef939a.ttslua' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: Betrayal at the Mountains of Madness +Snap: true +Sticky: true +Tags: +- LargeBox +Tooltip: true +Transform: + posX: 61.16 + posY: 3.41 + posZ: -57.22 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 0.14 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Bloodborne - City of the Unseen 24fb2b.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Bloodborne - City of the Unseen 24fb2b.ttslua new file mode 100644 index 000000000..3c2a044ca --- /dev/null +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Bloodborne - City of the Unseen 24fb2b.ttslua @@ -0,0 +1,90 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) +end + +function buttonClick_download() + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Bloodborne - City of the Unseen 24fb2b.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Bloodborne - City of the Unseen 24fb2b.yaml new file mode 100644 index 000000000..7496890e5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Bloodborne - City of the Unseen 24fb2b.yaml @@ -0,0 +1,60 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + a: 0.27451 + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_COL.obj + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: https://i.imgur.com/WtioCq1.jpg + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj + NormalURL: '' + TypeIndex: 0 +Description: '' +DragSelectable: true +GMNotes: fancreations/campaign_bloodborne.json +GUID: 24fb2b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model Bloodborne - City of the Unseen 24fb2b.ttslua' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: Bloodborne - City of the Unseen +Snap: true +Sticky: true +Tags: +- LargeBox +Tooltip: true +Transform: + posX: 61.16 + posY: 3.41 + posZ: -57.22 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 0.14 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Call of the Plaguebearer 613b64.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Call of the Plaguebearer 613b64.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Call of the Plaguebearer 613b64.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Call of the Plaguebearer 613b64.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Call of the Plaguebearer 613b64.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Call of the Plaguebearer 613b64.yaml index 19d196141..e460bf164 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Call of the Plaguebearer 613b64.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Call of the Plaguebearer 613b64.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1767067672754132384/EBC8D780049D2612C6BC0603BD87E94769C34D19/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Call of the Plaguebearer 613b64.ttslua' -LuaScriptState: '{"ml":{"02e7d2":{"lock":false,"pos":{"x":21.0277,"y":1.5237,"z":4.9552},"rot":{"x":0.0799,"y":90.0111,"z":359.9832}},"10f183":{"lock":false,"pos":{"x":12.092,"y":1.4584,"z":-21.2056},"rot":{"x":359.9201,"y":269.9965,"z":0.0169}},"13f15a":{"lock":false,"pos":{"x":-0.8693,"y":1.4355,"z":47.641},"rot":{"x":0.0003,"y":270.025,"z":359.2322}},"24c385":{"lock":false,"pos":{"x":11.9594,"y":1.4651,"z":0.8362},"rot":{"x":359.9201,"y":270.0032,"z":0.0169}},"2bd90b":{"lock":false,"pos":{"x":11.9948,"y":1.4694,"z":15.5876},"rot":{"x":359.9201,"y":270,"z":0.0169}},"3fa7c8":{"lock":false,"pos":{"x":0.3323,"y":1.6286,"z":-7.7335},"rot":{"x":359.9197,"y":270.002,"z":0.0168}},"47e769":{"lock":false,"pos":{"x":12.0918,"y":1.4563,"z":-28.5325},"rot":{"x":359.9201,"y":270.0239,"z":0.0168}},"51fbbc":{"lock":false,"pos":{"x":11.9307,"y":1.4716,"z":22.8828},"rot":{"x":359.9201,"y":269.9986,"z":0.0169}},"6fee85":{"lock":false,"pos":{"x":12.0108,"y":1.4629,"z":-6.4239},"rot":{"x":359.9201,"y":270.1797,"z":0.0166}},"71b3ae":{"lock":false,"pos":{"x":12.0638,"y":1.4607,"z":-13.6749},"rot":{"x":359.9201,"y":270.0066,"z":0.0169}},"c29a78":{"lock":false,"pos":{"x":12.0395,"y":1.4671,"z":8.2048},"rot":{"x":359.9201,"y":270.0003,"z":0.0169}},"eda22b":{"lock":false,"pos":{"x":-0.8626,"y":1.3157,"z":71.8684},"rot":{"x":0.0208,"y":269.9915,"z":0.0168}},"f5db25":{"lock":false,"pos":{"x":-3.6762,"y":1.5823,"z":-14.5355},"rot":{"x":359.9197,"y":270.0002,"z":0.0168}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Call of the Plaguebearer @@ -63,9 +63,9 @@ Transform: posX: -6.24 posY: 1.62 posZ: 68.9 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Celtic Rising 4d305a.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Celtic Rising 4d305a.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Celtic Rising 4d305a.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Celtic Rising 4d305a.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Celtic Rising 4d305a.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Celtic Rising 4d305a.yaml index c8a48a816..d47aec1d5 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Celtic Rising 4d305a.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Celtic Rising 4d305a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1754685726010541421/DC8223A713D02261326877B51FC717A9BAA217B8/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Celtic Rising 4d305a.ttslua' -LuaScriptState: '{"ml":{"055532":{"lock":false,"pos":{"x":8.8257,"y":1.4645,"z":-15.8276},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"072acf":{"lock":false,"pos":{"x":9.0112,"y":1.4698,"z":3.0492},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"1da86b":{"lock":false,"pos":{"x":8.8915,"y":1.4662,"z":-9.7687},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"40367b":{"lock":false,"pos":{"x":-7.2477,"y":1.4833,"z":-28.3811},"rot":{"x":359.9201,"y":270.0154,"z":0.0169}},"446d4c":{"lock":false,"pos":{"x":8.9866,"y":1.4718,"z":9.4227},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"4786a5":{"lock":false,"pos":{"x":9.0784,"y":1.4735,"z":15.6658},"rot":{"x":359.9201,"y":270.0004,"z":0.0169}},"55bcca":{"lock":false,"pos":{"x":9.0606,"y":1.4679,"z":-3.2898},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"92ee5a":{"lock":false,"pos":{"x":0.1554,"y":1.6281,"z":-10.3087},"rot":{"x":359.9197,"y":270.0021,"z":0.0168}},"992bc4":{"lock":false,"pos":{"x":-3.7366,"y":1.5823,"z":-15.0084},"rot":{"x":359.9197,"y":269.9815,"z":0.0169}},"eda22b":{"lock":false,"pos":{"x":8.366,"y":1.5615,"z":-28.4186},"rot":{"x":359.9201,"y":270.0162,"z":0.0168}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Celtic Rising @@ -63,9 +63,9 @@ Transform: posX: 26.69 posY: 5.16 posZ: -36.15 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Close Encounters of the LV-426 Kind 4f5421.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Close Encounters of the LV-426 Kind 4f5421.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Close Encounters of the LV-426 Kind 4f5421.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Close Encounters of the LV-426 Kind 4f5421.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Close Encounters of the LV-426 Kind 4f5421.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Close Encounters of the LV-426 Kind 4f5421.yaml index 2733ff58e..02ea19b9f 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Close Encounters of the LV-426 Kind 4f5421.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Close Encounters of the LV-426 Kind 4f5421.yaml @@ -1,28 +1,28 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/959719855127933035/B199A5F515A8F3ED7E06780D3723285C02ADE085/ + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/2018214163836048989/445ECEB6725E5387C41EEB8FBC69A3F247A5AD13/ MaterialIndex: 3 - MeshURL: http://cloud-3.steamusercontent.com/ugc/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/ + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj NormalURL: '' TypeIndex: 0 Description: lv426 @@ -44,17 +44,17 @@ Nickname: Close Encounters of the LV-426 Kind Snap: true Sticky: true Tags: -- chaosBag +- LargeBox Tooltip: true Transform: posX: -14.86 posY: 2.58 posZ: -72.36 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 3 - scaleY: 3 - scaleZ: 3 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 0.14 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Cyclopean Foundations 169eb9.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Cyclopean Foundations 169eb9.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Cyclopean Foundations 169eb9.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Cyclopean Foundations 169eb9.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Cyclopean Foundations 169eb9.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Cyclopean Foundations 169eb9.yaml index eae9174a8..fd84162e7 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Cyclopean Foundations 169eb9.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Cyclopean Foundations 169eb9.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1746813422552975974/8FB3A4AF2D5A102720F630961A2270572ABA2317/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Cyclopean Foundations 169eb9.ttslua' -LuaScriptState: '{"ml":{"133644":{"lock":false,"pos":{"x":-8.8564,"y":1.599,"z":5.6547},"rot":{"x":359.9319,"y":314.8602,"z":359.9567}},"36864b":{"lock":false,"pos":{"x":12.2555,"y":1.4562,"z":-28.0164},"rot":{"x":359.9201,"y":269.9951,"z":0.0169}},"3e21bb":{"lock":false,"pos":{"x":12.2553,"y":1.4632,"z":-4.005},"rot":{"x":359.9201,"y":269.9968,"z":0.0169}},"430ed4":{"lock":false,"pos":{"x":4.3522,"y":1.3853,"z":-17.0378},"rot":{"x":359.9831,"y":359.994,"z":359.9197}},"4b8bb9":{"lock":false,"pos":{"x":-0.4792,"y":1.6273,"z":-16.0225},"rot":{"x":359.9197,"y":270.0078,"z":0.0168}},"790e50":{"lock":false,"pos":{"x":-8.9524,"y":1.598,"z":1.6016},"rot":{"x":359.9319,"y":314.9326,"z":359.9567}},"90b00d":{"lock":false,"pos":{"x":7.4716,"y":1.3116,"z":-57.7787},"rot":{"x":0.0208,"y":270.02,"z":0.0168}},"9a9282":{"lock":false,"pos":{"x":-8.7944,"y":1.5965,"z":-2.7374},"rot":{"x":359.932,"y":314.9316,"z":359.9567}},"a4139a":{"lock":false,"pos":{"x":12.2509,"y":1.4656,"z":3.9859},"rot":{"x":359.9201,"y":270.0126,"z":0.0169}},"b3f144":{"lock":false,"pos":{"x":12.2559,"y":1.4727,"z":27.9863},"rot":{"x":359.9201,"y":270.017,"z":0.0169}},"b9e000":{"lock":false,"pos":{"x":-8.9341,"y":1.5955,"z":-6.8668},"rot":{"x":359.9319,"y":314.9296,"z":359.9567}},"ca9ca7":{"lock":false,"pos":{"x":12.2556,"y":1.4703,"z":20.0036},"rot":{"x":359.9201,"y":270.0293,"z":0.0168}},"d1759b":{"lock":false,"pos":{"x":-1.4665,"y":1.5756,"z":-26.9423},"rot":{"x":359.9201,"y":270.1273,"z":0.0167}},"dc90ba":{"lock":false,"pos":{"x":12.2583,"y":1.4679,"z":11.9859},"rot":{"x":359.9201,"y":270.0256,"z":0.0168}},"e6cb60":{"lock":false,"pos":{"x":12.2559,"y":1.4609,"z":-12.0153},"rot":{"x":359.9201,"y":269.9904,"z":0.0169}},"f58e85":{"lock":false,"pos":{"x":12.2563,"y":1.4585,"z":-20.0169},"rot":{"x":359.9201,"y":270.011,"z":0.0169}},"f91f29":{"lock":false,"pos":{"x":4.8432,"y":1.4601,"z":-45.0493},"rot":{"x":0.001,"y":269.9469,"z":1.0297}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Cyclopean Foundations @@ -63,9 +63,9 @@ Transform: posX: -7.51 posY: 1.62 posZ: 67.9 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Dark Matter d713f4.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Dark Matter d713f4.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Dark Matter d713f4.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Dark Matter d713f4.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Dark Matter d713f4.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Dark Matter d713f4.yaml index 1f00d4b57..10be5df0d 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Dark Matter d713f4.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Dark Matter d713f4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1699532377258479383/73EBF45477C1D927159E5993D99AD144641037EA/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Dark Matter d713f4.ttslua' -LuaScriptState: '{"ml":{"045c41":{"lock":false,"pos":{"x":-27.5163,"y":1.621,"z":2.7626},"rot":{"x":0.0412,"y":45.0179,"z":359.9676}},"069d46":{"lock":false,"pos":{"x":-2.7247,"y":1.6159,"z":0.3733},"rot":{"x":0.0168,"y":180.0195,"z":0.0803}},"0aa185":{"lock":false,"pos":{"x":-1.46690142154694,"y":1.47562432289124,"z":-26.9304046630859},"rot":{"x":359.920135498047,"y":270.008209228516,"z":0.0168602559715509}},"0e856b":{"lock":false,"pos":{"x":0.8693,"y":1.5538,"z":-4.9902},"rot":{"x":359.9197,"y":270.0005,"z":0.0169}},"114fee":{"lock":false,"pos":{"x":-30.2243,"y":1.6349,"z":-7.7},"rot":{"x":359.9201,"y":270.0276,"z":180.0168}},"1175f2":{"lock":false,"pos":{"x":-3.80500054359436,"y":1.58237993717194,"z":-15.0130023956299},"rot":{"x":359.919738769531,"y":269.996978759766,"z":0.0168421547859907}},"13bc7d":{"lock":true,"pos":{"x":-33.1967010498047,"y":1.61310005187988,"z":30.128999710083},"rot":{"x":359.983093261719,"y":0,"z":359.920104980469}},"1f1e9f":{"lock":false,"pos":{"x":-20.0709,"y":1.6101,"z":2.256},"rot":{"x":359.9316,"y":314.9919,"z":359.9554}},"2157cc":{"lock":false,"pos":{"x":-33.1007,"y":1.6286,"z":2.4472},"rot":{"x":359.9109,"y":315.0142,"z":359.9155}},"267216":{"lock":false,"pos":{"x":-12.2907028198242,"y":1.49070179462433,"z":-26.9724044799805},"rot":{"x":359.920135498047,"y":269.994995117188,"z":0.0168787688016891}},"26b4a0":{"lock":false,"pos":{"x":-23.6765,"y":1.6133,"z":-3.83},"rot":{"x":359.9831,"y":359.9544,"z":359.9201}},"2853ba":{"lock":false,"pos":{"x":-3.9277,"y":1.7588,"z":5.7572},"rot":{"x":359.9197,"y":270.0002,"z":180.0168}},"2863a5":{"lock":false,"pos":{"x":-17.12,"y":1.6212,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"29032c":{"lock":false,"pos":{"x":-8.7785,"y":1.6356,"z":5.8505},"rot":{"x":359.9214,"y":269.9991,"z":0.0179}},"2a01d2":{"lock":false,"pos":{"x":-8.4946,"y":1.6432,"z":0.2536},"rot":{"x":359.9219,"y":270,"z":180.0171}},"2aafdf":{"lock":false,"pos":{"x":-20.5002,"y":1.6112,"z":3.8116},"rot":{"x":359.9554,"y":225.0337,"z":0.0684}},"2b0d9e":{"lock":false,"pos":{"x":-11.4866,"y":1.6145,"z":11.598},"rot":{"x":359.9201,"y":270.0001,"z":0.0168}},"2bd90b":{"lock":false,"pos":{"x":12.2505006790161,"y":1.47031617164612,"z":19.9863033294678},"rot":{"x":359.920104980469,"y":270.011779785156,"z":0.0168575774878263}},"2bf6e7":{"lock":false,"pos":{"x":-30.2235,"y":1.6383,"z":3.8584},"rot":{"x":359.9201,"y":270,"z":180.0168}},"2dbbbf":{"lock":false,"pos":{"x":-23.6763,"y":1.6303,"z":7.5762},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"2e3d6e":{"lock":false,"pos":{"x":1.6976,"y":1.5583,"z":14.2785},"rot":{"x":359.9551,"y":225.0016,"z":0.0687}},"2ebcda":{"lock":false,"pos":{"x":12.2493019104004,"y":1.46325051784515,"z":-4.01380062103271},"rot":{"x":359.920104980469,"y":270.040679931641,"z":0.0168172847479582}},"31022c":{"lock":false,"pos":{"x":-36.7714,"y":1.6316,"z":-3.8293},"rot":{"x":359.9833,"y":0.1069,"z":359.92}},"32039e":{"lock":false,"pos":{"x":12.2501029968262,"y":1.46089386940002,"z":-12.0141010284424},"rot":{"x":359.920104980469,"y":270.014068603516,"z":0.0168543010950089}},"335087":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4416},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"361798":{"lock":false,"pos":{"x":-8.7785,"y":1.6356,"z":5.8505},"rot":{"x":359.922,"y":269.9999,"z":0.0167}},"37e3f9":{"lock":false,"pos":{"x":-23.6766,"y":1.6258,"z":-7.7},"rot":{"x":359.9201,"y":269.9989,"z":0.0168}},"3af545":{"lock":false,"pos":{"x":-30.2431,"y":1.6372,"z":-0.0303},"rot":{"x":359.9201,"y":270.0093,"z":0.0168}},"3e4d11":{"lock":false,"pos":{"x":-17.12,"y":1.6189,"z":-0.03},"rot":{"x":359.9201,"y":269.9992,"z":0.0168}},"4006aa":{"lock":false,"pos":{"x":-23.6765,"y":1.6156,"z":3.86},"rot":{"x":359.9831,"y":359.9222,"z":359.9201}},"42dace":{"lock":false,"pos":{"x":-26.8078,"y":1.6211,"z":7.5985},"rot":{"x":359.9201,"y":270.0088,"z":0.0169}},"44b0c5":{"lock":false,"pos":{"x":-20.514,"y":1.61,"z":-0.1438},"rot":{"x":0.0799,"y":90,"z":359.9831}},"4616fc":{"lock":false,"pos":{"x":-3.9277,"y":1.7348,"z":5.7572},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}},"48214a":{"lock":false,"pos":{"x":-2.7249,"y":1.6208,"z":0.3732},"rot":{"x":0.0168,"y":179.9909,"z":0.0803}},"489c78":{"lock":false,"pos":{"x":-23.6663,"y":1.6303,"z":7.5701},"rot":{"x":359.9201,"y":270.0166,"z":180.0168}},"4a20aa":{"lock":false,"pos":{"x":-2.6894,"y":1.6191,"z":-5.0491},"rot":{"x":0.0169,"y":179.9562,"z":0.0802}},"500d5d":{"lock":false,"pos":{"x":-23.6765,"y":1.6156,"z":3.86},"rot":{"x":359.9833,"y":0.1274,"z":359.92}},"513118":{"lock":false,"pos":{"x":-23.6744,"y":1.6269,"z":-3.8304},"rot":{"x":359.9201,"y":270.0002,"z":180.0168}},"534034":{"lock":false,"pos":{"x":-2.7119,"y":1.6256,"z":0.372},"rot":{"x":0.0169,"y":179.9638,"z":0.0802}},"535781":{"lock":false,"pos":{"x":-2.7248,"y":1.6208,"z":0.3735},"rot":{"x":0.0168,"y":180.0242,"z":0.0803}},"536963":{"lock":false,"pos":{"x":-3.9562,"y":1.5975,"z":-10.4427},"rot":{"x":359.9197,"y":269.9991,"z":0.0168}},"53a47f":{"lock":false,"pos":{"x":-2.6885,"y":1.6191,"z":-5.0485},"rot":{"x":0.0168,"y":180.0209,"z":0.0803}},"592384":{"lock":false,"pos":{"x":-23.6765,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":269.9988,"z":0.0168}},"5d3df0":{"lock":false,"pos":{"x":-30.2242,"y":1.6394,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"5d4418":{"lock":false,"pos":{"x":-17.1199,"y":1.6212,"z":7.5701},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"5f2346":{"lock":false,"pos":{"x":-36.7731,"y":1.6339,"z":3.86},"rot":{"x":359.9832,"y":0.0019,"z":359.92}},"5fc1a6":{"lock":false,"pos":{"x":-33.5324,"y":1.6277,"z":-1.6032},"rot":{"x":359.9316,"y":315.0352,"z":359.9554}},"607420":{"lock":false,"pos":{"x":-8.4432,"y":1.6496,"z":5.7611},"rot":{"x":359.9218,"y":270,"z":180.0166}},"61fcd5":{"lock":false,"pos":{"x":-2.7247,"y":1.6208,"z":0.3734},"rot":{"x":0.0168,"y":180.0296,"z":0.0803}},"634def":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4414},"rot":{"x":359.9197,"y":269.9995,"z":0.0168}},"63aad4":{"lock":false,"pos":{"x":12.2506017684937,"y":1.45853734016418,"z":-20.0140037536621},"rot":{"x":359.920104980469,"y":270.023742675781,"z":0.0168408546596766}},"63f66e":{"lock":false,"pos":{"x":-36.7719,"y":1.6486,"z":7.5695},"rot":{"x":359.9201,"y":269.9996,"z":180.0168}},"64ad41":{"lock":false,"pos":{"x":-30.2242,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":270.0275,"z":180.0168}},"66dad0":{"lock":true,"pos":{"x":-58.557300567627,"y":1.69340002536774,"z":-18.8325004577637},"rot":{"x":359.920104980469,"y":269.999908447266,"z":0.0169000010937452}},"6720a1":{"lock":false,"pos":{"x":-2.7246,"y":1.6159,"z":0.3733},"rot":{"x":0.0168,"y":180,"z":0.0803}},"67a96b":{"lock":false,"pos":{"x":-23.6766,"y":1.6303,"z":7.57},"rot":{"x":359.9201,"y":269.9991,"z":0.0168}},"686756":{"lock":false,"pos":{"x":-3.9561,"y":1.5975,"z":-10.4416},"rot":{"x":359.9196,"y":269.998,"z":0.0171}},"69ea39":{"lock":false,"pos":{"x":-17.1202,"y":1.6189,"z":-0.0301},"rot":{"x":359.9201,"y":270.0276,"z":180.0168}},"6b5ddc":{"lock":false,"pos":{"x":-8.3461,"y":1.688,"z":5.7631},"rot":{"x":359.9217,"y":270,"z":180.0172}},"6ea278":{"lock":false,"pos":{"x":-20.6489,"y":1.609,"z":-4.1141},"rot":{"x":359.9312,"y":314.516,"z":359.956}},"701dd2":{"lock":false,"pos":{"x":-2.7251,"y":1.6208,"z":0.3732},"rot":{"x":0.0168,"y":179.9979,"z":0.0803}},"7073a0":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4415},"rot":{"x":359.9197,"y":269.9982,"z":0.0168}},"70fb89":{"lock":false,"pos":{"x":-2.6888,"y":1.5973,"z":-5.0485},"rot":{"x":0.0168,"y":180.0061,"z":0.0803}},"721fcb":{"lock":false,"pos":{"x":-23.6765,"y":1.6133,"z":-3.83},"rot":{"x":359.9832,"y":0.0399,"z":359.92}},"7234af":{"lock":false,"pos":{"x":-30.2252,"y":1.6225,"z":-3.8296},"rot":{"x":359.9942,"y":359.9567,"z":0.105}},"725a4c":{"lock":false,"pos":{"x":-26.9678,"y":1.6179,"z":-3.963},"rot":{"x":359.9201,"y":270.0172,"z":0.0168}},"7295df":{"lock":false,"pos":{"x":-23.6767,"y":1.6281,"z":-0.0299},"rot":{"x":359.9201,"y":270.0277,"z":180.0168}},"72ff1f":{"lock":false,"pos":{"x":-3.9269,"y":1.7492,"z":5.756},"rot":{"x":359.9197,"y":269.9728,"z":180.0169}},"794376":{"lock":true,"pos":{"x":-22.7847995758057,"y":1.64330005645752,"z":-30.1574001312256},"rot":{"x":0.0169000010937452,"y":180,"z":0.0798999965190887}},"799bbe":{"lock":false,"pos":{"x":-20.4091,"y":1.6121,"z":7.5345},"rot":{"x":359.9201,"y":270.0114,"z":0.0169}},"7de8a9":{"lock":false,"pos":{"x":1.6975,"y":1.5583,"z":14.2786},"rot":{"x":359.9551,"y":224.9998,"z":0.0687}},"7eb60b":{"lock":false,"pos":{"x":12.2504014968872,"y":1.47267174720764,"z":27.9864044189453},"rot":{"x":359.920135498047,"y":270.001495361328,"z":0.0168716460466385}},"803086":{"lock":false,"pos":{"x":-3.9446,"y":1.7685,"z":5.7514},"rot":{"x":359.9197,"y":269.9995,"z":180.0168}},"8033ba":{"lock":false,"pos":{"x":-27.3532,"y":1.6185,"z":-2.6717},"rot":{"x":359.9376,"y":314.9674,"z":0.0453}},"812e2c":{"lock":false,"pos":{"x":-30.2242,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"894e00":{"lock":false,"pos":{"x":-8.1015,"y":1.6972,"z":5.7465},"rot":{"x":359.9215,"y":270.0015,"z":180.017}},"8b9040":{"lock":false,"pos":{"x":-8.2344,"y":1.649,"z":17.9789},"rot":{"x":0.0823,"y":89.9971,"z":359.9924}},"8baacc":{"lock":false,"pos":{"x":-3.9276,"y":1.7348,"z":5.7574},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"8bc3e1":{"lock":false,"pos":{"x":-17.12,"y":1.6189,"z":-0.0297},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"8bc697":{"lock":false,"pos":{"x":-15.1924,"y":1.6587,"z":18.0143},"rot":{"x":0.0799,"y":89.9783,"z":359.9831}},"8c6465":{"lock":false,"pos":{"x":-17.12,"y":1.6189,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":180.0168}},"8cf22d":{"lock":false,"pos":{"x":-17.1098,"y":1.6211,"z":7.5702},"rot":{"x":359.9201,"y":270.0219,"z":180.0168}},"8cfe99":{"lock":false,"pos":{"x":12.2504034042358,"y":1.46560490131378,"z":3.98619985580444},"rot":{"x":359.920104980469,"y":270.017883300781,"z":0.0168493706732988}},"908fff":{"lock":false,"pos":{"x":-11.5119,"y":1.6402,"z":8.3989},"rot":{"x":359.9201,"y":270.0008,"z":0.0168}},"91a822":{"lock":false,"pos":{"x":-8.3678,"y":1.6591,"z":5.7427},"rot":{"x":359.9217,"y":270.0002,"z":180.0162}},"92718e":{"lock":false,"pos":{"x":-8.1998,"y":1.6107,"z":14.1116},"rot":{"x":359.9215,"y":270.0006,"z":180.0164}},"92a72d":{"lock":false,"pos":{"x":-23.6765,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":270.0275,"z":180.0168}},"92ab86":{"lock":false,"pos":{"x":-2.7257,"y":1.6256,"z":0.3762},"rot":{"x":0.0168,"y":180.001,"z":0.0803}},"94b412":{"lock":false,"pos":{"x":-30.2235,"y":1.6251,"z":3.8602},"rot":{"x":359.9816,"y":0.0207,"z":359.8866}},"950eb5":{"lock":false,"pos":{"x":-20.1861,"y":1.6108,"z":3.9106},"rot":{"x":359.9316,"y":314.9879,"z":359.9554}},"973c5d":{"lock":false,"pos":{"x":-2.6886,"y":1.6143,"z":-5.0485},"rot":{"x":0.0169,"y":179.9583,"z":0.0802}},"978a0e":{"lock":false,"pos":{"x":1.6974,"y":1.5583,"z":14.2786},"rot":{"x":359.9551,"y":224.999,"z":0.0687}},"97fd5a":{"lock":false,"pos":{"x":-36.7721,"y":1.6463,"z":-0.0309},"rot":{"x":359.9201,"y":270,"z":180.0168}},"99db87":{"lock":true,"pos":{"x":-58.5584983825684,"y":1.69739997386932,"z":8.3577995300293},"rot":{"x":359.920104980469,"y":270.000061035156,"z":0.0169000010937452}},"9a1f65":{"lock":false,"pos":{"x":-20.5169,"y":1.6101,"z":0.1021},"rot":{"x":359.9201,"y":270.0094,"z":0.0169}},"9c1257":{"lock":false,"pos":{"x":-3.9274,"y":1.7299,"z":5.7579},"rot":{"x":359.9197,"y":269.9991,"z":180.0168}},"9c9fe8":{"lock":false,"pos":{"x":-23.6766,"y":1.6281,"z":-0.0174},"rot":{"x":359.9201,"y":270.0035,"z":180.0168}},"9cef1b":{"lock":false,"pos":{"x":-15.1508,"y":1.6203,"z":14.1589},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"9fb0a6":{"lock":false,"pos":{"x":-36.7733,"y":1.6463,"z":-0.0307},"rot":{"x":359.9201,"y":270.0145,"z":180.0168}},"a31603":{"lock":false,"pos":{"x":1.6976,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.9998,"z":0.0687}},"a3fb6c":{"lock":false,"pos":{"x":-30.422,"y":1.6509,"z":-0.2053},"rot":{"x":359.9218,"y":269.9958,"z":0.0173}},"a475de":{"lock":false,"pos":{"x":-2.6886,"y":1.6191,"z":-5.0485},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"a4845c":{"lock":false,"pos":{"x":-8.5177,"y":1.6449,"z":5.813},"rot":{"x":359.9219,"y":270.0001,"z":180.0166}},"a7d0a1":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":270.0027,"z":0.0168}},"a7d828":{"lock":false,"pos":{"x":-8.1905,"y":1.61,"z":11.8587},"rot":{"x":359.9215,"y":269.9995,"z":180.0173}},"a97eaf":{"lock":false,"pos":{"x":1.7207,"y":1.5583,"z":14.3019},"rot":{"x":359.9544,"y":225.5961,"z":0.0682}},"a9aa44":{"lock":false,"pos":{"x":-17.1201,"y":1.6167,"z":-7.7},"rot":{"x":359.9201,"y":270,"z":180.0168}},"abb4b3":{"lock":false,"pos":{"x":1.6985,"y":1.5583,"z":14.278},"rot":{"x":359.9551,"y":224.9979,"z":0.0687}},"ad1bfb":{"lock":false,"pos":{"x":-11.6967,"y":1.6155,"z":14.1497},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"aff3b1":{"lock":false,"pos":{"x":1.7021,"y":1.5583,"z":14.2777},"rot":{"x":359.9551,"y":224.9998,"z":0.0687}},"b14b17":{"lock":false,"pos":{"x":-11.7333,"y":1.6585,"z":18.0345},"rot":{"x":0.0796,"y":90.0178,"z":0.5566}},"b4ac2d":{"lock":false,"pos":{"x":-20.3355,"y":1.6098,"z":0.026},"rot":{"x":359.9201,"y":270.0095,"z":0.0169}},"b4b2b4":{"lock":false,"pos":{"x":-33.1748,"y":1.6268,"z":-2.6772},"rot":{"x":0.0451,"y":44.9884,"z":359.9406}},"b4fa6f":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4415},"rot":{"x":359.9197,"y":269.9941,"z":0.0168}},"b6da68":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.279},"rot":{"x":359.9551,"y":224.9995,"z":0.0687}},"b76e68":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9981,"z":0.0168}},"b9ac65":{"lock":false,"pos":{"x":-28.2377,"y":1.6495,"z":2.0266},"rot":{"x":359.92,"y":269.9771,"z":359.2602}},"b9e1d3":{"lock":false,"pos":{"x":-3.9276,"y":1.7251,"z":5.7571},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}},"badc52":{"lock":false,"pos":{"x":-1.842,"y":1.4973,"z":-38.9128},"rot":{"x":0,"y":270.0063,"z":359.7724}},"bb5677":{"lock":false,"pos":{"x":-30.2041,"y":1.6361,"z":-3.8301},"rot":{"x":359.9201,"y":270,"z":180.0168}},"c0b9c8":{"lock":false,"pos":{"x":-38.1809,"y":1.6662,"z":-1.6393},"rot":{"x":359.9202,"y":270.0044,"z":0.9822}},"c0dc73":{"lock":true,"pos":{"x":0.0192313026636839,"y":1.61084246635437,"z":-10.3509302139282},"rot":{"x":359.919769287109,"y":269.9873046875,"z":0.0168541558086872}},"c29a78":{"lock":false,"pos":{"x":12.2518014907837,"y":1.46795856952667,"z":11.9862012863159},"rot":{"x":359.920135498047,"y":270.012054443359,"z":0.0168575420975685}},"c3d85c":{"lock":false,"pos":{"x":-2.34665441513062,"y":1.45420181751251,"z":-19.0668277740479},"rot":{"x":0.0168837867677212,"y":179.999877929688,"z":0.0798836573958397}},"c774e4":{"lock":false,"pos":{"x":-33.441,"y":1.6263,"z":-6.1811},"rot":{"x":359.9554,"y":225.0271,"z":0.0684}},"c8a705":{"lock":false,"pos":{"x":-33.4979,"y":1.6287,"z":1.9603},"rot":{"x":359.9554,"y":225.035,"z":0.0684}},"ca66e0":{"lock":false,"pos":{"x":-23.6765,"y":1.6156,"z":3.86},"rot":{"x":359.9831,"y":359.9748,"z":359.92}},"cafa1a":{"lock":false,"pos":{"x":-30.2243,"y":1.6372,"z":-0.0299},"rot":{"x":359.9202,"y":270.0007,"z":180.0173}},"ce9e32":{"lock":false,"pos":{"x":-26.7377,"y":1.6188,"z":0.0573},"rot":{"x":359.9201,"y":270.0096,"z":0.0169}},"d04948":{"lock":false,"pos":{"x":-36.7733,"y":1.6441,"z":-7.7},"rot":{"x":359.9201,"y":269.9891,"z":180.0168}},"d40fa8":{"lock":false,"pos":{"x":-20.1609,"y":1.6088,"z":-2.7823},"rot":{"x":359.9554,"y":224.9969,"z":0.0684}},"d9e450":{"lock":false,"pos":{"x":-26.9393,"y":1.6201,"z":3.6475},"rot":{"x":359.9201,"y":270.0319,"z":0.0168}},"dd1996":{"lock":false,"pos":{"x":-2.6885,"y":1.6191,"z":-5.0485},"rot":{"x":0.0168,"y":180.012,"z":0.0803}},"dd29bd":{"lock":false,"pos":{"x":-23.6765,"y":1.6258,"z":-7.7},"rot":{"x":359.9201,"y":270.0145,"z":180.0168}},"df1491":{"lock":false,"pos":{"x":-23.6747,"y":1.6292,"z":3.8607},"rot":{"x":359.9201,"y":270,"z":180.0168}},"e04c21":{"lock":false,"pos":{"x":12.2497024536133,"y":1.4561824798584,"z":-28.014404296875},"rot":{"x":359.920135498047,"y":270.002288818359,"z":0.0168702751398087}},"e0f394":{"lock":false,"pos":{"x":-34.2201,"y":1.6292,"z":-0.0218},"rot":{"x":359.9201,"y":269.9978,"z":0.0169}},"e3a2dd":{"lock":false,"pos":{"x":-3.9277,"y":1.6914,"z":5.7572},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"e4be75":{"lock":false,"pos":{"x":-23.6736,"y":1.6145,"z":-0.0296},"rot":{"x":0.0168,"y":180,"z":0.0799}},"e6e44a":{"lock":false,"pos":{"x":-0.0518,"y":1.6326,"z":4.136},"rot":{"x":359.9197,"y":270.0051,"z":0.0168}},"e7d3f3":{"lock":false,"pos":{"x":-3.9141,"y":1.6049,"z":14.8205},"rot":{"x":359.9197,"y":269.9995,"z":180.0168}},"ea1fa3":{"lock":false,"pos":{"x":-0.0422,"y":1.6335,"z":7.3454},"rot":{"x":359.9197,"y":270.0329,"z":0.0168}},"ea8a74":{"lock":false,"pos":{"x":-26.0822,"y":1.6176,"z":0.0309},"rot":{"x":359.9282,"y":269.9886,"z":0.0537}},"ef5c32":{"lock":false,"pos":{"x":-2.6886,"y":1.5973,"z":-5.0485},"rot":{"x":0.0168,"y":180.0004,"z":0.0803}},"f7c870":{"lock":false,"pos":{"x":-15.1872,"y":1.6197,"z":11.9241},"rot":{"x":359.9201,"y":270,"z":180.0168}},"f9a6e7":{"lock":false,"pos":{"x":-30.2172,"y":1.6394,"z":7.5701},"rot":{"x":359.9201,"y":270.0244,"z":180.0168}},"fb0a1d":{"lock":false,"pos":{"x":-17.1198,"y":1.6189,"z":-0.03},"rot":{"x":359.9201,"y":270.0215,"z":180.0168}},"fc8c1c":{"lock":false,"pos":{"x":-30.2224,"y":1.6236,"z":-0.0296},"rot":{"x":0.0168,"y":180,"z":0.0799}},"fcab72":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":359.9765,"z":359.9201}},"fdd2bc":{"lock":false,"pos":{"x":-11.7001,"y":1.6149,"z":11.9109},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Dark Matter @@ -63,9 +63,9 @@ Transform: posX: -8.25 posY: 1.63 posZ: 69.27 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Darkham Horror bc7fa7.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Darkham Horror bc7fa7.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Darkham Horror bc7fa7.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Darkham Horror bc7fa7.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Darkham Horror bc7fa7.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Darkham Horror bc7fa7.yaml index 8f161eb1a..70ae64d3e 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Darkham Horror bc7fa7.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Darkham Horror bc7fa7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,9 +11,9 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 @@ -27,13 +27,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1692775970051821718/827267BBD7EFBAD3EA384A5A04629B2E5BD88EE5/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -51,7 +51,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Darkham Horror bc7fa7.ttslua' -LuaScriptState: '{"ml":{"044ab6":{"lock":false,"pos":{"x":12.2499,"y":1.4609,"z":-12.0137},"rot":{"x":359.9201,"y":270.1017,"z":0.0167}},"17c59d":{"lock":false,"pos":{"x":12.2503,"y":1.4585,"z":-20.0139},"rot":{"x":359.9201,"y":270.0724,"z":0.0168}},"221778":{"lock":false,"pos":{"x":12.587,"y":1.5039,"z":-33.847},"rot":{"x":359.9201,"y":270.0021,"z":0.0169}},"515ba5":{"lock":false,"pos":{"x":-3.9152,"y":1.5861,"z":-15.094},"rot":{"x":359.9832,"y":0.0004,"z":359.9197}},"5f8e94":{"lock":false,"pos":{"x":12.2496,"y":1.4633,"z":-4.0139},"rot":{"x":359.9201,"y":270.0854,"z":0.0168}},"7b5ee7":{"lock":false,"pos":{"x":12.2495,"y":1.4656,"z":3.9892},"rot":{"x":359.9201,"y":270.0862,"z":0.0168}},"7cb918":{"lock":false,"pos":{"x":12.25,"y":1.4703,"z":19.9865},"rot":{"x":359.9201,"y":270.0856,"z":0.0168}},"92c6fc":{"lock":false,"pos":{"x":12.256,"y":1.3178,"z":36.1097},"rot":{"x":0.08,"y":89.9982,"z":359.9831}},"b5c9d7":{"lock":false,"pos":{"x":12.2494,"y":1.4563,"z":-28.0139},"rot":{"x":359.9201,"y":270.1024,"z":0.0167}},"bc4a2e":{"lock":false,"pos":{"x":12.2525,"y":1.468,"z":11.9863},"rot":{"x":359.9201,"y":270.0859,"z":0.0168}},"c09838":{"lock":false,"pos":{"x":12.2503,"y":1.4727,"z":27.9858},"rot":{"x":359.9201,"y":270.0597,"z":0.0168}},"eda22b":{"lock":false,"pos":{"x":-1.4223,"y":1.6,"z":-41.3729},"rot":{"x":0,"y":270.0014,"z":-0.0002}},"fe8e8a":{"lock":false,"pos":{"x":-1.4656,"y":1.4756,"z":-26.9305},"rot":{"x":359.9201,"y":270.0092,"z":0.0169}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Darkham Horror @@ -62,9 +62,9 @@ Transform: posX: 36.93 posY: 2.29 posZ: -84.23 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Essence of Humanity Campaign Box 691339.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Essence of Humanity Campaign Box 691339.ttslua index d25f21689..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Essence of Humanity Campaign Box 691339.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Essence of Humanity Campaign Box 691339.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,6}, rotation={0,0,0}, height=500, width=1600, - font_size=350, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Essence of Humanity Campaign Box 691339.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Essence of Humanity Campaign Box 691339.yaml index aa62c1671..68b1b5f39 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Essence of Humanity Campaign Box 691339.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Essence of Humanity Campaign Box 691339.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1823394900012495167/63C400A27475E745FF94F8837D7A8AECC7F837F4/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj @@ -37,22 +37,24 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Essence of Humanity Campaign Box 691339.ttslua' -LuaScriptState: '{"ml":{"1e122c":{"lock":false,"pos":{"x":12.25,"y":1.4656,"z":3.9846},"rot":{"x":359.92,"y":270.5023,"z":0.0162}},"2547b3":{"lock":false,"pos":{"x":15.1572,"y":1.5202,"z":33.4974},"rot":{"x":359.9201,"y":269.9961,"z":0.0169}},"8354bb":{"lock":false,"pos":{"x":0.27,"y":1.4896,"z":28.777},"rot":{"x":359.9201,"y":270.0084,"z":0.0169}},"89ae68":{"lock":false,"pos":{"x":12.2492,"y":1.4704,"z":19.9855},"rot":{"x":359.9201,"y":270.0619,"z":0.0168}},"91d358":{"lock":false,"pos":{"x":12.2433,"y":1.468,"z":11.9905},"rot":{"x":359.92,"y":270.5103,"z":0.0162}},"936cd8":{"lock":false,"pos":{"x":12.2469,"y":1.4633,"z":-4.0188},"rot":{"x":359.9199,"y":270.6714,"z":0.0159}},"97bd7a":{"lock":false,"pos":{"x":12.2409,"y":1.4727,"z":27.99},"rot":{"x":359.92,"y":270.5837,"z":0.0161}},"b272e3":{"lock":false,"pos":{"x":0.27,"y":1.4896,"z":28.777},"rot":{"x":359.9201,"y":269.9802,"z":0.0169}},"be466d":{"lock":false,"pos":{"x":0.2702,"y":1.4896,"z":28.7808},"rot":{"x":359.9201,"y":269.9995,"z":0.0169}},"c06389":{"lock":false,"pos":{"x":0.27,"y":1.4896,"z":28.7772},"rot":{"x":359.9201,"y":269.9765,"z":0.0169}},"eda22b":{"lock":false,"pos":{"x":-1.4656,"y":1.5756,"z":-26.9263},"rot":{"x":359.9201,"y":270.0024,"z":0.0169}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Essence of Humanity Campaign Box Snap: true Sticky: true +Tags: +- LargeBox Tooltip: true Transform: posX: 35.3 posY: 4.15 posZ: -6.4 - rotX: 0 - rotY: 270 - rotZ: 358 - scaleX: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 scaleY: 0.14 - scaleZ: 1 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Future Reflections 0f0680.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Future Reflections 0f0680.ttslua index f122c50de..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Future Reflections 0f0680.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Future Reflections 0f0680.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,7}, rotation={0,0,0}, height=850, width=3300, - font_size=700, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Future Reflections 0f0680.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Future Reflections 0f0680.yaml index 179d224de..b3a96d816 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Future Reflections 0f0680.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Future Reflections 0f0680.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_COL.obj Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://i.imgur.com/T97bYDU.pnghttps://i.imgur.com/T97bYDU.png MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj @@ -37,22 +37,24 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Future Reflections 0f0680.ttslua' -LuaScriptState: '{"ml":{"004d53":{"lock":false,"pos":{"x":-3.5339,"y":2.4522,"z":-14.974},"rot":{"x":359.9886,"y":270,"z":0.0024}},"0151be":{"lock":false,"pos":{"x":-30.2243,"y":1.627,"z":11.4601},"rot":{"x":0.0156,"y":180.9005,"z":0.0802}},"01961e":{"lock":false,"pos":{"x":-3.9276,"y":1.7636,"z":5.7572},"rot":{"x":359.9197,"y":270.0193,"z":180.0168}},"0ccc8d":{"lock":false,"pos":{"x":1.7009,"y":1.5583,"z":14.2781},"rot":{"x":359.9551,"y":225.0036,"z":0.0687}},"0de2c4":{"lock":false,"pos":{"x":-16.6401,"y":1.3599,"z":-67.8206},"rot":{"x":0.0208,"y":270.009,"z":0.0168}},"0f46eb":{"lock":false,"pos":{"x":-19.3001,"y":1.3145,"z":-61.2332},"rot":{"x":0.0208,"y":269.9961,"z":0.0168}},"15105c":{"lock":false,"pos":{"x":-19.2959,"y":1.3122,"z":-69.0607},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"16df70":{"lock":false,"pos":{"x":-19.3,"y":1.3168,"z":-53.4358},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"17a00f":{"lock":false,"pos":{"x":-36.7732,"y":1.6463,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"1c3aab":{"lock":false,"pos":{"x":-19.3001,"y":1.3145,"z":-61.2332},"rot":{"x":0.0208,"y":270,"z":0.0168}},"1d61c6":{"lock":false,"pos":{"x":12.2483,"y":1.475,"z":35.9866},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"1da958":{"lock":false,"pos":{"x":-22.6169,"y":1.3645,"z":-84.8185},"rot":{"x":0.0168,"y":179.9921,"z":359.9792}},"208c4d":{"lock":false,"pos":{"x":-16.6335,"y":1.3638,"z":-54.6166},"rot":{"x":0.0218,"y":266.5908,"z":0.0155}},"226716":{"lock":false,"pos":{"x":-16.6403,"y":1.3596,"z":-69.0603},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"231320":{"lock":false,"pos":{"x":-3.9272,"y":1.7973,"z":5.7576},"rot":{"x":359.9197,"y":270.0057,"z":180.0168}},"24bf26":{"lock":false,"pos":{"x":-26.2996,"y":1.2665,"z":-84.818},"rot":{"x":359.9792,"y":90.0002,"z":359.9832}},"26c67a":{"lock":false,"pos":{"x":0.5742,"y":1.6277,"z":-9.8657},"rot":{"x":359.9197,"y":270.002,"z":0.0168}},"26f88d":{"lock":false,"pos":{"x":-16.639,"y":1.3603,"z":-66.8114},"rot":{"x":0.0208,"y":270.0166,"z":0.0168}},"270c8f":{"lock":false,"pos":{"x":-26.2998,"y":1.2734,"z":-61.2407},"rot":{"x":359.9792,"y":90.0002,"z":359.9832}},"28eca9":{"lock":false,"pos":{"x":-30.2243,"y":1.6327,"z":-15.28},"rot":{"x":359.9201,"y":270,"z":180.0168}},"298237":{"lock":false,"pos":{"x":-22.6146,"y":1.3701,"z":-65.5964},"rot":{"x":0.0168,"y":180.0003,"z":359.9792}},"2b0bee":{"lock":false,"pos":{"x":-19.2998,"y":1.3076,"z":-84.8182},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"2b7ea2":{"lock":false,"pos":{"x":-10.4852,"y":1.0777,"z":73.5727},"rot":{"x":359.9792,"y":89.9769,"z":359.9832}},"2bf3e1":{"lock":false,"pos":{"x":-2.6887,"y":1.6191,"z":-5.0485},"rot":{"x":359.9197,"y":270.0182,"z":0.0168}},"2c2feb":{"lock":false,"pos":{"x":-26.9465,"y":1.619,"z":0.0429},"rot":{"x":359.9201,"y":270.0127,"z":0.0168}},"2e2f73":{"lock":false,"pos":{"x":-23.6765,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"307044":{"lock":false,"pos":{"x":-16.6385,"y":1.3553,"z":-83.5415},"rot":{"x":0.0208,"y":269.9782,"z":0.0168}},"31fffc":{"lock":false,"pos":{"x":-23.6766,"y":1.6258,"z":-7.7},"rot":{"x":359.9201,"y":270,"z":180.0168}},"34592b":{"lock":false,"pos":{"x":-3.7823,"y":1.4788,"z":-27.0319},"rot":{"x":359.9201,"y":270.0278,"z":0.0168}},"3701d9":{"lock":false,"pos":{"x":-10.4852,"y":1.0764,"z":68.9727},"rot":{"x":359.9792,"y":89.9804,"z":359.9832}},"3742e4":{"lock":false,"pos":{"x":-26.3002,"y":1.2688,"z":-76.9454},"rot":{"x":359.9792,"y":89.9993,"z":359.9832}},"376a06":{"lock":false,"pos":{"x":-26.3002,"y":1.2688,"z":-76.9456},"rot":{"x":359.9792,"y":89.9798,"z":359.9832}},"389792":{"lock":false,"pos":{"x":-22.6157,"y":1.3668,"z":-76.946},"rot":{"x":0.0168,"y":180,"z":359.9792}},"3c5886":{"lock":false,"pos":{"x":-30.2243,"y":1.6417,"z":15.19},"rot":{"x":359.9201,"y":269.9999,"z":0.0168}},"3c7b42":{"lock":false,"pos":{"x":-23.6767,"y":1.6133,"z":-3.8301},"rot":{"x":359.9832,"y":0.0051,"z":359.9201}},"3ddfeb":{"lock":false,"pos":{"x":-16.6394,"y":1.3546,"z":-86.0186},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"3f60eb":{"lock":false,"pos":{"x":-19.2948,"y":1.3714,"z":-65.5815},"rot":{"x":0.0208,"y":269.9986,"z":0.0168}},"41bfc7":{"lock":false,"pos":{"x":-16.6532,"y":1.3615,"z":-62.4536},"rot":{"x":0.0211,"y":269.0246,"z":0.0164}},"43239b":{"lock":false,"pos":{"x":-30.2242,"y":1.6394,"z":7.57},"rot":{"x":359.9201,"y":270,"z":180.0168}},"44d1ab":{"lock":false,"pos":{"x":-16.6402,"y":1.355,"z":-84.8182},"rot":{"x":0.0208,"y":270.0322,"z":0.0168}},"4ad11b":{"lock":false,"pos":{"x":-16.6373,"y":1.3569,"z":-78.1785},"rot":{"x":0.0209,"y":269.8461,"z":0.0167}},"4d3ac8":{"lock":false,"pos":{"x":-26.3,"y":1.2757,"z":-53.4369},"rot":{"x":359.9792,"y":90.0003,"z":359.9832}},"4e809f":{"lock":false,"pos":{"x":-22.617,"y":1.3133,"z":-61.2414},"rot":{"x":0.0208,"y":270,"z":0.0168}},"52127f":{"lock":false,"pos":{"x":-2.7248,"y":1.599,"z":0.3733},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"543164":{"lock":false,"pos":{"x":-16.6421,"y":1.3592,"z":-70.2847},"rot":{"x":0.0209,"y":269.8676,"z":0.0167}},"55012a":{"lock":false,"pos":{"x":-30.2242,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"554be6":{"lock":false,"pos":{"x":-30.2244,"y":1.6247,"z":3.8599},"rot":{"x":359.9832,"y":0.0071,"z":359.92}},"55e98a":{"lock":false,"pos":{"x":-19.2936,"y":1.3099,"z":-76.9415},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"565f15":{"lock":false,"pos":{"x":-22.6158,"y":1.3087,"z":-76.946},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"5b38c6":{"lock":false,"pos":{"x":-26.9136,"y":1.6179,"z":-3.626},"rot":{"x":359.9201,"y":270.0271,"z":0.0168}},"5d16e3":{"lock":false,"pos":{"x":-16.6401,"y":1.3619,"z":-61.231},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"6330da":{"lock":false,"pos":{"x":-16.6401,"y":1.3645,"z":-52.152},"rot":{"x":0.0208,"y":270.0314,"z":0.0168}},"646860":{"lock":false,"pos":{"x":-10.3191,"y":1.0818,"z":87.1778},"rot":{"x":359.9792,"y":89.9741,"z":359.9832}},"6bd479":{"lock":false,"pos":{"x":-16.6403,"y":1.3576,"z":-75.7054},"rot":{"x":0.0208,"y":270.0208,"z":0.0168}},"6e30b0":{"lock":false,"pos":{"x":-10.4363,"y":1.0818,"z":87.5054},"rot":{"x":359.9792,"y":89.9739,"z":359.9832}},"7234af":{"lock":false,"pos":{"x":-25.1063,"y":1.6197,"z":11.1563},"rot":{"x":0.0683,"y":135.1794,"z":0.0448}},"72caa1":{"lock":false,"pos":{"x":-16.6392,"y":1.3606,"z":-65.5811},"rot":{"x":0.0208,"y":269.9983,"z":0.0168}},"75298f":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":270.025,"z":0.0168}},"779aa6":{"lock":false,"pos":{"x":-16.6402,"y":1.3549,"z":-84.8182},"rot":{"x":0.0208,"y":270.0096,"z":0.0168}},"7929dd":{"lock":false,"pos":{"x":-23.6765,"y":1.6303,"z":7.57},"rot":{"x":359.9201,"y":270,"z":180.0168}},"7af9ff":{"lock":false,"pos":{"x":-26.2999,"y":1.2688,"z":-76.9454},"rot":{"x":359.9792,"y":90.0002,"z":359.9832}},"7f7566":{"lock":false,"pos":{"x":-22.6157,"y":1.3087,"z":-76.946},"rot":{"x":0.0168,"y":180.0001,"z":359.9792}},"825d74":{"lock":false,"pos":{"x":-30.2243,"y":1.6202,"z":-11.51},"rot":{"x":0.0169,"y":179.9742,"z":0.0799}},"848191":{"lock":false,"pos":{"x":-27.2223,"y":1.6194,"z":0.1067},"rot":{"x":0.0799,"y":89.9749,"z":359.9831}},"84a141":{"lock":false,"pos":{"x":-16.6403,"y":1.3576,"z":-75.7054},"rot":{"x":0.0208,"y":270.0334,"z":0.0168}},"8551e1":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":270.0032,"z":0.0168}},"855920":{"lock":false,"pos":{"x":-23.7787,"y":1.6157,"z":3.6187},"rot":{"x":0.0166,"y":180.1407,"z":0.08}},"875dca":{"lock":false,"pos":{"x":-16.6336,"y":1.3569,"z":-78.1716},"rot":{"x":0.0218,"y":266.6161,"z":0.0155}},"888fcc":{"lock":false,"pos":{"x":-19.2998,"y":1.3657,"z":-84.8182},"rot":{"x":0.0208,"y":270.0035,"z":0.0168}},"8b0a9e":{"lock":false,"pos":{"x":-16.639,"y":1.361,"z":-64.3414},"rot":{"x":0.0208,"y":269.9907,"z":0.0168}},"8e8dcf":{"lock":false,"pos":{"x":-22.6157,"y":1.311,"z":-69.0756},"rot":{"x":0.0168,"y":180,"z":359.9792}},"8f57db":{"lock":false,"pos":{"x":-22.6169,"y":1.3133,"z":-61.2414},"rot":{"x":0.0168,"y":179.9999,"z":359.9792}},"90cfdb":{"lock":false,"pos":{"x":-16.6385,"y":1.3554,"z":-83.5415},"rot":{"x":0.0208,"y":270.0007,"z":0.0168}},"92c727":{"lock":false,"pos":{"x":-26.3001,"y":1.2734,"z":-61.241},"rot":{"x":359.9792,"y":89.9999,"z":359.9832}},"92cda8":{"lock":false,"pos":{"x":-22.6157,"y":1.311,"z":-69.0756},"rot":{"x":0.0209,"y":269.6944,"z":0.0167}},"969654":{"lock":false,"pos":{"x":-22.6139,"y":1.3156,"z":-53.4338},"rot":{"x":0.0208,"y":270,"z":0.0168}},"972bf0":{"lock":false,"pos":{"x":-10.4852,"y":1.0804,"z":82.7727},"rot":{"x":359.9792,"y":89.9804,"z":359.9832}},"97e7a1":{"lock":false,"pos":{"x":-2.7248,"y":1.6208,"z":0.3733},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"9cd95a":{"lock":false,"pos":{"x":-16.6335,"y":1.3615,"z":-62.4568},"rot":{"x":0.0218,"y":266.5908,"z":0.0155}},"9e80b9":{"lock":false,"pos":{"x":-16.64,"y":1.3638,"z":-54.6207},"rot":{"x":0.0208,"y":269.9772,"z":0.0168}},"a01d1c":{"lock":false,"pos":{"x":-10.4852,"y":1.0791,"z":78.1727},"rot":{"x":359.9792,"y":89.9802,"z":359.9832}},"a09177":{"lock":false,"pos":{"x":-2.6886,"y":1.6191,"z":-5.0469},"rot":{"x":359.9197,"y":269.9995,"z":0.0168}},"a13075":{"lock":false,"pos":{"x":-22.6169,"y":1.3064,"z":-84.8185},"rot":{"x":0.0208,"y":269.9926,"z":0.0168}},"a6ca48":{"lock":false,"pos":{"x":-26.2999,"y":1.2711,"z":-69.0603},"rot":{"x":359.9792,"y":90.0002,"z":359.9832}},"a7606b":{"lock":false,"pos":{"x":-16.6466,"y":1.3592,"z":-70.295},"rot":{"x":0.0218,"y":266.5696,"z":0.0155}},"a95b8c":{"lock":false,"pos":{"x":-22.6169,"y":1.3064,"z":-84.8185},"rot":{"x":0.0168,"y":179.9999,"z":359.9792}},"aaeac7":{"lock":false,"pos":{"x":-16.6401,"y":1.36,"z":-67.8206},"rot":{"x":0.0208,"y":270.0258,"z":0.0168}},"ab52dc":{"lock":false,"pos":{"x":-26.2996,"y":1.2665,"z":-84.818},"rot":{"x":359.9792,"y":90.0128,"z":359.9832}},"b675fd":{"lock":false,"pos":{"x":-16.6403,"y":1.3596,"z":-69.0603},"rot":{"x":0.0208,"y":270.0005,"z":0.0168}},"ba989d":{"lock":false,"pos":{"x":-23.6765,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":180.0168}},"bb1f89":{"lock":false,"pos":{"x":-25.0849,"y":1.6131,"z":-11.4046},"rot":{"x":359.9554,"y":224.9996,"z":0.0684}},"bde4a6":{"lock":false,"pos":{"x":-16.64,"y":1.3641,"z":-53.3904},"rot":{"x":0.0208,"y":269.9887,"z":0.0168}},"be9e91":{"lock":false,"pos":{"x":-26.3002,"y":1.2711,"z":-69.0606},"rot":{"x":359.9792,"y":89.9998,"z":359.9832}},"c0e7b1":{"lock":false,"pos":{"x":-16.6414,"y":1.3546,"z":-86.0129},"rot":{"x":0.0218,"y":266.5644,"z":0.0155}},"c1aa7a":{"lock":false,"pos":{"x":-26.2995,"y":1.2665,"z":-84.8178},"rot":{"x":359.9792,"y":90.0001,"z":359.9832}},"c2ef97":{"lock":false,"pos":{"x":-22.6139,"y":1.3156,"z":-53.4381},"rot":{"x":0.0168,"y":179.9999,"z":359.9792}},"c72f87":{"lock":false,"pos":{"x":-19.2998,"y":1.3076,"z":-84.8182},"rot":{"x":0.0208,"y":269.9951,"z":0.0168}},"cbce2b":{"lock":false,"pos":{"x":0.1527,"y":1.6285,"z":-9.2222},"rot":{"x":359.9197,"y":270.0159,"z":0.0168}},"ccf9a8":{"lock":false,"pos":{"x":-27.2589,"y":1.6173,"z":-7.4508},"rot":{"x":0.0799,"y":90.0004,"z":359.9831}},"ce1703":{"lock":false,"pos":{"x":-19.2958,"y":1.3122,"z":-69.0607},"rot":{"x":0.0208,"y":269.9961,"z":0.0168}},"d17c37":{"lock":false,"pos":{"x":-26.9457,"y":1.6213,"z":7.5712},"rot":{"x":359.9201,"y":270,"z":0.0169}},"d3d270":{"lock":false,"pos":{"x":-16.6396,"y":1.3573,"z":-76.9456},"rot":{"x":0.0208,"y":270.0207,"z":0.0168}},"d4082a":{"lock":false,"pos":{"x":-19.2936,"y":1.3099,"z":-76.9415},"rot":{"x":0.0208,"y":269.9962,"z":0.0168}},"d6fdbf":{"lock":false,"pos":{"x":-16.6401,"y":1.3619,"z":-61.231},"rot":{"x":0.0208,"y":270.024,"z":0.0168}},"d70f9e":{"lock":false,"pos":{"x":-26.3,"y":1.2757,"z":-53.4368},"rot":{"x":359.9792,"y":89.9999,"z":359.9832}},"d7ba40":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":359.9832,"y":0.0105,"z":359.92}},"d8e1ad":{"lock":false,"pos":{"x":-16.6401,"y":1.3569,"z":-78.1756},"rot":{"x":0.0208,"y":270.0207,"z":0.0168}},"d9f2c7":{"lock":false,"pos":{"x":-16.6385,"y":1.3554,"z":-83.5415},"rot":{"x":0.0208,"y":269.9983,"z":0.0168}},"d9fb86":{"lock":false,"pos":{"x":-16.6396,"y":1.3573,"z":-76.9456},"rot":{"x":0.0208,"y":270.0086,"z":0.0168}},"dcceb8":{"lock":false,"pos":{"x":12.2502,"y":1.4727,"z":27.9861},"rot":{"x":359.9201,"y":270.0878,"z":0.0168}},"de216f":{"lock":false,"pos":{"x":-16.6401,"y":1.3622,"z":-60.001},"rot":{"x":0.0208,"y":270.0149,"z":0.0168}},"e04b48":{"lock":false,"pos":{"x":-16.6404,"y":1.3576,"z":-75.7053},"rot":{"x":0.0208,"y":270.0152,"z":0.0168}},"e1786c":{"lock":false,"pos":{"x":-16.6394,"y":1.3546,"z":-86.0186},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"e86318":{"lock":false,"pos":{"x":-30.2243,"y":1.6349,"z":-7.7},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"f0d3cc":{"lock":false,"pos":{"x":-16.64,"y":1.3642,"z":-53.3904},"rot":{"x":0.0208,"y":270.0119,"z":0.0168}},"f30100":{"lock":false,"pos":{"x":-30.2242,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":180.0168}},"f48116":{"lock":false,"pos":{"x":12.2503,"y":1.4703,"z":19.9865},"rot":{"x":359.9201,"y":270.0402,"z":0.0168}},"f69811":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"f7a65d":{"lock":false,"pos":{"x":-16.64,"y":1.3645,"z":-52.152},"rot":{"x":0.0208,"y":270.0303,"z":0.0168}},"f7bef5":{"lock":false,"pos":{"x":-19.3,"y":1.3168,"z":-53.4358},"rot":{"x":0.0208,"y":270.0453,"z":0.0168}},"f94187":{"lock":false,"pos":{"x":-16.6401,"y":1.3622,"z":-60.001},"rot":{"x":0.0208,"y":270.0422,"z":0.0168}},"fc1612":{"lock":false,"pos":{"x":-16.6396,"y":1.3573,"z":-76.9456},"rot":{"x":0.0208,"y":270.0098,"z":0.0168}},"fc27ff":{"lock":false,"pos":{"x":-26.2991,"y":1.2721,"z":-65.5814},"rot":{"x":359.9792,"y":90.0019,"z":359.9832}},"fc34bd":{"lock":false,"pos":{"x":-10.4561,"y":1.0831,"z":91.8885},"rot":{"x":359.9792,"y":89.9725,"z":359.9832}},"fc63ca":{"lock":false,"pos":{"x":-19.2936,"y":1.368,"z":-76.9415},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"ffa2b2":{"lock":false,"pos":{"x":-16.6402,"y":1.355,"z":-84.8182},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Future Reflections Snap: true Sticky: true +Tags: +- LargeBox Tooltip: true Transform: posX: -9.2 posY: 1.63 posZ: 68.86 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 0.65 - scaleY: 0.09 - scaleZ: 0.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 0.14 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Idol Thoughts 2d417b.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Idol Thoughts 2d417b.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Idol Thoughts 2d417b.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Idol Thoughts 2d417b.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Idol Thoughts 2d417b.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Idol Thoughts 2d417b.yaml index 81972b743..d483a8f7e 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Idol Thoughts 2d417b.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Idol Thoughts 2d417b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1011563111884720834/103D38A8FBBFA64EB66439667F8775B15FC679C9/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Idol Thoughts 2d417b.ttslua' -LuaScriptState: '{"ml":{"0fad66":{"lock":false,"pos":{"x":12.2500028610229,"y":1.46070170402527,"z":-12.6663017272949},"rot":{"x":359.920104980469,"y":270.013061523438,"z":0.016855750232935}},"16ceab":{"lock":false,"pos":{"x":12.2508039474487,"y":1.46838736534119,"z":13.4375},"rot":{"x":359.920135498047,"y":269.997741699219,"z":0.0168768782168627}},"34b55b":{"lock":false,"pos":{"x":12.2501564025879,"y":1.54031658172607,"z":19.986349105835},"rot":{"x":0.0798780843615532,"y":90.0000076293945,"z":359.983123779297}},"49dfb9":{"lock":false,"pos":{"x":12.2508029937744,"y":1.46327579021454,"z":-3.92020153999329},"rot":{"x":359.920135498047,"y":269.994262695313,"z":0.0168821681290865}},"4f944f":{"lock":false,"pos":{"x":12.2503032684326,"y":1.46581149101257,"z":4.68769979476929},"rot":{"x":359.920135498047,"y":270.004669189453,"z":0.0168670099228621}},"82e1ed":{"lock":false,"pos":{"x":-4.55330038070679,"y":1.58349049091339,"z":-14.8002042770386},"rot":{"x":359.919738769531,"y":270,"z":0.0168378297239542}},"d5b604":{"lock":false,"pos":{"x":12.2505016326904,"y":1.27312207221985,"z":-21.3052005767822},"rot":{"x":359.955413818359,"y":225.000747680664,"z":0.0684693679213524}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Idol Thoughts @@ -63,9 +63,9 @@ Transform: posX: -7.85 posY: 1.63 posZ: 68.83 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Into the Shadowlands 019847.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Into the Shadowlands 019847.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Into the Shadowlands 019847.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Into the Shadowlands 019847.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Into the Shadowlands 019847.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Into the Shadowlands 019847.yaml index d84dcba76..45c3820e8 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Into the Shadowlands 019847.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Into the Shadowlands 019847.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142946871/EAA18FFE753B1ED020A9F3117E9654B093369D26/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Into the Shadowlands 019847.ttslua' -LuaScriptState: '{"ml":{"b1bc62":{"lock":false,"pos":{"x":10.2009,"y":1.2817,"z":-2.161},"rot":{"x":0.0799,"y":89.9964,"z":359.9831}},"c1aad0":{"lock":false,"pos":{"x":9.6318,"y":1.285,"z":6.3703},"rot":{"x":0.0799,"y":89.9923,"z":359.9831}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Into the Shadowlands @@ -63,11 +63,11 @@ Transform: posX: -5.02 posY: 1.62 posZ: 70.21 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 - scaleY: 0.2 - scaleZ: 2.46 + scaleY: 0.46 + scaleZ: 2.42 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Jumanji b46db2.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Jumanji b46db2.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Jumanji b46db2.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Jumanji b46db2.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Jumanji b46db2.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Jumanji b46db2.yaml index 63745f166..bfe40670f 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Jumanji b46db2.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Jumanji b46db2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1847049778276522891/B0F1D72796E5A43963B6EFA6B7FD870A89B139AF/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Jumanji b46db2.ttslua' -LuaScriptState: '{"ml":{"1ece3e":{"lock":false,"pos":{"x":-9.2714,"y":1.5999,"z":6.5718},"rot":{"x":359.9324,"y":315.0023,"z":359.9566}},"37fb4d":{"lock":false,"pos":{"x":11.3295,"y":1.2754,"z":-17.9023},"rot":{"x":359.9831,"y":0.0015,"z":359.92}},"3b7b53":{"lock":false,"pos":{"x":11.9517,"y":1.2851,"z":17.9868},"rot":{"x":359.9831,"y":0.0004,"z":359.92}},"61b7e9":{"lock":false,"pos":{"x":-9.3098,"y":1.5959,"z":-7.1846},"rot":{"x":359.9324,"y":314.9627,"z":359.9567}},"73b5e1":{"lock":false,"pos":{"x":12.2521,"y":1.4656,"z":3.9858},"rot":{"x":359.9201,"y":269.9994,"z":0.0169}},"847279":{"lock":false,"pos":{"x":19.0419,"y":1.27,"z":0.1407},"rot":{"x":359.9831,"y":0.0011,"z":359.92}},"8a3606":{"lock":false,"pos":{"x":12.2532,"y":1.4609,"z":-12.0152},"rot":{"x":359.9201,"y":269.9905,"z":0.0169}},"8cd599":{"lock":false,"pos":{"x":14.1599,"y":1.523,"z":-29.6479},"rot":{"x":0.0799,"y":89.988,"z":359.9831}},"90b00d":{"lock":false,"pos":{"x":8.8914,"y":1.5,"z":39.8367},"rot":{"x":0,"y":270.012,"z":0}},"c2f5ae":{"lock":false,"pos":{"x":12.2631,"y":1.4727,"z":28.0227},"rot":{"x":359.9201,"y":269.9617,"z":0.0169}},"c3633f":{"lock":false,"pos":{"x":12.2512,"y":1.4632,"z":-4.0144},"rot":{"x":359.9201,"y":269.9982,"z":0.0169}},"c5afbe":{"lock":false,"pos":{"x":-0.2602,"y":1.6269,"z":-16.4254},"rot":{"x":359.9197,"y":269.9958,"z":0.0168}},"ca53e8":{"lock":false,"pos":{"x":-9.3676,"y":1.5974,"z":-2.4075},"rot":{"x":359.9317,"y":314.9599,"z":359.9565}},"cba0aa":{"lock":false,"pos":{"x":-9.4101,"y":1.5988,"z":2.1645},"rot":{"x":359.9324,"y":315.025,"z":359.9566}},"e11d84":{"lock":false,"pos":{"x":12.2537,"y":1.468,"z":11.986},"rot":{"x":359.9201,"y":269.9912,"z":0.0169}},"eda22b":{"lock":false,"pos":{"x":1.1476,"y":1.5712,"z":-29.7397},"rot":{"x":359.9201,"y":270.022,"z":0.0168}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Jumanji @@ -63,9 +63,9 @@ Transform: posX: 17.14 posY: 3.39 posZ: -31.21 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Kaimonogatari 2df25a.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Kaimonogatari 2df25a.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Kaimonogatari 2df25a.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Kaimonogatari 2df25a.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Kaimonogatari 2df25a.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Kaimonogatari 2df25a.yaml index 85fcb5919..de1f29bdb 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Kaimonogatari 2df25a.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Kaimonogatari 2df25a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1673610640345018565/0AFEB7913AD4F24AA04D2CB7DCD97106F58D33D9/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Kaimonogatari 2df25a.ttslua' -LuaScriptState: '{"ml":{"2a9a02":{"lock":false,"pos":{"x":3.5083,"y":1.6247,"z":-6.1625},"rot":{"x":359.9197,"y":269.9857,"z":0.0168}},"4076cd":{"lock":false,"pos":{"x":12.2501,"y":1.4727,"z":27.9864},"rot":{"x":359.9201,"y":269.9268,"z":0.017}},"486b0b":{"lock":false,"pos":{"x":3.5252,"y":1.6251,"z":-4.553},"rot":{"x":359.9197,"y":270.0142,"z":0.0168}},"64ad17":{"lock":false,"pos":{"x":12.2496,"y":1.4562,"z":-28.0137},"rot":{"x":359.9201,"y":269.9981,"z":0.0169}},"8221db":{"lock":false,"pos":{"x":12.2519,"y":1.468,"z":11.9864},"rot":{"x":359.9201,"y":269.9924,"z":0.0169}},"8f297e":{"lock":false,"pos":{"x":12.2494,"y":1.4633,"z":-4.0136},"rot":{"x":359.9201,"y":269.9989,"z":0.0169}},"9a39d8":{"lock":false,"pos":{"x":12.2505,"y":1.4585,"z":-20.0137},"rot":{"x":359.9202,"y":269.7147,"z":0.0173}},"ad56f2":{"lock":false,"pos":{"x":12.2499,"y":1.4703,"z":19.9864},"rot":{"x":359.9201,"y":269.9645,"z":0.0169}},"b34bec":{"lock":false,"pos":{"x":12.1371,"y":1.3166,"z":-46.4024},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"b86938":{"lock":false,"pos":{"x":12.2499,"y":1.4609,"z":-12.0136},"rot":{"x":359.9202,"y":269.7146,"z":0.0173}},"b987fc":{"lock":false,"pos":{"x":12.2492,"y":1.475,"z":35.9864},"rot":{"x":359.9201,"y":269.9995,"z":0.0169}},"b99de3":{"lock":false,"pos":{"x":12.2498,"y":1.4656,"z":3.9864},"rot":{"x":359.9201,"y":269.9216,"z":0.017}},"c644be":{"lock":false,"pos":{"x":-3.4418,"y":1.4948,"z":28.9615},"rot":{"x":359.9201,"y":269.9807,"z":0.0169}},"eda22b":{"lock":false,"pos":{"x":-1.4655,"y":1.5756,"z":-26.9304},"rot":{"x":359.9201,"y":270.0008,"z":0.0169}},"f051fc":{"lock":false,"pos":{"x":12.2492,"y":1.475,"z":35.9864},"rot":{"x":359.9201,"y":270.0026,"z":0.0169}},"f5db25":{"lock":false,"pos":{"x":-3.4942,"y":1.5821,"z":-14.5172},"rot":{"x":359.9197,"y":269.9996,"z":0.0168}},"fba392":{"lock":false,"pos":{"x":12.2504,"y":1.4538,"z":-36.0139},"rot":{"x":359.9201,"y":269.998,"z":0.0169}},"fcfa07":{"lock":false,"pos":{"x":-11.9064,"y":1.5066,"z":28.8153},"rot":{"x":359.9201,"y":269.9953,"z":0.0169}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Kaimonogatari @@ -63,9 +63,9 @@ Transform: posX: -7.32 posY: 1.63 posZ: 68.34 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Kiedy sny Stają się Rzeczywiścią acdf16.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Kiedy sny Stają się Rzeczywiścią acdf16.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Kiedy sny Stają się Rzeczywiścią acdf16.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Kiedy sny Stają się Rzeczywiścią acdf16.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Kiedy sny Stają się Rzeczywiścią acdf16.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Kiedy sny Stają się Rzeczywiścią acdf16.yaml index 10ae0c5ff..934a7d53c 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Kiedy sny Stają się Rzeczywiścią acdf16.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Kiedy sny Stają się Rzeczywiścią acdf16.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142937909/81868D8E838249B9D5C467282B6EF12DC5879CA5/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -53,7 +53,7 @@ LayoutGroupSortIndex: 0 Locked: false LuaScript: !include "Custom_Model Kiedy sny Staj\u0105 si\u0119 Rzeczywi\u015Bci\u0105 acdf16.ttslua" -LuaScriptState: '{"ml":{"1e00a9":{"lock":false,"pos":{"x":9.3117,"y":1.285,"z":4.9883},"rot":{"x":0.0799,"y":89.9803,"z":359.9831}},"24e5eb":{"lock":false,"pos":{"x":-5.6029,"y":1.5487,"z":23.9983},"rot":{"x":359.9201,"y":270.0043,"z":359.5229}},"2889f0":{"lock":false,"pos":{"x":9.5686,"y":1.2858,"z":9.0951},"rot":{"x":0.0799,"y":89.9924,"z":359.9831}},"31a93a":{"lock":false,"pos":{"x":8.9743,"y":1.2844,"z":1.3267},"rot":{"x":0.0799,"y":89.9966,"z":359.9831}},"68ca42":{"lock":false,"pos":{"x":-3.3874,"y":1.3969,"z":-14.6273},"rot":{"x":359.9832,"y":-0.0008,"z":359.9196}},"bd069f":{"lock":false,"pos":{"x":9.3965,"y":1.2827,"z":-2.4823},"rot":{"x":0.0799,"y":89.9951,"z":359.9831}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: "Kiedy sny Staj\u0105 si\u0119 Rzeczywi\u015Bci\u0105" @@ -64,9 +64,9 @@ Transform: posX: -7.37 posY: 1.63 posZ: 68.08 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Machining A Mystery 79b36d.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Machining A Mystery 79b36d.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Machining A Mystery 79b36d.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Machining A Mystery 79b36d.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Machining A Mystery 79b36d.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Machining A Mystery 79b36d.yaml index 3b61bd699..3df26e9e4 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Machining A Mystery 79b36d.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Machining A Mystery 79b36d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1860561550045252585/5B883A570DB12EF90E66C9AC83D48B64A397F27D/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Machining A Mystery 79b36d.ttslua' -LuaScriptState: '{"ml":{"00bd86":{"lock":false,"pos":{"x":5.6543,"y":1.232,"z":50.7759},"rot":{"x":0.0208,"y":270.012,"z":0.0168}},"13f2cf":{"lock":false,"pos":{"x":4.3706,"y":1.6287,"z":11.8032},"rot":{"x":359.9197,"y":269.996,"z":0.0168}},"177b23":{"lock":false,"pos":{"x":12.1228,"y":1.4714,"z":23.2312},"rot":{"x":359.9201,"y":270,"z":0.0169}},"19068f":{"lock":false,"pos":{"x":0.8939,"y":1.2629,"z":53.7457},"rot":{"x":0.0281,"y":270.0175,"z":0.0168}},"2121c5":{"lock":false,"pos":{"x":13.3962,"y":1.2686,"z":52.9511},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"24f032":{"lock":false,"pos":{"x":-6.3722,"y":1.2573,"z":49.7998},"rot":{"x":0.0208,"y":270.008,"z":0.0168}},"341647":{"lock":false,"pos":{"x":0.0946,"y":1.2608,"z":53.7843},"rot":{"x":0.0208,"y":270.0005,"z":0.0168}},"4647f5":{"lock":false,"pos":{"x":11.7039,"y":1.4553,"z":-33.7546},"rot":{"x":359.9201,"y":270.0009,"z":0.0169}},"4a29c2":{"lock":false,"pos":{"x":12.2501,"y":1.4609,"z":-12.0137},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"503fc5":{"lock":false,"pos":{"x":12.2519,"y":1.468,"z":11.9864},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"5146f4":{"lock":false,"pos":{"x":-1.0265,"y":1.26,"z":52.3064},"rot":{"x":0.0208,"y":269.9875,"z":0.0168}},"5ba390":{"lock":false,"pos":{"x":0.1593,"y":1.2634,"z":56.6363},"rot":{"x":0.0281,"y":270.001,"z":0.0168}},"5ccd13":{"lock":false,"pos":{"x":-9.2356,"y":1.6315,"z":-10.45},"rot":{"x":359.9207,"y":269.9716,"z":0.0174}},"621194":{"lock":false,"pos":{"x":-2.6347,"y":1.2596,"z":53.1414},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"6a1f99":{"lock":false,"pos":{"x":11.8347,"y":1.4582,"z":-23.1062},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"6d8dad":{"lock":false,"pos":{"x":11.901,"y":1.2781,"z":-6.0589},"rot":{"x":0.08,"y":89.9996,"z":359.9831}},"6e0236":{"lock":false,"pos":{"x":11.9519,"y":1.2794,"z":-1.4092},"rot":{"x":0.08,"y":89.9995,"z":359.9831}},"7bda17":{"lock":false,"pos":{"x":12.3581,"y":1.4744,"z":34.235},"rot":{"x":359.9201,"y":270,"z":0.0169}},"7c3cdc":{"lock":false,"pos":{"x":11.8848,"y":1.2769,"z":-10.2113},"rot":{"x":0.08,"y":89.9995,"z":359.9831}},"931909":{"lock":false,"pos":{"x":-2.956,"y":1.2592,"z":52.1944},"rot":{"x":0.0208,"y":270.0009,"z":0.0168}},"a3da91":{"lock":false,"pos":{"x":-0.9527,"y":1.2611,"z":56.0573},"rot":{"x":0.0208,"y":270.0182,"z":0.0168}},"a70df2":{"lock":false,"pos":{"x":-6.2862,"y":1.2574,"z":50.0407},"rot":{"x":0.0208,"y":269.9756,"z":0.0168}},"a7e34c":{"lock":false,"pos":{"x":-2.9898,"y":1.2592,"z":52.1423},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"b2077d":{"lock":false,"pos":{"x":-0.9299,"y":1.3932,"z":-15.3285},"rot":{"x":359.9832,"y":0.0008,"z":359.9197}},"c0046a":{"lock":false,"pos":{"x":11.9814,"y":1.4648,"z":-0.1445},"rot":{"x":359.9201,"y":270,"z":0.0169}},"e54f2a":{"lock":false,"pos":{"x":12.1996,"y":1.2807,"z":3.856},"rot":{"x":0.0799,"y":89.9951,"z":359.9831}},"e7f6e5":{"lock":false,"pos":{"x":-3.2102,"y":1.2592,"z":52.2735},"rot":{"x":0.0208,"y":270.0028,"z":0.0168}},"eda22b":{"lock":false,"pos":{"x":-5.0775,"y":1.5802,"z":-28.4084},"rot":{"x":359.9201,"y":269.9929,"z":0.0169}},"eeb179":{"lock":false,"pos":{"x":-6.1171,"y":1.2613,"z":63.1315},"rot":{"x":0.0208,"y":270,"z":0.0168}},"f57a86":{"lock":false,"pos":{"x":-3.2731,"y":1.2596,"z":54.0476},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Machining A Mystery @@ -63,9 +63,9 @@ Transform: posX: -23.95 posY: 2.36 posZ: -59.24 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model North Country Cycle aaceca.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model North Country Cycle aaceca.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model North Country Cycle aaceca.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model North Country Cycle aaceca.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model North Country Cycle aaceca.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model North Country Cycle aaceca.yaml index 1c48536c2..12f3b9e77 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model North Country Cycle aaceca.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model North Country Cycle aaceca.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142942211/3504BAF688D57DC30E7E1E2009A0FD4951D3BA58/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model North Country Cycle aaceca.ttslua' -LuaScriptState: '{"ml":{"147dea":{"lock":false,"pos":{"x":9.4431,"y":1.2854,"z":7.085},"rot":{"x":0.0799,"y":89.9987,"z":359.9831}},"7f9f0d":{"lock":false,"pos":{"x":9.3077,"y":1.2837,"z":0.2819},"rot":{"x":0.0799,"y":89.9984,"z":359.9831}},"df5156":{"lock":false,"pos":{"x":9.2722,"y":1.2819,"z":-6.0997},"rot":{"x":0.0799,"y":89.9909,"z":359.9831}},"ea0896":{"lock":false,"pos":{"x":-3.3332,"y":1.5816,"z":-15.257},"rot":{"x":359.9197,"y":270.0002,"z":0.0168}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: North Country Cycle @@ -63,11 +63,11 @@ Transform: posX: -8.64 posY: 1.62 posZ: 66.44 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 - scaleY: 0.2 - scaleZ: 2.46 + scaleY: 0.46 + scaleZ: 2.42 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Of Sphinx and Sands edb650.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Of Sphinx and Sands edb650.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Of Sphinx and Sands edb650.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Of Sphinx and Sands edb650.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Of Sphinx and Sands edb650.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Of Sphinx and Sands edb650.yaml index 3f5cc317f..b83be6bc9 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Of Sphinx and Sands edb650.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Of Sphinx and Sands edb650.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1705159936395227290/3E915F544AB47D63A4B1D05B0412216586EFA34A/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Of Sphinx and Sands edb650.ttslua' -LuaScriptState: '{"ml":{"13f2cf":{"lock":false,"pos":{"x":4.3706,"y":1.6287,"z":11.8032},"rot":{"x":359.9197,"y":269.996,"z":0.0168}},"6d8dad":{"lock":false,"pos":{"x":11.901,"y":1.2781,"z":-6.0589},"rot":{"x":0.08,"y":89.9996,"z":359.9831}},"6e0236":{"lock":false,"pos":{"x":11.9519,"y":1.2794,"z":-1.4092},"rot":{"x":0.08,"y":89.9995,"z":359.9831}},"7c3cdc":{"lock":false,"pos":{"x":11.8848,"y":1.2769,"z":-10.2113},"rot":{"x":0.08,"y":89.9995,"z":359.9831}},"a3da91":{"lock":false,"pos":{"x":-0.9527,"y":1.2611,"z":56.0573},"rot":{"x":0.0208,"y":270.0182,"z":0.0168}},"e54f2a":{"lock":false,"pos":{"x":12.1996,"y":1.2807,"z":3.856},"rot":{"x":0.0799,"y":89.9951,"z":359.9831}},"eda22b":{"lock":false,"pos":{"x":-5.0775,"y":1.5802,"z":-28.4084},"rot":{"x":359.9201,"y":269.9929,"z":0.0169}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Of Sphinx and Sands @@ -63,9 +63,9 @@ Transform: posX: -9.65 posY: 1.63 posZ: 69.45 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Ordo Templi Orientis 608bea.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Ordo Templi Orientis 608bea.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Ordo Templi Orientis 608bea.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Ordo Templi Orientis 608bea.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Ordo Templi Orientis 608bea.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Ordo Templi Orientis 608bea.yaml index f51dbc075..57a2e6f7d 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Ordo Templi Orientis 608bea.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Ordo Templi Orientis 608bea.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1017195498765395843/F0F85DBE17C72D5D09BD012DEDBB9E154EB07E7B/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Ordo Templi Orientis 608bea.ttslua' -LuaScriptState: '{"ml":{"286579":{"lock":false,"pos":{"x":12.2487,"y":1.2782,"z":-4.0135},"rot":{"x":0.08,"y":90.0001,"z":359.9831}},"392e62":{"lock":false,"pos":{"x":0.0804,"y":1.6282,"z":-10.4566},"rot":{"x":359.9198,"y":269.984,"z":0.0169}},"7b28eb":{"lock":false,"pos":{"x":12.2495,"y":1.2806,"z":3.9864},"rot":{"x":0.08,"y":89.9951,"z":359.9831}},"7cda3f":{"lock":false,"pos":{"x":12.2512,"y":1.2829,"z":11.9866},"rot":{"x":0.08,"y":89.9997,"z":359.9831}},"b3bfc4":{"lock":false,"pos":{"x":-1.4651,"y":1.4756,"z":-26.9305},"rot":{"x":359.9201,"y":270.0049,"z":0.0169}},"ba2ded":{"lock":false,"pos":{"x":12.2492,"y":1.2759,"z":-12.0135},"rot":{"x":0.08,"y":89.9974,"z":359.9831}},"bbb70a":{"lock":false,"pos":{"x":12.2503,"y":1.4585,"z":-20.0136},"rot":{"x":359.9201,"y":270.0311,"z":0.0168}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Ordo Templi Orientis @@ -63,9 +63,9 @@ Transform: posX: -9.52 posY: 1.63 posZ: 67.75 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Parallel Universe 28e0a1.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Parallel Universe 28e0a1.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Parallel Universe 28e0a1.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Parallel Universe 28e0a1.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Parallel Universe 28e0a1.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Parallel Universe 28e0a1.yaml index e0e4535ed..cfb62bc0b 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Parallel Universe 28e0a1.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Parallel Universe 28e0a1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142944953/7A5D3A94BF4A7798157C999A3E1CEAAFC3652CAC/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Parallel Universe 28e0a1.ttslua' -LuaScriptState: '{"ml":{"56a08b":{"lock":false,"pos":{"x":-3.8679,"y":1.5824,"z":-15.4044},"rot":{"x":359.9197,"y":270.0026,"z":0.0168}},"6ca52c":{"lock":false,"pos":{"x":10.1258,"y":1.283,"z":1.8531},"rot":{"x":0.0799,"y":89.9977,"z":359.9831}},"8578ad":{"lock":false,"pos":{"x":-4.4263,"y":1.6455,"z":14.8008},"rot":{"x":359.9197,"y":269.9995,"z":0.0168}},"b4cf5a":{"lock":false,"pos":{"x":3.9877,"y":1.4679,"z":-27.2649},"rot":{"x":359.9201,"y":269.9991,"z":0.0169}},"c0897e":{"lock":false,"pos":{"x":10.4203,"y":1.2811,"z":-2.9799},"rot":{"x":0.0799,"y":89.9995,"z":359.9831}},"f39e68":{"lock":false,"pos":{"x":10.161,"y":1.2842,"z":6.4667},"rot":{"x":0.0799,"y":89.9954,"z":359.9831}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Parallel Universe @@ -63,9 +63,9 @@ Transform: posX: -8.77 posY: 1.63 posZ: 70.12 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Pokemon Eldritch Edition 75fe78.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Pokemon Eldritch Edition 75fe78.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Pokemon Eldritch Edition 75fe78.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Pokemon Eldritch Edition 75fe78.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Pokemon Eldritch Edition 75fe78.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Pokemon Eldritch Edition 75fe78.yaml index e19434161..e7b29c8d6 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Pokemon Eldritch Edition 75fe78.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Pokemon Eldritch Edition 75fe78.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1597043896926982160/40A0068DAB05395205E184765110430CAADDA2CF/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Pokemon Eldritch Edition 75fe78.ttslua' -LuaScriptState: '{"ml":{"05109d":{"lock":false,"pos":{"x":-3.12649917602539,"y":1.12493538856506,"z":-50.2695999145508},"rot":{"x":359.979156494141,"y":89.9994506835938,"z":359.983215332031}},"13ed7d":{"lock":false,"pos":{"x":12.2512035369873,"y":1.28292536735535,"z":11.9865989685059},"rot":{"x":0.0799588114023209,"y":89.9949340820313,"z":359.983093261719}},"1fae15":{"lock":false,"pos":{"x":12.1805038452148,"y":1.27355456352234,"z":-20.1693019866943},"rot":{"x":0.0799674317240715,"y":89.9949417114258,"z":359.983062744141}},"2cea4e":{"lock":false,"pos":{"x":66.0026016235352,"y":1.11109709739685,"z":-58.8017997741699},"rot":{"x":359.979156494141,"y":89.9906921386719,"z":359.983215332031}},"3da6dd":{"lock":false,"pos":{"x":12.2621040344238,"y":1.27820038795471,"z":-4.00930261611938},"rot":{"x":0.0799657329916954,"y":89.9984359741211,"z":359.983093261719}},"4c07bf":{"lock":false,"pos":{"x":12.2919034957886,"y":1.27108502388,"z":-28.030704498291},"rot":{"x":0.0799620524048805,"y":90.0000457763672,"z":359.983093261719}},"52d102":{"lock":false,"pos":{"x":12.2132043838501,"y":1.27584600448608,"z":-12.2319049835205},"rot":{"x":0.0799582898616791,"y":89.9938659667969,"z":359.983093261719}},"61801e":{"lock":false,"pos":{"x":12.1700048446655,"y":1.28535795211792,"z":19.8675079345703},"rot":{"x":0.0799623876810074,"y":89.996826171875,"z":359.983093261719}},"7b57ad":{"lock":false,"pos":{"x":16.2712059020996,"y":1.27489864826202,"z":3.76080012321472},"rot":{"x":0.0799572914838791,"y":89.9929580688477,"z":359.983093261719}},"9af38c":{"lock":false,"pos":{"x":12.2501535415649,"y":1.48254573345184,"z":-36.0138473510742},"rot":{"x":-0.000153532513650134,"y":269.96923828125,"z":359.721130371094}},"c627fc":{"lock":false,"pos":{"x":17.8328266143799,"y":1.45285880565643,"z":-12.8706102371216},"rot":{"x":359.920104980469,"y":270.017272949219,"z":0.0168486014008522}},"d14543":{"lock":false,"pos":{"x":66.4962005615234,"y":1.11095499992371,"z":80.5901031494141},"rot":{"x":359.979156494141,"y":89.9937591552734,"z":359.983215332031}},"e1caf1":{"lock":false,"pos":{"x":12.1709051132202,"y":1.28772139549255,"z":27.8930072784424},"rot":{"x":0.0799488052725792,"y":89.9712753295898,"z":359.983062744141}},"eda22b":{"lock":false,"pos":{"x":-5.44584989547729,"y":1.5804318189621,"z":-29.4421005249023},"rot":{"x":359.920135498047,"y":270.000427246094,"z":0.0168711524456739}},"f040a6":{"lock":false,"pos":{"x":12.1407060623169,"y":1.28064227104187,"z":3.70839309692383},"rot":{"x":0.0799626931548119,"y":89.9970016479492,"z":359.983093261719}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Pokemon Eldritch Edition @@ -63,9 +63,9 @@ Transform: posX: -9.74 posY: 1.63 posZ: 67.22 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Strange Aeons 2abdd6.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Strange Aeons 2abdd6.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Strange Aeons 2abdd6.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Strange Aeons 2abdd6.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Strange Aeons 2abdd6.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Strange Aeons 2abdd6.yaml index 6e7ba4071..9832dea8a 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Strange Aeons 2abdd6.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Strange Aeons 2abdd6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142947772/120E2BA8DF8C4E2AAC9E059FA046CC3A6229ECDF/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Strange Aeons 2abdd6.ttslua' -LuaScriptState: '{"ml":{"1f4db7":{"lock":false,"pos":{"x":-7.7139,"y":1.7478,"z":15.225},"rot":{"x":359.92,"y":270.0018,"z":180.0169}},"7ba738":{"lock":false,"pos":{"x":-3.946,"y":1.4062,"z":14.5235},"rot":{"x":359.9832,"y":-0.0016,"z":359.9197}},"82e1ed":{"lock":false,"pos":{"x":-4.1664,"y":1.5829,"z":-15.04},"rot":{"x":359.9197,"y":269.9994,"z":0.0168}},"961940":{"lock":false,"pos":{"x":8.4723,"y":1.2866,"z":6.7132},"rot":{"x":0.0799,"y":89.9989,"z":359.9831}},"c2fe44":{"lock":false,"pos":{"x":-0.4614,"y":1.7617,"z":-25.2014},"rot":{"x":359.9201,"y":269.9758,"z":0.0169}},"eea51b":{"lock":false,"pos":{"x":8.0856,"y":1.2853,"z":0.187},"rot":{"x":0.0799,"y":89.9983,"z":359.9831}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Strange Aeons @@ -63,9 +63,9 @@ Transform: posX: -9.02 posY: 1.63 posZ: 68.43 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Approaching Storm ab6b9a.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Approaching Storm ab6b9a.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Approaching Storm ab6b9a.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Approaching Storm ab6b9a.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Approaching Storm ab6b9a.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Approaching Storm ab6b9a.yaml index 39d8ced55..7f92e31b6 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Approaching Storm ab6b9a.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Approaching Storm ab6b9a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142917748/FA44959693A82787BC34D6FA2487911AB24E619B/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The Approaching Storm ab6b9a.ttslua' -LuaScriptState: '{"ml":{"20982e":{"lock":false,"pos":{"x":8.3104,"y":1.2871,"z":7.5999},"rot":{"x":0.08,"y":89.9985,"z":359.9831}},"266dcb":{"lock":false,"pos":{"x":8.1241,"y":1.2846,"z":-1.7036},"rot":{"x":0.08,"y":89.9962,"z":359.9831}},"3a3b5a":{"lock":false,"pos":{"x":8.159,"y":1.286,"z":2.9166},"rot":{"x":0.08,"y":89.9925,"z":359.9831}},"4d6544":{"lock":false,"pos":{"x":7.9998,"y":1.282,"z":-11.3677},"rot":{"x":359.92,"y":270.0005,"z":0.0169}},"67d524":{"lock":false,"pos":{"x":8.0606,"y":1.2899,"z":15.9247},"rot":{"x":0.08,"y":89.9808,"z":359.9831}},"7521a9":{"lock":false,"pos":{"x":-3.5895,"y":1.5822,"z":-14.7357},"rot":{"x":359.9197,"y":270.0013,"z":0.0168}},"84cdaf":{"lock":false,"pos":{"x":8.0379,"y":1.2834,"z":-6.2152},"rot":{"x":0.08,"y":89.9981,"z":359.9831}},"90aab1":{"lock":false,"pos":{"x":8.0656,"y":1.2886,"z":11.2954},"rot":{"x":0.08,"y":89.983,"z":359.9831}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The Approaching Storm @@ -63,9 +63,9 @@ Transform: posX: -8.54 posY: 1.63 posZ: 69.14 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Color Out of Oz be7d21.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Color Out of Oz be7d21.ttslua new file mode 100644 index 000000000..3c2a044ca --- /dev/null +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Color Out of Oz be7d21.ttslua @@ -0,0 +1,90 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) +end + +function buttonClick_download() + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Color Out of Oz be7d21.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Color Out of Oz be7d21.yaml new file mode 100644 index 000000000..cbcbf6e27 --- /dev/null +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Color Out of Oz be7d21.yaml @@ -0,0 +1,72 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +AttachedDecals: +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ + Name: dunwich_back + Size: 7.4 + Transform: + posX: 0.0 + posY: 0.0 + posZ: 0.0 + rotX: 270.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +Autoraise: true +ColorDiffuse: + b: 0.40592 + g: 0.40592 + r: 0.40592 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1972044023032948791/D32BECDAF5C9309577EE0CE585E980F62EFBCEF3/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 0 +Description: '' +DragSelectable: true +GMNotes: fancreations/campaign_color_out_of_oz.json +GUID: be7d21 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model The Color Out of Oz be7d21.ttslua' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: The Color Out of Oz +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.63 + posY: 1.85 + posZ: 24.43 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Dying Star bcfff6.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Dying Star bcfff6.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Dying Star bcfff6.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Dying Star bcfff6.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Dying Star bcfff6.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Dying Star bcfff6.yaml index a70b49370..39495d34d 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Dying Star bcfff6.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Dying Star bcfff6.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142922162/AD09D68EC542F778CCA3A4F5B33E17EF50AFE31B/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The Dying Star bcfff6.ttslua' -LuaScriptState: '{"ml":{"9ae382":{"lock":false,"pos":{"x":-3.3515,"y":1.4052,"z":13.818},"rot":{"x":359.9832,"y":-0.0001,"z":359.9197}},"b310b9":{"lock":false,"pos":{"x":8.6044,"y":1.2859,"z":4.9796},"rot":{"x":0.08,"y":89.9997,"z":359.9831}},"c2a55d":{"lock":false,"pos":{"x":8.6023,"y":1.2838,"z":-2.2398},"rot":{"x":0.08,"y":89.9987,"z":359.9831}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The Dying Star @@ -63,9 +63,9 @@ Transform: posX: -8.44 posY: 1.63 posZ: 68.4 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Ghosts Of Onigawa Campaign Expansion 8daa73.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Ghosts Of Onigawa Campaign Expansion 8daa73.ttslua index d25f21689..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Ghosts Of Onigawa Campaign Expansion 8daa73.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Ghosts Of Onigawa Campaign Expansion 8daa73.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,6}, rotation={0,0,0}, height=500, width=1600, - font_size=350, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Ghosts Of Onigawa Campaign Expansion 8daa73.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Ghosts Of Onigawa Campaign Expansion 8daa73.yaml index c6df8a9a5..ba70b74f9 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Ghosts Of Onigawa Campaign Expansion 8daa73.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Ghosts Of Onigawa Campaign Expansion 8daa73.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://uploads-ssl.webflow.com/608a6a98b5956379a9c9e768/60eb7c9fb63de7d60d8d67ec_boxart-defuse.png MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj @@ -43,16 +43,18 @@ Name: Custom_Model Nickname: The Ghosts Of Onigawa Campaign Expansion Snap: true Sticky: true +Tags: +- LargeBox Tooltip: true Transform: posX: -1.06 posY: 4.29 posZ: 4.03 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 0.96 - scaleY: 0.27 - scaleZ: 0.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 0.14 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The London Set 0f96ac.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The London Set 0f96ac.ttslua index ad53849db..e6f67c6af 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The London Set 0f96ac.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The London Set 0f96ac.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The London Set 0f96ac.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The London Set 0f96ac.yaml index be06910f2..cf8d66947 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The London Set 0f96ac.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The London Set 0f96ac.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142939236/70113DAB44263CD5EA5A0913B4325A57B8113A4C/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The London Set 0f96ac.ttslua' -LuaScriptState: '{"ml":{"4c5c55":{"lock":false,"pos":{"x":8.0489,"y":1.2874,"z":7.1029},"rot":{"x":0.0799,"y":89.9962,"z":359.9831}},"905ad3":{"lock":false,"pos":{"x":8.4268,"y":1.2838,"z":-3.1101},"rot":{"x":0.0799,"y":89.9894,"z":359.9831}},"c56f66":{"lock":false,"pos":{"x":8.2949,"y":1.2857,"z":2.5561},"rot":{"x":0.0799,"y":89.9962,"z":359.9831}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The London Set @@ -63,11 +63,11 @@ Transform: posX: -7.64 posY: 1.63 posZ: 68.55 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 - scaleY: 0.2 - scaleZ: 2.46 + scaleY: 0.46 + scaleZ: 2.42 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Outsider 3c175c.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Outsider 3c175c.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Outsider 3c175c.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Outsider 3c175c.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Outsider 3c175c.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Outsider 3c175c.yaml index 8bfca8f8f..6646b5bcf 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Outsider 3c175c.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Outsider 3c175c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142944372/7F67F8FDAD99C9C2A6A6A5E98C548681117D092C/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The Outsider 3c175c.ttslua' -LuaScriptState: '{"ml":{"526ff9":{"lock":false,"pos":{"x":9.7361,"y":1.2851,"z":7.604},"rot":{"x":0.0799,"y":89.999,"z":359.9831}},"5b3ac7":{"lock":false,"pos":{"x":9.9267,"y":1.2833,"z":1.7477},"rot":{"x":0.0799,"y":89.9971,"z":359.9831}},"d166f2":{"lock":false,"pos":{"x":9.8646,"y":1.2814,"z":-4.5878},"rot":{"x":0.0799,"y":89.9959,"z":359.9831}},"d5b06c":{"lock":false,"pos":{"x":-4.3545,"y":1.5833,"z":-14.5586},"rot":{"x":359.9197,"y":270.0016,"z":0.0168}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The Outsider @@ -63,11 +63,11 @@ Transform: posX: -8.83 posY: 1.63 posZ: 67.76 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 - scaleY: 0.2 - scaleZ: 2.46 + scaleY: 0.46 + scaleZ: 2.42 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The War of the Worlds 19d469.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The War of the Worlds 19d469.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The War of the Worlds 19d469.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The War of the Worlds 19d469.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The War of the Worlds 19d469.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The War of the Worlds 19d469.yaml index dfca43020..f01079ce0 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The War of the Worlds 19d469.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The War of the Worlds 19d469.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1461933574036562700/261026F89C2322BF6390608AAB7DE43BEFB6240A/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The War of the Worlds 19d469.ttslua' -LuaScriptState: '{"ml":{"193901":{"lock":false,"pos":{"x":8.6179,"y":1.5146,"z":-16.1944},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}},"313523":{"lock":false,"pos":{"x":10.7639,"y":1.4665,"z":-0.0043},"rot":{"x":359.9201,"y":270.0055,"z":0.0169}},"480756":{"lock":false,"pos":{"x":12.2554,"y":1.4727,"z":28.0126},"rot":{"x":359.9201,"y":269.9943,"z":0.0169}},"a0d2b1":{"lock":false,"pos":{"x":10.57,"y":1.4641,"z":-8.9474},"rot":{"x":359.9201,"y":270.0628,"z":0.0168}},"b5928a":{"lock":false,"pos":{"x":-3.8478,"y":1.5825,"z":-14.7052},"rot":{"x":359.9197,"y":270.0028,"z":0.0168}},"eda22b":{"lock":false,"pos":{"x":-1.4656,"y":1.5756,"z":-26.9315},"rot":{"x":359.9201,"y":270.0101,"z":0.0169}},"f70a0d":{"lock":false,"pos":{"x":10.9056,"y":1.4689,"z":8.8892},"rot":{"x":359.9201,"y":269.999,"z":0.0169}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The War of the Worlds @@ -63,9 +63,9 @@ Transform: posX: -9.1 posY: 1.62 posZ: 67.41 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Winter Winds 754057.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Winter Winds 754057.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Winter Winds 754057.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Winter Winds 754057.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Winter Winds 754057.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Winter Winds 754057.yaml index 9e07da124..550001994 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Winter Winds 754057.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model Winter Winds 754057.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142974098/BF07864708BDE2804C0495637DDD55E85CC883EA/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Winter Winds 754057.ttslua' -LuaScriptState: '{"ml":{"11429d":{"lock":false,"pos":{"x":9.5267,"y":1.2845,"z":4.5868},"rot":{"x":0.0799,"y":89.9987,"z":359.9831}},"8077a1":{"lock":false,"pos":{"x":9.1666,"y":1.2836,"z":-0.8205},"rot":{"x":0.0799,"y":89.9944,"z":359.9831}},"d54710":{"lock":false,"pos":{"x":-4.0215,"y":1.5826,"z":-15.2289},"rot":{"x":359.9197,"y":269.9984,"z":0.0168}},"ddd10b":{"lock":false,"pos":{"x":8.3252,"y":1.283,"z":-6.4267},"rot":{"x":0.0799,"y":89.996,"z":359.9831}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Winter Winds @@ -63,9 +63,9 @@ Transform: posX: -20.94 posY: 1.61 posZ: 76.41 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Crown of Egil 7458b7.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Crown of Egil 7458b7.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Crown of Egil 7458b7.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Crown of Egil 7458b7.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Crown of Egil 7458b7.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Crown of Egil 7458b7.yaml index aa8488d52..a78150b23 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Crown of Egil 7458b7.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Campaigns 89c32e/Custom_Model The Crown of Egil 7458b7.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: https://i.imgur.com/Vn2CXra.png MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include "Custom_Model \uF729The Crown of Egil 7458b7.ttslua" -LuaScriptState: '{"ml":{"0f0921":{"lock":false,"pos":{"x":9.3665,"y":1.4613,"z":-24.4342},"rot":{"x":359.9201,"y":269.998,"z":0.0169}},"2bd90b":{"lock":false,"pos":{"x":12.2499,"y":1.4703,"z":19.9864},"rot":{"x":359.9201,"y":269.9952,"z":0.0169}},"454d79":{"lock":false,"pos":{"x":0.0267,"y":1.4743,"z":-24.432},"rot":{"x":359.9201,"y":270.0003,"z":0.0169}},"51fbbc":{"lock":false,"pos":{"x":12.25,"y":1.4727,"z":27.9863},"rot":{"x":359.9201,"y":270.0094,"z":0.0169}},"614c82":{"lock":false,"pos":{"x":-8.9849,"y":1.4868,"z":-24.5062},"rot":{"x":359.9201,"y":269.997,"z":0.0169}},"8cfe99":{"lock":false,"pos":{"x":12.2499,"y":1.4656,"z":3.9862},"rot":{"x":359.9201,"y":270.0069,"z":0.0169}},"924db3":{"lock":true,"pos":{"x":-8.8505,"y":1.5867,"z":-24.4131},"rot":{"x":359.9201,"y":270.0004,"z":0.0169}},"c0b834":{"lock":false,"pos":{"x":-0.4563,"y":1.6272,"z":-16.291},"rot":{"x":359.9197,"y":269.986,"z":0.0169}},"c29a78":{"lock":false,"pos":{"x":12.2518,"y":1.468,"z":11.9862},"rot":{"x":359.9201,"y":270.0005,"z":0.0169}},"d8f692":{"lock":false,"pos":{"x":-1.4656,"y":1.4756,"z":-26.9304},"rot":{"x":359.9201,"y":270.0126,"z":0.0169}},"eda22b":{"lock":false,"pos":{"x":0.0799,"y":1.5742,"z":-24.3909},"rot":{"x":359.9201,"y":270.0021,"z":0.0169}},"fef4f5":{"lock":false,"pos":{"x":8.7241,"y":1.4621,"z":-24.4486},"rot":{"x":359.9201,"y":270.0136,"z":0.0169}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: "\uF729The Crown of Egil" @@ -63,9 +63,9 @@ Transform: posX: -7.14 posY: 1.62 posZ: 68.8 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c.yaml index cb60702bd..f78b7f037 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c.yaml @@ -1,14 +1,14 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Undying 965030.yaml' @@ -18,8 +18,6 @@ ContainedObjects: Symphony of Erich Zann b7c6be.yaml' - !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Svalbard Event 7bc42b.yaml' -- !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Stranger - Things 408301.yaml' - !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Strange Case of Dr. Jekyll and Mr. Hyde 695a4d.yaml' - !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The @@ -32,12 +30,28 @@ ContainedObjects: Nephew Calls 3ddd12.yaml' - !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Nameless City 9d3083.yaml' +- !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The + Legend of Sleepy Hollow 0500f1.yaml' +- !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The + Grand Oak Hotel 5ccf55.yaml' +- !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The + Festival 29d22a.yaml' +- !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The + Fall of the House of Usher 42bdd3.yaml' +- !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The + Facts in the Case of M. Valdemar 238d6f.yaml' +- !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The + Curse of Amulotep 0d7a8d.yaml' +- !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The + Colour out of Space 5b81ff.yaml' +- !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The + Collector 9810eb.yaml' +- !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Stranger + Things 408301.yaml' - !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Miskatonic Mouse 6defb8.yaml' - !include "Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Masks of Nyarlathotep \u2013 New York 94a1f8.yaml" -- !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The - Legend of Sleepy Hollow 0500f1.yaml' - !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Last Call at Roxie''s c6a1ca.yaml' - !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Knightfall @@ -48,30 +62,18 @@ ContainedObjects: Blackest Pits 68380c.yaml' - !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Happy''s Funhouse e7d9f8.yaml' -- !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The - Grand Oak Hotel 5ccf55.yaml' - !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.yaml' -- !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The - Festival 29d22a.yaml' -- !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The - Fall of the House of Usher 42bdd3.yaml' - !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Don''t Starve ffc7ef.yaml' - !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Delta Green Convergence ac164e.yaml' - !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Darkness Falls c6a612.yaml' -- !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The - Curse of Amulotep 0d7a8d.yaml' - !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Cosmic Pantheon ec74df.yaml' - !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Consternation on the Constellation 0ec730.yaml' -- !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The - Colour out of Space 5b81ff.yaml' -- !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The - Collector 9810eb.yaml' - !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Carnevale of Spiders e57017.yaml' - !include 'Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Bridge @@ -87,13 +89,13 @@ CustomMesh: ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1758068588410864087/97EBA1F7BA51181A664CE5A733AB092BA843E32D/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj @@ -121,12 +123,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -9 + posX: -9.0 posY: 1.48 - posZ: -50 - rotX: 0 - rotY: 270 - rotZ: 0 + posZ: -50.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.5 scaleY: 0.1 scaleZ: 0.5 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Against the Wendigo 4d5fa0.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Against the Wendigo 4d5fa0.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Against the Wendigo 4d5fa0.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Against the Wendigo 4d5fa0.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Against the Wendigo 4d5fa0.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Against the Wendigo 4d5fa0.yaml index 6564b0008..d7e6b6a40 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Against the Wendigo 4d5fa0.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Against the Wendigo 4d5fa0.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142901599/7EE6EF24852C443DF5E92CF9498881E321CEE75A/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Against the Wendigo 4d5fa0.ttslua' -LuaScriptState: '{"ml":{"06f882":{"lock":true,"pos":{"x":-3.76900005340576,"y":4.13520002365112,"z":5.67080020904541},"rot":{"x":0,"y":90,"z":0}},"0c01a1":{"lock":false,"pos":{"x":1.2422,"y":1.3947,"z":0.1206},"rot":{"x":359.9832,"y":0.0007,"z":359.9197}},"0e52c8":{"lock":false,"pos":{"x":-36.7731170654297,"y":1.64632892608643,"z":-0.0299968924373388},"rot":{"x":359.920104980469,"y":269.999755859375,"z":0.0168402567505836}},"0f6d69":{"lock":false,"pos":{"x":-20.4015007019043,"y":1.60985171794891,"z":-0.177200019359589},"rot":{"x":0.0798944979906082,"y":90.0004348754883,"z":359.983123779297}},"1ac3ac":{"lock":false,"pos":{"x":-3.95601749420166,"y":1.59753954410553,"z":-10.441198348999},"rot":{"x":359.919738769531,"y":270.031280517578,"z":0.0167942680418491}},"1ee2a5":{"lock":false,"pos":{"x":-33.3772010803223,"y":1.62799525260925,"z":-0.00780024146661162},"rot":{"x":0.0798945650458336,"y":90.0005187988281,"z":359.983123779297}},"201524":{"lock":false,"pos":{"x":-17.1200008392334,"y":1.60646212100983,"z":3.86000037193298},"rot":{"x":0.0167902931571007,"y":180.035140991211,"z":0.079946868121624}},"309b74":{"lock":false,"pos":{"x":-12.432225227356,"y":1.63149964809418,"z":7.31530523300171},"rot":{"x":359.920104980469,"y":270.000457763672,"z":0.0168410111218691}},"45ae28":{"lock":false,"pos":{"x":-9.39212226867676,"y":1.50021779537201,"z":-27.1340980529785},"rot":{"x":359.920135498047,"y":270,"z":180.016860961914}},"5f661f":{"lock":false,"pos":{"x":-2.68850708007813,"y":1.61911654472351,"z":-5.048499584198},"rot":{"x":359.919738769531,"y":270.005615234375,"z":0.0168295986950397}},"60ad05":{"lock":false,"pos":{"x":-36.7731018066406,"y":1.63160705566406,"z":-3.83000040054321},"rot":{"x":0.0167906507849693,"y":180.034790039063,"z":0.0799511894583702}},"6791fd":{"lock":false,"pos":{"x":1.69690048694611,"y":1.55831575393677,"z":14.2784023284912},"rot":{"x":359.955139160156,"y":224.998107910156,"z":0.0686739981174469}},"686672":{"lock":false,"pos":{"x":-36.7732162475586,"y":1.64856255054474,"z":7.57000303268433},"rot":{"x":359.920104980469,"y":269.999664306641,"z":0.0168415307998657}},"6f2827":{"lock":false,"pos":{"x":-3.92771148681641,"y":1.74919271469116,"z":5.75710391998291},"rot":{"x":359.919738769531,"y":269.993286132813,"z":180.016830444336}},"7234af":{"lock":false,"pos":{"x":-36.7731018066406,"y":1.63386714458466,"z":3.86000084877014},"rot":{"x":0.0167915932834148,"y":180.034286499023,"z":0.0799638628959656}},"82e1ed":{"lock":false,"pos":{"x":-4.00120067596436,"y":1.58277893066406,"z":-14.5900020599365},"rot":{"x":359.919738769531,"y":269.992614746094,"z":0.016848323866725}},"86cbee":{"lock":false,"pos":{"x":-17.1199989318848,"y":1.60420215129852,"z":-3.8299994468689},"rot":{"x":0.0167905073612928,"y":180.034927368164,"z":0.0799460336565971}},"88a1cf":{"lock":false,"pos":{"x":-36.7732162475586,"y":1.6440749168396,"z":-7.69999694824219},"rot":{"x":359.920104980469,"y":269.999694824219,"z":0.0168403629213572}},"9caa1f":{"lock":false,"pos":{"x":-30.2241992950439,"y":1.62473499774933,"z":3.86000084877014},"rot":{"x":0.0167905203998089,"y":180.034866333008,"z":0.0799559205770493}},"9dadf5":{"lock":false,"pos":{"x":-1.4655841588974,"y":1.47562277317047,"z":-26.9304237365723},"rot":{"x":359.920135498047,"y":270.000732421875,"z":0.016870966181159}},"9e701d":{"lock":false,"pos":{"x":-2.72470688819885,"y":1.62076044082642,"z":0.373301297426224},"rot":{"x":359.919738769531,"y":269.982604980469,"z":0.0168617274612188}},"a69955":{"lock":false,"pos":{"x":-30.2242069244385,"y":1.65896475315094,"z":-0.0299987606704235},"rot":{"x":359.920104980469,"y":270.00048828125,"z":0.0168402157723904}},"b3ec68":{"lock":false,"pos":{"x":-12.7351093292236,"y":1.64195537567139,"z":-7.6860990524292},"rot":{"x":359.920104980469,"y":270.000061035156,"z":0.0168423783034086}},"b6a235":{"lock":false,"pos":{"x":-23.6765003204346,"y":1.61334466934204,"z":-3.82999992370605},"rot":{"x":0.0167906042188406,"y":180.034820556641,"z":0.0799501836299896}},"d807d4":{"lock":false,"pos":{"x":-26.8813991546631,"y":1.61892998218536,"z":-0.0326002426445484},"rot":{"x":0.079894594848156,"y":90.0005187988281,"z":359.983123779297}},"dda3d5":{"lock":false,"pos":{"x":-30.2241992950439,"y":1.62247502803802,"z":-3.82999992370605},"rot":{"x":0.0167906302958727,"y":180.034820556641,"z":0.0799499675631523}},"e47eca":{"lock":false,"pos":{"x":-23.6765003204346,"y":1.61560475826263,"z":3.86000061035156},"rot":{"x":0.0167904961854219,"y":180.034881591797,"z":0.0799509137868881}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Against the Wendigo @@ -63,9 +63,9 @@ Transform: posX: 20.3 posY: 1.81 posZ: 7.55 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Arkham Incidents f1bfa2.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Arkham Incidents f1bfa2.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Arkham Incidents f1bfa2.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Arkham Incidents f1bfa2.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Arkham Incidents f1bfa2.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Arkham Incidents f1bfa2.yaml index 16b335370..e63d5f19f 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Arkham Incidents f1bfa2.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Arkham Incidents f1bfa2.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1865053883967763315/27C1F4299B5381DF5A40739696DC4CE6197D2BDC/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Arkham Incidents f1bfa2.ttslua' -LuaScriptState: '{"ml":{"302c2c":{"lock":false,"pos":{"x":12.2502,"y":1.4703,"z":19.9864},"rot":{"x":359.9201,"y":270,"z":0.0169}},"460a4d":{"lock":false,"pos":{"x":12.2505,"y":1.4656,"z":3.9862},"rot":{"x":359.9201,"y":270.001,"z":0.0169}},"6187c9":{"lock":false,"pos":{"x":-9.6858,"y":1.5958,"z":-9.2221},"rot":{"x":359.9203,"y":270.002,"z":0.0171}},"656888":{"lock":false,"pos":{"x":-1.1115,"y":1.6283,"z":-15.864},"rot":{"x":359.9197,"y":269.9991,"z":0.0168}},"7ef7b4":{"lock":false,"pos":{"x":-9.5943,"y":1.5945,"z":-13.2413},"rot":{"x":359.9204,"y":269.9995,"z":0.0172}},"90b00d":{"lock":false,"pos":{"x":11.2327,"y":1.5,"z":42.3371},"rot":{"x":0,"y":270.0173,"z":0}},"9a3b83":{"lock":false,"pos":{"x":14.1403,"y":1.4709,"z":30.9509},"rot":{"x":359.9201,"y":270.0027,"z":0.0169}},"ba5ef2":{"lock":false,"pos":{"x":12.2505,"y":1.4609,"z":-12.0137},"rot":{"x":359.9201,"y":270.0028,"z":0.0169}},"cf68ca":{"lock":false,"pos":{"x":12.2523,"y":1.468,"z":11.9863},"rot":{"x":359.9201,"y":270,"z":0.0169}},"d6a731":{"lock":false,"pos":{"x":12.2501,"y":1.4632,"z":-4.0139},"rot":{"x":359.9201,"y":270.0025,"z":0.0169}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Arkham Incidents @@ -63,9 +63,9 @@ Transform: posX: 59.76 posY: 3.4 posZ: -68.94 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Blood Spilled in Salem 4237da.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Blood Spilled in Salem 4237da.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Blood Spilled in Salem 4237da.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Blood Spilled in Salem 4237da.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Blood Spilled in Salem 4237da.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Blood Spilled in Salem 4237da.yaml index 5bfadf596..e3d49e6d5 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Blood Spilled in Salem 4237da.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Blood Spilled in Salem 4237da.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142918658/204E105211839B1E202E834F4A5C69E8E6A50A28/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Blood Spilled in Salem 4237da.ttslua' -LuaScriptState: '{"ml":{"0488ba":{"lock":false,"pos":{"x":-30.2242,"y":1.7004,"z":7.57},"rot":{"x":359.9201,"y":270,"z":180.0169}},"0acbd8":{"lock":false,"pos":{"x":-30.2243,"y":1.6959,"z":-7.7},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"0d9dc2":{"lock":false,"pos":{"x":-20.7379,"y":1.6093,"z":-3.7735},"rot":{"x":359.9747,"y":209.9999,"z":0.0776}},"0eb577":{"lock":false,"pos":{"x":-3.9275,"y":1.7611,"z":5.7571},"rot":{"x":359.9197,"y":269.9856,"z":180.0168}},"1dd120":{"lock":false,"pos":{"x":-23.6766,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"1e3806":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":359.9832,"y":0.0096,"z":359.92}},"225690":{"lock":false,"pos":{"x":-17.1199,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"23bbd8":{"lock":false,"pos":{"x":-27.2865,"y":1.6195,"z":-0.0152},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"33b200":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":359.9197,"y":269.9997,"z":0.0168}},"479a5a":{"lock":false,"pos":{"x":-2.7247,"y":1.656,"z":0.3733},"rot":{"x":359.9197,"y":270,"z":0.0168}},"480533":{"lock":false,"pos":{"x":-50.9243,"y":1.7294,"z":8.1784},"rot":{"x":359.9201,"y":269.931,"z":180.017}},"4aaa9f":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":359.9832,"y":0.0095,"z":359.92}},"4eeeb3":{"lock":false,"pos":{"x":-17.12,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":180.0169}},"7234af":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":359.9832,"y":0.0095,"z":359.92}},"83b781":{"lock":false,"pos":{"x":-4.3576,"y":1.5832,"z":-14.9888},"rot":{"x":359.9197,"y":270.0004,"z":0.0168}},"a06ab2":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":270.0002,"z":180.0169}},"a08d45":{"lock":false,"pos":{"x":-26.798,"y":1.6211,"z":7.6211},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"a1dbf2":{"lock":false,"pos":{"x":-9.5286,"y":1.6602,"z":-1.2349},"rot":{"x":359.9201,"y":269.997,"z":180.0169}},"a3dc2f":{"lock":false,"pos":{"x":-4.4458,"y":1.663,"z":14.3162},"rot":{"x":359.9197,"y":269.9745,"z":180.0169}},"aa3bc3":{"lock":false,"pos":{"x":-30.2243,"y":1.6982,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"acac22":{"lock":false,"pos":{"x":1.6967,"y":1.6368,"z":14.2788},"rot":{"x":359.9552,"y":225,"z":0.0687}},"ade1bd":{"lock":false,"pos":{"x":-3.956,"y":1.6585,"z":-10.4412},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"ae20a4":{"lock":false,"pos":{"x":-17.1199,"y":1.6765,"z":-11.51},"rot":{"x":359.9201,"y":270,"z":180.0169}},"b4a135":{"lock":false,"pos":{"x":-26.9258,"y":1.6168,"z":-7.7032},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"b7e3ad":{"lock":false,"pos":{"x":-20.2216,"y":1.6119,"z":7.3408},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"baff62":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"d33de6":{"lock":false,"pos":{"x":-20.3424,"y":1.6076,"z":-7.7619},"rot":{"x":359.9201,"y":270.002,"z":0.0169}},"e1bf6b":{"lock":false,"pos":{"x":-26.9599,"y":1.6203,"z":3.9439},"rot":{"x":359.9316,"y":315.0001,"z":359.9554}},"e90dde":{"lock":false,"pos":{"x":-24.7567,"y":1.6149,"z":-3.8971},"rot":{"x":359.9832,"y":0.0096,"z":359.92}},"ed48d8":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9832,"y":0.0096,"z":359.92}},"ee673a":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9832,"y":0.0096,"z":359.92}},"efe8d6":{"lock":false,"pos":{"x":-17.1201,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"fda256":{"lock":false,"pos":{"x":-27.7376,"y":1.619,"z":-4.1724},"rot":{"x":359.9316,"y":315.0002,"z":359.9554}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Blood Spilled in Salem @@ -63,9 +63,9 @@ Transform: posX: -10.62 posY: 1.62 posZ: 65.3 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Bridge of Sighs 578e97.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Bridge of Sighs 578e97.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Bridge of Sighs 578e97.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Bridge of Sighs 578e97.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Bridge of Sighs 578e97.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Bridge of Sighs 578e97.yaml index 76ebd4c0f..95ccfd4de 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Bridge of Sighs 578e97.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Bridge of Sighs 578e97.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142919243/F3ED3E5B6B8725F536FCDA4FB2D40E1D11725037/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Bridge of Sighs 578e97.ttslua' -LuaScriptState: '{"ml":{"0d7898":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"2d9794":{"lock":false,"pos":{"x":-4.7969,"y":1.5838,"z":-15.0746},"rot":{"x":359.9197,"y":270.0009,"z":0.0168}},"3be6e8":{"lock":false,"pos":{"x":-10.0797,"y":1.674,"z":-0.4023},"rot":{"x":359.9201,"y":269.9863,"z":0.0169}},"3dc34f":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9974,"z":0.0168}},"50d3bc":{"lock":false,"pos":{"x":-17.12,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"5a9b00":{"lock":false,"pos":{"x":-17.1198,"y":1.6754,"z":-15.2785},"rot":{"x":359.9201,"y":270.0052,"z":180.0169}},"5d0fdd":{"lock":false,"pos":{"x":-23.6766,"y":1.6846,"z":-15.28},"rot":{"x":359.9201,"y":270.005,"z":180.0169}},"6e4a78":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":0.0003,"z":359.9201}},"7234af":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":359.9831,"y":359.98,"z":359.9201}},"8ed50d":{"lock":false,"pos":{"x":-23.6766,"y":1.6935,"z":15.19},"rot":{"x":359.9201,"y":270.0014,"z":180.0169}},"8f569e":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.027,"z":0.0803}},"9bcafb":{"lock":false,"pos":{"x":-23.6764,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"a5b019":{"lock":false,"pos":{"x":-17.12,"y":1.602,"z":-11.51},"rot":{"x":359.9831,"y":0.0002,"z":359.92}},"bbb99f":{"lock":false,"pos":{"x":-20.5275,"y":1.6078,"z":-7.7916},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"c51bff":{"lock":false,"pos":{"x":-17.12,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"cd676c":{"lock":false,"pos":{"x":-2.6885,"y":1.6623,"z":-5.0486},"rot":{"x":0.0168,"y":180.0007,"z":0.0803}},"d7eb78":{"lock":false,"pos":{"x":-19.5006,"y":1.612,"z":11.2137},"rot":{"x":0.0685,"y":134.9717,"z":0.0445}},"d82996":{"lock":false,"pos":{"x":-20.2633,"y":1.6053,"z":-15.0852},"rot":{"x":0.0799,"y":90,"z":359.9831}},"da6072":{"lock":false,"pos":{"x":1.6965,"y":1.6585,"z":14.2788},"rot":{"x":359.9552,"y":224.998,"z":0.0687}},"dde586":{"lock":false,"pos":{"x":-3.9275,"y":1.7237,"z":5.7571},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"dfff72":{"lock":false,"pos":{"x":-23.6764,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":270,"z":180.0169}},"e413cc":{"lock":false,"pos":{"x":-23.6765,"y":1.6179,"z":11.46},"rot":{"x":359.9832,"y":0.0153,"z":359.9201}},"e7b998":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":270.0052,"z":180.0169}},"edb80f":{"lock":false,"pos":{"x":-20.4959,"y":1.61,"z":-0.1873},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"f90f84":{"lock":false,"pos":{"x":-23.6765,"y":1.6111,"z":-11.51},"rot":{"x":359.9831,"y":0,"z":359.9201}},"fcfbbe":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":180,"z":0.0799}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Bridge of Sighs @@ -63,9 +63,9 @@ Transform: posX: -8.3 posY: 1.62 posZ: 66.34 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Carnevale of Spiders e57017.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Carnevale of Spiders e57017.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Carnevale of Spiders e57017.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Carnevale of Spiders e57017.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Carnevale of Spiders e57017.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Carnevale of Spiders e57017.yaml index 271fd9714..8432373a6 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Carnevale of Spiders e57017.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Carnevale of Spiders e57017.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1474319121422110285/8BA9D8C5CFA6D4E35DFC2077002CB2256DCFB2D7/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Carnevale of Spiders e57017.ttslua' -LuaScriptState: '{"ml":{"0368c1":{"lock":false,"pos":{"x":-17.1201,"y":1.619,"z":-0.03},"rot":{"x":359.9202,"y":270.0046,"z":0.0167}},"12d492":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":0.0169,"y":179.9998,"z":0.0799}},"1e7f1b":{"lock":false,"pos":{"x":-14.3835,"y":1.6303,"z":-0.2141},"rot":{"x":359.3509,"y":269.9973,"z":0.0169}},"2e4956":{"lock":false,"pos":{"x":-11.6656,"y":1.6551,"z":9.0735},"rot":{"x":359.9201,"y":269.9792,"z":0.0169}},"3c6d68":{"lock":false,"pos":{"x":-11.7638,"y":1.6337,"z":-14.9715},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}},"44b0c5":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":359.9831,"y":0.0002,"z":359.9201}},"4cc43d":{"lock":false,"pos":{"x":-3.9274,"y":1.7925,"z":5.7571},"rot":{"x":359.9197,"y":269.9698,"z":180.0169}},"4d3553":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":359.9847,"z":359.9201}},"4d5e5f":{"lock":false,"pos":{"x":-2.6885,"y":1.6143,"z":-5.0485},"rot":{"x":359.9197,"y":269.9982,"z":0.0168}},"50caf4":{"lock":false,"pos":{"x":-3.9559,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"81a6f5":{"lock":false,"pos":{"x":-26.8136,"y":1.6167,"z":-7.5513},"rot":{"x":0.0799,"y":90.0001,"z":359.9831}},"949c7d":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":0.0169,"y":179.9995,"z":0.0799}},"a45247":{"lock":false,"pos":{"x":1.6967,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"a5891b":{"lock":false,"pos":{"x":-3.5539,"y":1.5821,"z":-14.78},"rot":{"x":359.9197,"y":270.0027,"z":0.0168}},"ab0576":{"lock":false,"pos":{"x":-20.6238,"y":1.6124,"z":7.2554},"rot":{"x":359.9201,"y":270,"z":0.0169}},"b676d8":{"lock":false,"pos":{"x":-20.6237,"y":1.608,"z":-7.5965},"rot":{"x":0.0799,"y":89.9992,"z":359.9831}},"bb43b8":{"lock":false,"pos":{"x":-11.5593,"y":1.6557,"z":11.8573},"rot":{"x":359.9201,"y":269.9891,"z":0.0169}},"c3031b":{"lock":false,"pos":{"x":-2.7228,"y":1.6208,"z":0.3589},"rot":{"x":359.9197,"y":269.9689,"z":0.0169}},"fde05d":{"lock":false,"pos":{"x":-27.0646,"y":1.6215,"z":7.5852},"rot":{"x":359.9201,"y":269.9991,"z":0.0169}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Carnevale of Spiders @@ -63,9 +63,9 @@ Transform: posX: -8.96 posY: 1.62 posZ: 64.59 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Consternation on the Constellation 0ec730.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Consternation on the Constellation 0ec730.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Consternation on the Constellation 0ec730.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Consternation on the Constellation 0ec730.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Consternation on the Constellation 0ec730.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Consternation on the Constellation 0ec730.yaml index 15f057fca..42494f6be 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Consternation on the Constellation 0ec730.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Consternation on the Constellation 0ec730.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/762723517666349452/B8551E1479CED3BADEF4AF3B0A727EB7768C0289/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Consternation on the Constellation 0ec730.ttslua' -LuaScriptState: '{"ml":{"011e57":{"lock":false,"pos":{"x":7.4136,"y":1.5493,"z":-1.6503},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"14fd91":{"lock":false,"pos":{"x":-2.7248,"y":1.6551,"z":0.3733},"rot":{"x":0.0168,"y":180.0145,"z":0.0803}},"2f4093":{"lock":false,"pos":{"x":-30.2242,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9995,"z":0.0169}},"370ae5":{"lock":false,"pos":{"x":7.3549,"y":1.5428,"z":0.9084},"rot":{"x":359.9201,"y":270,"z":0.0169}},"4339b6":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0055,"z":0.0168}},"4736d9":{"lock":false,"pos":{"x":-10.0405,"y":1.5945,"z":-3.243},"rot":{"x":359.9201,"y":270.0059,"z":0.0169}},"68e1d9":{"lock":false,"pos":{"x":-10.0449,"y":1.5965,"z":3.4829},"rot":{"x":359.9201,"y":269.9974,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-33.3859,"y":1.6313,"z":11.159},"rot":{"x":359.9316,"y":315.0293,"z":359.9554}},"7b0f48":{"lock":false,"pos":{"x":-10.0533,"y":1.5959,"z":1.2614},"rot":{"x":359.9201,"y":269.9979,"z":0.0169}},"8f2b3d":{"lock":false,"pos":{"x":-33.341,"y":1.6301,"z":7.293},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"a1514c":{"lock":false,"pos":{"x":-3.9277,"y":1.7184,"z":5.7572},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}},"bbb70a":{"lock":false,"pos":{"x":-3.8848,"y":1.5826,"z":-14.7351},"rot":{"x":359.9197,"y":270.0318,"z":0.0168}},"be5b52":{"lock":false,"pos":{"x":1.6968,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.9981,"z":0.0687}},"be5d2b":{"lock":false,"pos":{"x":-10.0804,"y":1.5953,"z":-1.0163},"rot":{"x":359.9201,"y":269.9913,"z":0.0169}},"bf0eaa":{"lock":false,"pos":{"x":-30.2261,"y":1.6983,"z":10.1027},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"c34f49":{"lock":false,"pos":{"x":-2.6886,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"c5a4bf":{"lock":false,"pos":{"x":-36.7731,"y":1.709,"z":15.19},"rot":{"x":359.9201,"y":270,"z":0.0169}},"d14543":{"lock":false,"pos":{"x":-12.2221,"y":1.4168,"z":11.1913},"rot":{"x":0.08,"y":89.9905,"z":359.9831}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Consternation on the Constellation @@ -63,9 +63,9 @@ Transform: posX: -9.23 posY: 1.66 posZ: 64.3 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Cosmic Pantheon ec74df.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Cosmic Pantheon ec74df.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Cosmic Pantheon ec74df.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Cosmic Pantheon ec74df.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Cosmic Pantheon ec74df.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Cosmic Pantheon ec74df.yaml index 5717b69a1..238a40bf2 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Cosmic Pantheon ec74df.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Cosmic Pantheon ec74df.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1844797993644656426/EC19A65BD3119D5FA229F502D65D1D8DAA9E0ECB/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Cosmic Pantheon ec74df.ttslua' -LuaScriptState: '{"ml":{"026884":{"lock":false,"pos":{"x":-36.7733,"y":1.6441,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"0916a7":{"lock":false,"pos":{"x":-39.8587,"y":1.6557,"z":17.3168},"rot":{"x":359.9201,"y":270.0876,"z":0.0167}},"102eed":{"lock":false,"pos":{"x":-43.3701,"y":1.6533,"z":-7.7},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"14757f":{"lock":false,"pos":{"x":-40.1617,"y":1.6341,"z":-11.4772},"rot":{"x":0.0684,"y":134.9983,"z":0.0446}},"1dae6f":{"lock":false,"pos":{"x":-17.1199,"y":1.6201,"z":3.8604},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"20761e":{"lock":false,"pos":{"x":-20.3595,"y":1.6092,"z":-2.1798},"rot":{"x":0.0682,"y":135.2074,"z":0.0448}},"224719":{"lock":false,"pos":{"x":-40.2157,"y":1.646,"z":-17.5792},"rot":{"x":359.9201,"y":270.0246,"z":0.0168}},"24ec75":{"lock":false,"pos":{"x":-33.864,"y":1.6276,"z":-3.5193},"rot":{"x":359.9554,"y":225.0005,"z":0.0684}},"26faf8":{"lock":false,"pos":{"x":-3.9279,"y":1.7011,"z":5.7564},"rot":{"x":359.9197,"y":269.9695,"z":180.0169}},"324649":{"lock":false,"pos":{"x":-30.2243,"y":1.6372,"z":-0.0298},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"35d78a":{"lock":false,"pos":{"x":-0.2631,"y":1.618,"z":2.7825},"rot":{"x":359.9197,"y":270.0023,"z":0.0168}},"387a8c":{"lock":false,"pos":{"x":-40.1074,"y":1.6351,"z":-7.7231},"rot":{"x":359.9201,"y":269.9951,"z":0.0169}},"398981":{"lock":false,"pos":{"x":-17.12,"y":1.6053,"z":-0.03},"rot":{"x":0.0168,"y":179.9998,"z":0.0799}},"402dc8":{"lock":false,"pos":{"x":-17.12,"y":1.6178,"z":-3.83},"rot":{"x":359.9201,"y":269.9997,"z":180.0168}},"4b54bb":{"lock":false,"pos":{"x":-36.8624,"y":1.6647,"z":15.2401},"rot":{"x":359.4041,"y":270.0047,"z":180.0169}},"4bf4a2":{"lock":false,"pos":{"x":-5.2724,"y":1.6236,"z":-2.2218},"rot":{"x":359.9197,"y":269.9948,"z":0.0168}},"4cb4c7":{"lock":false,"pos":{"x":-40.1502,"y":1.6397,"z":7.5151},"rot":{"x":359.9201,"y":269.9831,"z":0.0169}},"551500":{"lock":false,"pos":{"x":-8.3024,"y":1.4859,"z":-24.3237},"rot":{"x":359.9201,"y":270.0117,"z":0.0169}},"56ef18":{"lock":false,"pos":{"x":-36.8813,"y":1.6487,"z":7.614},"rot":{"x":359.9201,"y":270.0022,"z":180.0168}},"5c3eef":{"lock":false,"pos":{"x":-33.8928,"y":1.6297,"z":3.4873},"rot":{"x":0.0684,"y":135.0003,"z":0.0446}},"5e8934":{"lock":false,"pos":{"x":35.6586,"y":1.4707,"z":-26.3579},"rot":{"x":0.0169,"y":180.0107,"z":0.0819}},"63341d":{"lock":false,"pos":{"x":-2.6886,"y":1.6191,"z":-5.0485},"rot":{"x":0.0168,"y":180.0319,"z":0.0803}},"646a0f":{"lock":false,"pos":{"x":-43.3701,"y":1.6578,"z":7.5696},"rot":{"x":359.9201,"y":270.0004,"z":180.0168}},"7234af":{"lock":false,"pos":{"x":-20.3778,"y":1.6105,"z":2.2238},"rot":{"x":359.9554,"y":224.9946,"z":0.0684}},"76ff17":{"lock":false,"pos":{"x":-36.7731,"y":1.6293,"z":-11.51},"rot":{"x":0.0168,"y":180.0158,"z":0.0799}},"77f364":{"lock":false,"pos":{"x":-13.9762,"y":1.6128,"z":-5.8857},"rot":{"x":359.9201,"y":269.9994,"z":0.0168}},"7de8a9":{"lock":false,"pos":{"x":1.6792,"y":1.5584,"z":14.3254},"rot":{"x":359.9533,"y":226.4892,"z":0.0675}},"81e9dd":{"lock":false,"pos":{"x":-7.1624,"y":1.5881,"z":-11.4125},"rot":{"x":359.9197,"y":270.0004,"z":0.0168}},"863e58":{"lock":false,"pos":{"x":-36.7733,"y":1.6418,"z":-15.28},"rot":{"x":359.9201,"y":270.0019,"z":180.0168}},"91d08c":{"lock":false,"pos":{"x":-7.1624,"y":1.5876,"z":-13.1218},"rot":{"x":359.9197,"y":270.0006,"z":0.0168}},"a2345b":{"lock":false,"pos":{"x":-3.3388,"y":1.5818,"z":-14.7675},"rot":{"x":359.9197,"y":270.0251,"z":0.0168}},"a78ab1":{"lock":false,"pos":{"x":-36.7731,"y":1.6361,"z":11.46},"rot":{"x":0.0168,"y":180.0149,"z":0.0799}},"aa4062":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4414},"rot":{"x":359.9197,"y":269.9997,"z":0.0168}},"ac5f52":{"lock":false,"pos":{"x":-8.2215,"y":1.4965,"z":-34.5062},"rot":{"x":0,"y":270.0227,"z":359.9601}},"b4efbf":{"lock":false,"pos":{"x":-23.6766,"y":1.6281,"z":-0.0298},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"b827a6":{"lock":false,"pos":{"x":-7.1624,"y":1.5871,"z":-14.8311},"rot":{"x":359.9197,"y":270.0017,"z":0.0168}},"b85392":{"lock":false,"pos":{"x":-26.9335,"y":1.619,"z":0.0161},"rot":{"x":359.9201,"y":269.9741,"z":0.0169}},"cc8bbb":{"lock":false,"pos":{"x":-7.1624,"y":1.5886,"z":-9.7032},"rot":{"x":359.9197,"y":269.9966,"z":0.0168}},"ea718b":{"lock":false,"pos":{"x":-36.7733,"y":1.6508,"z":15.1901},"rot":{"x":359.9201,"y":269.9996,"z":180.0168}},"eb234e":{"lock":false,"pos":{"x":-36.7732,"y":1.6486,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"eb3956":{"lock":false,"pos":{"x":-2.7247,"y":1.6208,"z":0.3732},"rot":{"x":359.9197,"y":270.0182,"z":0.0168}},"efe16f":{"lock":false,"pos":{"x":-39.9553,"y":1.6405,"z":11.3031},"rot":{"x":359.9554,"y":225.0038,"z":0.0684}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Cosmic Pantheon @@ -63,9 +63,9 @@ Transform: posX: 28.57 posY: 2.71 posZ: -13.99 - rotX: 0 - rotY: 270 - rotZ: 357 + rotX: 0.0 + rotY: 270.0 + rotZ: 357.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Darkness Falls c6a612.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Darkness Falls c6a612.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Darkness Falls c6a612.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Darkness Falls c6a612.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Darkness Falls c6a612.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Darkness Falls c6a612.yaml index 8bb651bab..19696b89d 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Darkness Falls c6a612.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Darkness Falls c6a612.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1487830597915523099/252BD2089F9DEF3F337BB8AE681939DE98C1EFA7/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Darkness Falls c6a612.ttslua' -LuaScriptState: '{"ml":{"042d44":{"lock":false,"pos":{"x":-2.6885,"y":1.6239,"z":-5.0485},"rot":{"x":359.9197,"y":270.0006,"z":0.0168}},"3fb8ed":{"lock":false,"pos":{"x":-2.68849992752075,"y":1.62393057346344,"z":-5.04850149154663},"rot":{"x":359.919738769531,"y":270.000061035156,"z":0.0168369449675083}},"4add31":{"lock":false,"pos":{"x":-23.6765022277832,"y":1.65464842319489,"z":-0.0299997963011265},"rot":{"x":359.920104980469,"y":270.000030517578,"z":0.0168411564081907}},"5660ef":{"lock":false,"pos":{"x":-30.2242183685303,"y":1.64166986942291,"z":15.1899843215942},"rot":{"x":359.920104980469,"y":270.001068115234,"z":0.0168381482362747}},"6c3b6c":{"lock":false,"pos":{"x":-17.120002746582,"y":1.6189227104187,"z":-0.0298999939113855},"rot":{"x":359.920104980469,"y":269.9970703125,"z":0.0167545769363642}},"7234af":{"lock":false,"pos":{"x":-20.4148006439209,"y":1.60989475250244,"z":-0.0934002250432968},"rot":{"x":359.920104980469,"y":270.009460449219,"z":0.0168546847999096}},"767864":{"lock":false,"pos":{"x":-6.91008472442627,"y":1.61784970760345,"z":-13.1002960205078},"rot":{"x":359.919738769531,"y":269.999938964844,"z":0.0168399773538113}},"7d8fed":{"lock":false,"pos":{"x":-30.2243003845215,"y":1.63271510601044,"z":-15.2799978256226},"rot":{"x":359.920104980469,"y":269.999938964844,"z":0.0168397836387157}},"a45247":{"lock":false,"pos":{"x":1.69610047340393,"y":1.55831742286682,"z":14.2787017822266},"rot":{"x":359.955139160156,"y":225.006576538086,"z":0.0686668530106544}},"b5928a":{"lock":false,"pos":{"x":-3.0259,"y":1.5813,"z":-14.8775},"rot":{"x":359.9197,"y":270.0014,"z":0.0168}},"b756c0":{"lock":false,"pos":{"x":-3.92760014533997,"y":1.72512221336365,"z":5.75710153579712},"rot":{"x":359.919738769531,"y":270.00439453125,"z":180.016815185547}},"c7c0a9":{"lock":false,"pos":{"x":-2.7247,"y":1.6208,"z":0.3733},"rot":{"x":359.9197,"y":270.0151,"z":0.0168}},"ec7842":{"lock":false,"pos":{"x":-16.0300998687744,"y":1.63047182559967,"z":-2.20079970359802},"rot":{"x":359.920104980469,"y":269.998748779297,"z":0.734870731830597}},"fb280a":{"lock":false,"pos":{"x":-3.95589995384216,"y":1.59753930568695,"z":-10.441201210022},"rot":{"x":359.919738769531,"y":270.000091552734,"z":0.0168370883911848}},"fdd75d":{"lock":false,"pos":{"x":-2.72470021247864,"y":1.62076044082642,"z":0.37329962849617},"rot":{"x":359.919738769531,"y":269.999389648438,"z":0.0168378036469221}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Darkness Falls @@ -63,9 +63,9 @@ Transform: posX: -9.27 posY: 1.63 posZ: 66.13 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Delta Green Convergence ac164e.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Delta Green Convergence ac164e.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Delta Green Convergence ac164e.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Delta Green Convergence ac164e.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Delta Green Convergence ac164e.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Delta Green Convergence ac164e.yaml index 7da781ecb..1b9362e5b 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Delta Green Convergence ac164e.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Delta Green Convergence ac164e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142900469/BDA1068C5A88459AE805540FE05B8092C4F8F392/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Delta Green Convergence ac164e.ttslua' -LuaScriptState: '{"ml":{"0c01a1":{"lock":false,"pos":{"x":-11.6774,"y":1.4086,"z":-14.0775},"rot":{"x":359.9832,"y":359.994,"z":359.92}},"17807e":{"lock":false,"pos":{"x":-23.6766,"y":1.6314,"z":11.46},"rot":{"x":359.9201,"y":269.9978,"z":180.0168}},"1a3caf":{"lock":false,"pos":{"x":-3.9559,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9996,"z":0.0168}},"261874":{"lock":false,"pos":{"x":-17.1201,"y":1.6144,"z":-15.28},"rot":{"x":359.9201,"y":269.9753,"z":0.0169}},"4a7540":{"lock":false,"pos":{"x":-3.9273,"y":1.7925,"z":5.7571},"rot":{"x":359.9197,"y":270.0006,"z":180.0168}},"520889":{"lock":false,"pos":{"x":-3.8323,"y":1.5826,"z":-14.4151},"rot":{"x":359.9197,"y":270.0049,"z":0.0168}},"64b00f":{"lock":false,"pos":{"x":-17.1199,"y":1.6223,"z":11.4595},"rot":{"x":359.9201,"y":269.9901,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-20.3296,"y":1.6132,"z":11.468},"rot":{"x":359.9201,"y":269.9948,"z":0.0169}},"789378":{"lock":false,"pos":{"x":-1.9242,"y":1.4772,"z":-23.8097},"rot":{"x":359.9201,"y":270,"z":0.0169}},"8a689d":{"lock":false,"pos":{"x":-17.1197,"y":1.6503,"z":-0.0295},"rot":{"x":359.9201,"y":269.9999,"z":0.0168}},"9dab73":{"lock":false,"pos":{"x":-2.7245,"y":1.6159,"z":0.3733},"rot":{"x":359.9197,"y":269.9865,"z":0.0169}},"a45247":{"lock":false,"pos":{"x":1.696,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"ab39b9":{"lock":false,"pos":{"x":-17.1201,"y":1.6234,"z":15.1897},"rot":{"x":359.9201,"y":269.988,"z":0.0169}},"d2cb13":{"lock":false,"pos":{"x":-12.0254,"y":1.614,"z":7.5293},"rot":{"x":359.9201,"y":269.995,"z":0.0168}},"da2cbd":{"lock":false,"pos":{"x":-17.1196,"y":1.6155,"z":-11.5093},"rot":{"x":359.9201,"y":270.0104,"z":0.0168}},"ddc104":{"lock":false,"pos":{"x":-2.6884,"y":1.6336,"z":-5.0485},"rot":{"x":359.9197,"y":269.9859,"z":0.0169}},"fe4e96":{"lock":false,"pos":{"x":-12.0018,"y":1.7668,"z":11.1085},"rot":{"x":359.9201,"y":270.0005,"z":180.0168}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Delta Green Convergence @@ -63,9 +63,9 @@ Transform: posX: -10.23 posY: 1.62 posZ: 66.49 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Don't Starve ffc7ef.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Don't Starve ffc7ef.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Don't Starve ffc7ef.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Don't Starve ffc7ef.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Don't Starve ffc7ef.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Don't Starve ffc7ef.yaml index fd8bece86..37eeb1a5b 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Don't Starve ffc7ef.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Don't Starve ffc7ef.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1646593716898209387/B827263B809A6C8E1042BDF1C8D33E58458C2EF4/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Don''t Starve ffc7ef.ttslua' -LuaScriptState: '{"ml":{"089cf0":{"lock":false,"pos":{"x":0.8855,"y":1.397,"z":6.0097},"rot":{"x":359.9832,"y":-0.001,"z":359.9197}},"1ed3c4":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4413},"rot":{"x":359.9197,"y":269.9984,"z":0.0168}},"2068d9":{"lock":false,"pos":{"x":-8.8884,"y":1.668,"z":-10.3141},"rot":{"x":359.9231,"y":269.9953,"z":0.0163}},"2e69d0":{"lock":false,"pos":{"x":-34.2734,"y":1.3001,"z":-45.4144},"rot":{"x":0.0208,"y":270.0182,"z":0.0168}},"4b8bb9":{"lock":false,"pos":{"x":-0.4572,"y":1.6273,"z":-16.2047},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"4fc2a8":{"lock":false,"pos":{"x":-2.7249,"y":1.6208,"z":0.3733},"rot":{"x":0.0168,"y":180.0004,"z":0.0803}},"5e7ca6":{"lock":false,"pos":{"x":-3.9854,"y":1.5827,"z":-14.8081},"rot":{"x":359.9197,"y":269.9955,"z":0.0168}},"5fd7e9":{"lock":false,"pos":{"x":-11.8026,"y":1.6402,"z":7.2904},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"6da68c":{"lock":false,"pos":{"x":-11.7862,"y":1.6459,"z":10.3689},"rot":{"x":359.9201,"y":270.0031,"z":180.0168}},"70b4a2":{"lock":false,"pos":{"x":-3.9278,"y":1.7492,"z":5.7572},"rot":{"x":359.9197,"y":269.9974,"z":180.0168}},"7a167a":{"lock":false,"pos":{"x":1.7021,"y":1.5583,"z":14.2869},"rot":{"x":359.9555,"y":224.7284,"z":0.0689}},"a61381":{"lock":false,"pos":{"x":-8.3054,"y":1.6036,"z":-10.3476},"rot":{"x":359.922,"y":270.0249,"z":0.0164}},"d6bc5d":{"lock":false,"pos":{"x":-2.6886,"y":1.6191,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"e6f44d":{"lock":false,"pos":{"x":-0.7171,"y":1.4752,"z":-24.8646},"rot":{"x":359.9201,"y":270.0097,"z":0.0169}},"eda22b":{"lock":false,"pos":{"x":2.9208,"y":1.6001,"z":-41.5378},"rot":{"x":0.0007,"y":270.0139,"z":0.0039}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Don't Starve @@ -63,9 +63,9 @@ Transform: posX: -10.84 posY: 1.62 posZ: 65.41 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.yaml index cb0a25b57..d5a4bf14f 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.yaml @@ -1,25 +1,25 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1746802526940892011/A775E42F9014CD75B091D7D060012681E58B906E/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -37,7 +37,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.ttslua' -LuaScriptState: '{"ml":{"0f3a96":{"lock":false,"pos":{"x":-34.2316,"y":1.6326,"z":11.6933},"rot":{"x":359.9554,"y":224.9998,"z":0.0684}},"22a929":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":270,"z":0.0168}},"24e42d":{"lock":false,"pos":{"x":-36.7734,"y":1.6418,"z":-15.28},"rot":{"x":359.9201,"y":269.9999,"z":0.0168}},"2c6d3b":{"lock":false,"pos":{"x":-30.2242,"y":1.6417,"z":15.19},"rot":{"x":359.9201,"y":269.9998,"z":0.0168}},"2dfd79":{"lock":false,"pos":{"x":-36.7731,"y":1.6361,"z":11.46},"rot":{"x":0.0168,"y":180,"z":0.0799}},"3359db":{"lock":false,"pos":{"x":-32.8963,"y":1.624,"z":-11.1805},"rot":{"x":359.9316,"y":314.9998,"z":359.9554}},"360107":{"lock":false,"pos":{"x":-4.244,"y":1.6416,"z":15.0067},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"392d3e":{"lock":false,"pos":{"x":-36.7731,"y":1.6486,"z":7.57},"rot":{"x":359.9201,"y":269.9977,"z":0.0168}},"3943d5":{"lock":false,"pos":{"x":-4.0346,"y":1.4838,"z":-23.4806},"rot":{"x":359.9316,"y":315.0011,"z":359.9554}},"3a4050":{"lock":false,"pos":{"x":-27.2281,"y":1.6228,"z":11.3825},"rot":{"x":359.9316,"y":315.0001,"z":359.9554}},"3b60c1":{"lock":false,"pos":{"x":-30.2243,"y":1.6258,"z":7.57},"rot":{"x":359.9201,"y":270.0091,"z":0.0169}},"41625c":{"lock":false,"pos":{"x":-12.2031,"y":1.6162,"z":14.0413},"rot":{"x":359.9201,"y":270.0175,"z":0.0168}},"4fe831":{"lock":false,"pos":{"x":-33.3589,"y":1.6235,"z":-15.1968},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"551d28":{"lock":false,"pos":{"x":2.454,"y":1.4721,"z":-32.3421},"rot":{"x":359.9316,"y":315.0011,"z":359.9554}},"5c0e2e":{"lock":false,"pos":{"x":0.2701,"y":1.4896,"z":28.7803},"rot":{"x":359.9201,"y":269.9994,"z":0.0169}},"62791a":{"lock":false,"pos":{"x":-27.001,"y":1.6202,"z":3.6619},"rot":{"x":359.9554,"y":225,"z":0.0684}},"7234af":{"lock":false,"pos":{"x":-33.4277,"y":1.6269,"z":-3.8532},"rot":{"x":359.9554,"y":224.9966,"z":0.0684}},"83d7bb":{"lock":false,"pos":{"x":-4.2243,"y":1.4816,"z":-31.8957},"rot":{"x":359.9316,"y":315.0004,"z":359.9554}},"8984ad":{"lock":false,"pos":{"x":-23.6768,"y":1.6258,"z":-7.7},"rot":{"x":359.9201,"y":270.0192,"z":0.0168}},"899c2c":{"lock":false,"pos":{"x":-36.7733,"y":1.6508,"z":15.19},"rot":{"x":359.9201,"y":270,"z":0.0168}},"93422e":{"lock":false,"pos":{"x":-12.0801,"y":1.6416,"z":10.7578},"rot":{"x":0.0168,"y":180,"z":0.0799}},"9c140b":{"lock":false,"pos":{"x":-26.7676,"y":1.6177,"z":-3.8214},"rot":{"x":359.9316,"y":314.9779,"z":359.9554}},"9c6651":{"lock":false,"pos":{"x":-30.2218,"y":1.6213,"z":-7.699},"rot":{"x":359.9203,"y":269.5397,"z":0.0175}},"a45247":{"lock":false,"pos":{"x":1.6961,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"b6b9b7":{"lock":false,"pos":{"x":-36.7732,"y":1.6441,"z":-7.7},"rot":{"x":359.9201,"y":269.9998,"z":0.0168}},"c150be":{"lock":false,"pos":{"x":-23.6765,"y":1.6303,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":0.0168}},"c27718":{"lock":false,"pos":{"x":-36.7732,"y":1.6294,"z":-11.51},"rot":{"x":0.0168,"y":180,"z":0.08}},"c7e9e3":{"lock":false,"pos":{"x":-12.1603,"y":1.631,"z":7.0481},"rot":{"x":359.9201,"y":269.9999,"z":0.0168}},"cc135d":{"lock":false,"pos":{"x":-33.7965,"y":1.6331,"z":15.3121},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"d1bf92":{"lock":false,"pos":{"x":-3.9276,"y":1.7444,"z":5.7577},"rot":{"x":359.9197,"y":269.9985,"z":180.0168}},"d28cd1":{"lock":false,"pos":{"x":-30.2242,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":0.0168}},"d32960":{"lock":false,"pos":{"x":-2.6886,"y":1.6143,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"d51f74":{"lock":false,"pos":{"x":-12.3273,"y":1.642,"z":10.8057},"rot":{"x":0.0169,"y":179.9845,"z":0.0799}},"d5f792":{"lock":false,"pos":{"x":-33.2551,"y":1.6289,"z":3.6656},"rot":{"x":359.9316,"y":315.0002,"z":359.9554}},"d9882d":{"lock":false,"pos":{"x":-27.011,"y":1.6157,"z":-11.771},"rot":{"x":359.9554,"y":225.0001,"z":0.0684}},"e1e1c3":{"lock":false,"pos":{"x":-2.7247,"y":1.599,"z":0.3733},"rot":{"x":0.0168,"y":180,"z":0.0803}},"e8fcf0":{"lock":false,"pos":{"x":-30.2243,"y":1.6327,"z":-15.28},"rot":{"x":359.9201,"y":269.9999,"z":0.0168}},"ec4a81":{"lock":false,"pos":{"x":2.8296,"y":1.4739,"z":-24.3652},"rot":{"x":359.9316,"y":315.0031,"z":359.9554}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Fortune or Folly - Parallel Rex Murphy Set @@ -48,9 +48,9 @@ Transform: posX: -9.34 posY: 1.62 posZ: 65.41 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Happy's Funhouse e7d9f8.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Happy's Funhouse e7d9f8.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Happy's Funhouse e7d9f8.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Happy's Funhouse e7d9f8.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Happy's Funhouse e7d9f8.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Happy's Funhouse e7d9f8.yaml index d3be2d089..c42149399 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Happy's Funhouse e7d9f8.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Happy's Funhouse e7d9f8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142976303/C24C7169FD11E5D151DD2F754D5B9A5563D5DABB/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Happy''s Funhouse e7d9f8.ttslua' -LuaScriptState: '{"ml":{"13c965":{"lock":false,"pos":{"x":-3.9276,"y":1.7504,"z":5.7571},"rot":{"x":359.9197,"y":269.9855,"z":180.0168}},"1aa87a":{"lock":false,"pos":{"x":-30.2245,"y":1.704,"z":7.5705},"rot":{"x":359.9201,"y":269.9915,"z":180.0169}},"1c6049":{"lock":false,"pos":{"x":-2.7315,"y":1.6551,"z":0.3733},"rot":{"x":359.9197,"y":269.9742,"z":0.0169}},"1e99b2":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9852,"z":0.0169}},"3296c9":{"lock":false,"pos":{"x":-2.689,"y":1.6535,"z":-5.0428},"rot":{"x":359.9197,"y":270.0282,"z":0.0168}},"4e82c5":{"lock":false,"pos":{"x":-36.7735,"y":1.7131,"z":7.5705},"rot":{"x":359.9201,"y":269.993,"z":180.0169}},"9b0cf5":{"lock":false,"pos":{"x":-17.12,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9857,"z":180.0169}},"a45247":{"lock":false,"pos":{"x":1.6967,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"ab12bb":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9852,"z":0.0169}},"bdd422":{"lock":false,"pos":{"x":-9.2986,"y":1.667,"z":0.0118},"rot":{"x":359.9202,"y":269.9846,"z":0.017}},"c5008a":{"lock":false,"pos":{"x":-3.5702,"y":1.5821,"z":-14.9068},"rot":{"x":359.9197,"y":270.0005,"z":0.0168}},"fadb67":{"lock":false,"pos":{"x":-23.6763,"y":1.6948,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Happy's Funhouse @@ -63,9 +63,9 @@ Transform: posX: -9.66 posY: 1.63 posZ: 67.68 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model In Blackest Pits 68380c.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model In Blackest Pits 68380c.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model In Blackest Pits 68380c.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model In Blackest Pits 68380c.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model In Blackest Pits 68380c.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model In Blackest Pits 68380c.yaml index cabae8415..0be69cb0d 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model In Blackest Pits 68380c.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model In Blackest Pits 68380c.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1016065907889320438/3DC5DD89D5DB56BE6EFDAC4A96E8063765576EA1/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model In Blackest Pits 68380c.ttslua' -LuaScriptState: '{"ml":{"1ae977":{"lock":false,"pos":{"x":-33.4282,"y":1.6258,"z":-7.7062},"rot":{"x":0.0799,"y":90.0006,"z":359.9831}},"268bd8":{"lock":false,"pos":{"x":-30.2243,"y":1.6937,"z":-15.28},"rot":{"x":359.9201,"y":269.996,"z":180.0169}},"35c492":{"lock":false,"pos":{"x":-17.1199,"y":1.6042,"z":-3.83},"rot":{"x":0.0169,"y":179.9977,"z":0.0799}},"4011a5":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9961,"z":180.0169}},"505e6c":{"lock":false,"pos":{"x":1.6965,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"5bb7d0":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9953,"z":180.0169}},"5d070a":{"lock":false,"pos":{"x":-30.2242,"y":1.6203,"z":-11.51},"rot":{"x":359.9832,"y":0.0096,"z":359.9201}},"6645cd":{"lock":false,"pos":{"x":-23.6764,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":179.9981,"z":0.0799}},"668f68":{"lock":false,"pos":{"x":-26.9665,"y":1.6168,"z":-7.7199},"rot":{"x":0.0799,"y":90.0006,"z":359.9831}},"6f1efa":{"lock":false,"pos":{"x":-36.7733,"y":1.705,"z":-7.7},"rot":{"x":359.9201,"y":269.996,"z":180.0169}},"7234af":{"lock":false,"pos":{"x":-17.1199,"y":1.6065,"z":3.8598},"rot":{"x":0.0169,"y":179.9981,"z":0.0799}},"759ab6":{"lock":false,"pos":{"x":-20.2426,"y":1.6075,"z":-7.7066},"rot":{"x":0.0799,"y":90.0007,"z":359.9831}},"7b91a3":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.996,"z":180.0169}},"8944d1":{"lock":false,"pos":{"x":-3.9275,"y":1.7237,"z":5.7573},"rot":{"x":359.9197,"y":270.0005,"z":180.0168}},"98b72e":{"lock":false,"pos":{"x":-3.9559,"y":1.6585,"z":-10.4431},"rot":{"x":359.9197,"y":269.9995,"z":180.0168}},"a4612b":{"lock":false,"pos":{"x":-17.12,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":269.9962,"z":180.0169}},"b04a1a":{"lock":false,"pos":{"x":-20.2608,"y":1.6098,"z":0.0434},"rot":{"x":0.0799,"y":90.0006,"z":359.9831}},"bbb70a":{"lock":false,"pos":{"x":-3.8027,"y":1.5824,"z":-14.9354},"rot":{"x":359.9197,"y":270.031,"z":0.0168}},"cce0e0":{"lock":false,"pos":{"x":-12.0115,"y":1.671,"z":7.4502},"rot":{"x":359.9201,"y":270.0065,"z":0.0169}},"d26316":{"lock":false,"pos":{"x":-26.8215,"y":1.6154,"z":-11.8145},"rot":{"x":0.045,"y":45.3509,"z":359.9319}},"dbbfa0":{"lock":false,"pos":{"x":-30.2243,"y":1.6959,"z":-7.7},"rot":{"x":359.9201,"y":269.9789,"z":180.0169}},"def2f5":{"lock":false,"pos":{"x":-2.7248,"y":1.664,"z":0.3734},"rot":{"x":359.9197,"y":270.001,"z":180.0168}},"e9d947":{"lock":false,"pos":{"x":-2.6895,"y":1.3987,"z":-5.0483},"rot":{"x":359.9832,"y":0.0002,"z":359.9197}},"ff4d6f":{"lock":false,"pos":{"x":-17.12,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":269.996,"z":180.0169}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: In Blackest Pits @@ -63,9 +63,9 @@ Transform: posX: -10.33 posY: 1.62 posZ: 65.72 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Jenny's Choice a61b48.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Jenny's Choice a61b48.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Jenny's Choice a61b48.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Jenny's Choice a61b48.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Jenny's Choice a61b48.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Jenny's Choice a61b48.yaml index 8c10152dc..2bd16121c 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Jenny's Choice a61b48.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Jenny's Choice a61b48.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/790858329422808079/1407B0AB89A9DBCFEE07A84A0979829556D84A78/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Jenny''s Choice a61b48.ttslua' -LuaScriptState: '{"ml":{"057b7e":{"lock":false,"pos":{"x":-23.6764,"y":1.6111,"z":-11.51},"rot":{"x":359.9831,"y":-0.0008,"z":359.9201}},"06d29e":{"lock":false,"pos":{"x":-2.7248,"y":1.6551,"z":0.3733},"rot":{"x":0.0168,"y":179.9995,"z":0.0803}},"149816":{"lock":false,"pos":{"x":-30.2241,"y":1.6225,"z":-3.83},"rot":{"x":359.9831,"y":-0.0009,"z":359.9201}},"1af6e8":{"lock":false,"pos":{"x":-30.2241,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"1e7961":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9203,"y":270,"z":0.016}},"29d7e2":{"lock":false,"pos":{"x":-15.5985,"y":1.8209,"z":0.017},"rot":{"x":359.8887,"y":269.9785,"z":0.0184}},"3ba881":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"3c4300":{"lock":false,"pos":{"x":-23.6766,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9987,"z":0.0169}},"3d9a8b":{"lock":false,"pos":{"x":-22.2198,"y":1.7339,"z":-7.7092},"rot":{"x":0.0792,"y":269.9715,"z":359.9832}},"44b0c5":{"lock":false,"pos":{"x":-26.7848,"y":1.6188,"z":-0.0522},"rot":{"x":0.0799,"y":90.0026,"z":359.9831}},"46ead9":{"lock":false,"pos":{"x":-31.7026,"y":1.743,"z":-7.7614},"rot":{"x":0.081,"y":270.0021,"z":359.9834}},"61a21b":{"lock":false,"pos":{"x":-20.5245,"y":1.6101,"z":-0.2141},"rot":{"x":359.9201,"y":269.8899,"z":0.0171}},"6aa57e":{"lock":false,"pos":{"x":-30.2244,"y":1.6954,"z":-0.0298},"rot":{"x":359.9207,"y":269.989,"z":0.0183}},"6cb6e7":{"lock":false,"pos":{"x":-23.6764,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":-0.0006,"z":359.9201}},"7234af":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":-0.0008,"z":359.9201}},"845074":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270,"z":0.0168}},"8bae65":{"lock":false,"pos":{"x":-3.9277,"y":1.7344,"z":5.7572},"rot":{"x":359.9197,"y":269.9998,"z":180.0168}},"a45247":{"lock":false,"pos":{"x":1.6961,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"b2bd25":{"lock":false,"pos":{"x":-1.177,"y":1.5467,"z":-27.5609},"rot":{"x":359.9201,"y":269.9994,"z":0.0169}},"b5ceb0":{"lock":false,"pos":{"x":-26.8548,"y":1.6211,"z":7.3881},"rot":{"x":359.9201,"y":270.0042,"z":0.0169}},"b81937":{"lock":false,"pos":{"x":-26.6804,"y":1.6176,"z":-3.8413},"rot":{"x":0.0684,"y":135.0054,"z":0.0446}},"bbb70a":{"lock":false,"pos":{"x":-3.819,"y":1.5823,"z":-15.2311},"rot":{"x":359.9197,"y":270.0322,"z":0.0168}},"c6a2ab":{"lock":false,"pos":{"x":-27.6254,"y":1.6167,"z":-11.1322},"rot":{"x":359.9316,"y":314.9959,"z":359.9554}},"cca4ce":{"lock":false,"pos":{"x":-23.6764,"y":1.684,"z":-7.6884},"rot":{"x":359.9201,"y":270.0044,"z":0.0167}},"d778ee":{"lock":false,"pos":{"x":-26.967,"y":1.6168,"z":-7.7901},"rot":{"x":359.9201,"y":270.0042,"z":0.0169}},"df8dff":{"lock":false,"pos":{"x":-31.957,"y":1.8293,"z":-0.0662},"rot":{"x":4.7643,"y":270.0184,"z":0.017}},"e02060":{"lock":false,"pos":{"x":-2.6886,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"ea8211":{"lock":false,"pos":{"x":-30.2241,"y":1.6931,"z":-7.6998},"rot":{"x":359.9202,"y":269.9836,"z":0.0165}},"ef067f":{"lock":false,"pos":{"x":-27.2278,"y":1.6207,"z":4.0347},"rot":{"x":0.0684,"y":135.0052,"z":0.0446}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Jenny's Choice @@ -63,9 +63,9 @@ Transform: posX: -7.72 posY: 1.62 posZ: 66.96 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Knightfall df62e8.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Knightfall df62e8.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Knightfall df62e8.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Knightfall df62e8.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Knightfall df62e8.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Knightfall df62e8.yaml index 71582fef7..5fb186ef9 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Knightfall df62e8.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Knightfall df62e8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142937041/3253F31B9483C3B5D0A98BA7E479E006FBF8D270/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Knightfall df62e8.ttslua' -LuaScriptState: '{"ml":{"0679c6":{"lock":false,"pos":{"x":-11.8399,"y":1.6678,"z":0.2602},"rot":{"x":359.9201,"y":269.988,"z":0.0169}},"141409":{"lock":false,"pos":{"x":-30.2241,"y":1.6982,"z":-0.03},"rot":{"x":359.9201,"y":269.9963,"z":180.0169}},"245b8d":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9964,"z":180.0169}},"271ce2":{"lock":false,"pos":{"x":-4.3628,"y":1.5831,"z":-15.1267},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"2d17c9":{"lock":false,"pos":{"x":-23.6765,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":269.9958,"z":180.0169}},"3106e6":{"lock":false,"pos":{"x":1.6965,"y":1.6368,"z":14.2788},"rot":{"x":359.9552,"y":224.998,"z":0.0687}},"917494":{"lock":false,"pos":{"x":-2.7246,"y":1.664,"z":0.3733},"rot":{"x":359.9197,"y":269.9855,"z":0.0169}},"9d4e42":{"lock":false,"pos":{"x":-3.9274,"y":1.7397,"z":5.7571},"rot":{"x":359.9197,"y":269.9857,"z":180.0169}},"a4e5e9":{"lock":false,"pos":{"x":-2.6884,"y":1.655,"z":-5.0486},"rot":{"x":359.9197,"y":269.9855,"z":0.0169}},"a68851":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9972,"z":180.0169}},"b21de6":{"lock":false,"pos":{"x":-13.3172,"y":1.6804,"z":7.5859},"rot":{"x":359.9201,"y":269.9856,"z":180.0169}},"b8480f":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9855,"z":0.0169}},"bab1d6":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.997,"z":180.0169}},"c9e9ad":{"lock":false,"pos":{"x":-5.3818,"y":1.4082,"z":14.423},"rot":{"x":359.9832,"y":-0.0034,"z":359.9196}},"d306b8":{"lock":false,"pos":{"x":-12.4062,"y":1.679,"z":12.7949},"rot":{"x":359.9201,"y":269.9857,"z":180.0169}},"da3aed":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9855,"z":0.0169}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Knightfall @@ -63,9 +63,9 @@ Transform: posX: -8.95 posY: 1.62 posZ: 65.45 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Last Call at Roxie's c6a1ca.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Last Call at Roxie's c6a1ca.ttslua index ad53849db..e6f67c6af 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Last Call at Roxie's c6a1ca.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Last Call at Roxie's c6a1ca.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Last Call at Roxie's c6a1ca.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Last Call at Roxie's c6a1ca.yaml index 9a1352f82..46169c9b1 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Last Call at Roxie's c6a1ca.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Last Call at Roxie's c6a1ca.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142938527/354E6204BB01AED91EAEB19D99E4D95620F99C56/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Last Call at Roxie''s c6a1ca.ttslua' -LuaScriptState: '{"ml":{"05dd0a":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"0df520":{"lock":false,"pos":{"x":-11.4769,"y":1.6694,"z":7.3277},"rot":{"x":359.9201,"y":269.9876,"z":0.0169}},"11a797":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"29a427":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":-0.0032,"z":359.9201}},"30c8b6":{"lock":false,"pos":{"x":-20.4245,"y":1.6099,"z":-0.3109},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"3b6690":{"lock":false,"pos":{"x":-20.3057,"y":1.6086,"z":-3.9972},"rot":{"x":359.9554,"y":224.9999,"z":0.0684}},"43390e":{"lock":false,"pos":{"x":-25.129,"y":1.809,"z":-1.3516},"rot":{"x":359.9271,"y":270.0207,"z":6.3789}},"49232a":{"lock":false,"pos":{"x":-26.9264,"y":1.619,"z":-0.0365},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"567db0":{"lock":false,"pos":{"x":-3.974,"y":1.5826,"z":-15.0374},"rot":{"x":359.9197,"y":270.0023,"z":0.0168}},"5ee55d":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9988,"z":0.0169}},"6f1e9e":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":0.0169,"y":179.9695,"z":0.0802}},"7234af":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9828,"y":-0.0032,"z":359.9266}},"7a4949":{"lock":false,"pos":{"x":-11.176,"y":1.6668,"z":-0.012},"rot":{"x":359.9201,"y":270.0181,"z":0.0169}},"7a4b8e":{"lock":false,"pos":{"x":-20.0769,"y":1.6117,"z":7.4094},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"9c6ccd":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"a08fa0":{"lock":false,"pos":{"x":-3.9277,"y":1.7237,"z":5.7571},"rot":{"x":359.9197,"y":269.9998,"z":180.0168}},"a137d8":{"lock":false,"pos":{"x":-23.6764,"y":1.6863,"z":-0.0301},"rot":{"x":359.921,"y":269.9989,"z":0.019}},"a45247":{"lock":false,"pos":{"x":1.6966,"y":1.5583,"z":14.2781},"rot":{"x":359.9551,"y":225.017,"z":0.0687}},"b1d40e":{"lock":false,"pos":{"x":-2.7247,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":180.0068,"z":0.0803}},"b8ca38":{"lock":false,"pos":{"x":-23.6765,"y":1.6885,"z":7.5699},"rot":{"x":359.9201,"y":269.9985,"z":0.0169}},"d60ed8":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9992,"z":0.0169}},"e3aa6a":{"lock":false,"pos":{"x":-17.1199,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":-0.0033,"z":359.92}},"e78e52":{"lock":false,"pos":{"x":-20.229,"y":1.6108,"z":3.6702},"rot":{"x":359.9316,"y":315.0001,"z":359.9554}},"eb5dd9":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"ffeff3":{"lock":false,"pos":{"x":-27.1788,"y":1.6183,"z":-3.7526},"rot":{"x":359.9315,"y":314.8558,"z":359.9556}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Last Call at Roxie's @@ -63,9 +63,9 @@ Transform: posX: -9.76 posY: 1.62 posZ: 64.39 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Masks of Nyarlathotep – New York 94a1f8.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Masks of Nyarlathotep – New York 94a1f8.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Masks of Nyarlathotep – New York 94a1f8.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Masks of Nyarlathotep – New York 94a1f8.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Masks of Nyarlathotep – New York 94a1f8.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Masks of Nyarlathotep – New York 94a1f8.yaml index c5ed75e61..e3a07c703 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Masks of Nyarlathotep – New York 94a1f8.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Masks of Nyarlathotep – New York 94a1f8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142939810/7A53406FA1EFA9D556EF559B24A679E566114745/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include "Custom_Model Masks of Nyarlathotep \u2013 New York 94a1f8.ttslua" -LuaScriptState: '{"ml":{"0f2ffc":{"lock":false,"pos":{"x":-2.6886,"y":1.6555,"z":-5.0485},"rot":{"x":0.0169,"y":179.9837,"z":0.0803}},"256aa6":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"4e3390":{"lock":false,"pos":{"x":-13.0308,"y":1.6899,"z":7.2677},"rot":{"x":359.9201,"y":269.9855,"z":0.0169}},"515e9e":{"lock":false,"pos":{"x":1.6965,"y":1.6368,"z":14.2789},"rot":{"x":359.9552,"y":224.9984,"z":0.0687}},"8f0718":{"lock":false,"pos":{"x":-3.9275,"y":1.7504,"z":5.757},"rot":{"x":359.9197,"y":269.9868,"z":180.0168}},"aae2b1":{"lock":false,"pos":{"x":-3.566,"y":1.582,"z":-15.0714},"rot":{"x":359.9197,"y":270.0002,"z":0.0168}},"fed65c":{"lock":false,"pos":{"x":-2.7247,"y":1.6571,"z":0.3733},"rot":{"x":0.0169,"y":179.9893,"z":0.0803}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: "Masks of Nyarlathotep \u2013 New York" @@ -63,9 +63,9 @@ Transform: posX: -10.84 posY: 1.62 posZ: 67.31 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Miskatonic Mouse 6defb8.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Miskatonic Mouse 6defb8.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Miskatonic Mouse 6defb8.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Miskatonic Mouse 6defb8.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Miskatonic Mouse 6defb8.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Miskatonic Mouse 6defb8.yaml index db748f3b4..c63011f44 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Miskatonic Mouse 6defb8.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Miskatonic Mouse 6defb8.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1620690956766119953/F8003A1B5AC39F2D2DABFF6D0AA2168CEC8BFA2C/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Miskatonic Mouse 6defb8.ttslua' -LuaScriptState: '{"ml":{"070048":{"lock":false,"pos":{"x":-30.2242088317871,"y":2.87992572784424,"z":-3.82993316650391},"rot":{"x":-0.00231676921248436,"y":179.997619628906,"z":1.26457941532135}},"09ad8b":{"lock":false,"pos":{"x":-36.7732582092285,"y":3.03648447990417,"z":7.57027101516724},"rot":{"x":358.734741210938,"y":269.989898681641,"z":180}},"1d8274":{"lock":false,"pos":{"x":-3.9277,"y":1.7348,"z":5.7572},"rot":{"x":359.9197,"y":270.0125,"z":180.0168}},"1f45da":{"lock":false,"pos":{"x":-3.95600080490112,"y":1.59753942489624,"z":-10.4412031173706},"rot":{"x":359.919738769531,"y":269.981781005859,"z":0.016862727701664}},"20323b":{"lock":false,"pos":{"x":-33.9119415283203,"y":2.95937633514404,"z":11.2227916717529},"rot":{"x":359.103210449219,"y":224.98796081543,"z":0.879777431488037}},"270525":{"lock":false,"pos":{"x":-30.224401473999,"y":2.87921810150146,"z":11.4601135253906},"rot":{"x":-0.000603744527325034,"y":179.956634521484,"z":1.26238405704498}},"2875cc":{"lock":false,"pos":{"x":-27.2158050537109,"y":2.8130829334259,"z":3.97495055198669},"rot":{"x":359.108581542969,"y":315.053588867188,"z":359.092346191406}},"2899d0":{"lock":false,"pos":{"x":-36.7731895446777,"y":3.03730201721191,"z":-0.0297468043863773},"rot":{"x":358.734313964844,"y":269.989624023438,"z":179.998733520508}},"319c65":{"lock":false,"pos":{"x":-1.8848,"y":1.4773,"z":-23.1586},"rot":{"x":359.9201,"y":269.9951,"z":0.0169}},"3b6978":{"lock":false,"pos":{"x":-33.4780006408691,"y":2.95103621482849,"z":-0.0187404733151197},"rot":{"x":358.734558105469,"y":270.01611328125,"z":359.979949951172}},"3bc61d":{"lock":false,"pos":{"x":-27.0083675384521,"y":2.80853319168091,"z":0.0778232514858246},"rot":{"x":358.734497070313,"y":270.012481689453,"z":359.987976074219}},"3fe960":{"lock":false,"pos":{"x":-30.2240238189697,"y":2.89177227020264,"z":15.1899032592773},"rot":{"x":358.736755371094,"y":269.997924804688,"z":179.966354370117}},"4a973f":{"lock":false,"pos":{"x":-23.6766967773438,"y":2.74857759475708,"z":7.56988096237183},"rot":{"x":358.734588623047,"y":269.9853515625,"z":179.99919128418}},"53a4a1":{"lock":false,"pos":{"x":-17.1201019287109,"y":2.60411930084229,"z":-0.030163012444973},"rot":{"x":358.734161376953,"y":269.990753173828,"z":179.997467041016}},"60aa1e":{"lock":false,"pos":{"x":-3.7979,"y":1.4061,"z":14.9015},"rot":{"x":359.9196,"y":270.0016,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-40.0450210571289,"y":3.09593415260315,"z":0.0257965438067913},"rot":{"x":358.735046386719,"y":270.003601074219,"z":359.979919433594}},"776283":{"lock":false,"pos":{"x":-34.0347137451172,"y":2.9631130695343,"z":3.60240793228149},"rot":{"x":0.893873751163483,"y":135.028381347656,"z":0.8848837018013}},"83b3af":{"lock":false,"pos":{"x":-30.22438621521,"y":2.89256238937378,"z":7.57004451751709},"rot":{"x":358.734497070313,"y":269.990844726563,"z":180.001251220703}},"970ac8":{"lock":false,"pos":{"x":-23.6762428283691,"y":2.73520588874817,"z":3.86003112792969},"rot":{"x":-0.0016176791395992,"y":179.987777709961,"z":1.2663322687149}},"971f55":{"lock":false,"pos":{"x":-8.70327758789063,"y":1.67401933670044,"z":5.7885594367981},"rot":{"x":359.92138671875,"y":269.996215820313,"z":180.015869140625}},"9b26d0":{"lock":false,"pos":{"x":-20.3389415740967,"y":2.66163778305054,"z":-0.0744780227541924},"rot":{"x":358.734130859375,"y":270.012390136719,"z":-0.0017197597771883}},"9cd123":{"lock":false,"pos":{"x":-23.6764869689941,"y":2.74811339378357,"z":15.1897840499878},"rot":{"x":358.7353515625,"y":269.998504638672,"z":179.980484008789}},"aa3d8a":{"lock":false,"pos":{"x":-9.35670757293701,"y":1.64423155784607,"z":-0.657828032970428},"rot":{"x":359.920074462891,"y":270.017547607422,"z":0.0168047305196524}},"afed94":{"lock":false,"pos":{"x":-26.1752319335938,"y":2.79065299034119,"z":-4.41181564331055},"rot":{"x":359.103485107422,"y":224.993515014648,"z":0.894548416137695}},"b1d640":{"lock":false,"pos":{"x":-30.2243633270264,"y":2.87951040267944,"z":3.86010098457336},"rot":{"x":-0.00255285133607686,"y":180.008117675781,"z":1.25979053974152}},"ba391c":{"lock":false,"pos":{"x":-23.6766033172607,"y":2.74889135360718,"z":-0.0301193725317717},"rot":{"x":358.734313964844,"y":269.985260009766,"z":179.998458862305}},"bc1bcc":{"lock":false,"pos":{"x":-2.7247,"y":1.6256,"z":0.3733},"rot":{"x":359.9197,"y":269.9813,"z":0.0169}},"bfb766":{"lock":false,"pos":{"x":-2.6886,"y":1.6239,"z":-5.0485},"rot":{"x":359.9197,"y":269.9754,"z":0.0169}},"c62fb5":{"lock":false,"pos":{"x":-23.6766815185547,"y":2.73485970497131,"z":11.4600524902344},"rot":{"x":-0.00159484439063817,"y":180.005676269531,"z":1.26562547683716}},"c907e9":{"lock":false,"pos":{"x":-33.5385971069336,"y":2.95191144943237,"z":7.56055545806885},"rot":{"x":358.735137939453,"y":270.013885498047,"z":359.978973388672}},"cabbb3":{"lock":false,"pos":{"x":-30.2242,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":270.0274,"z":180.0168}},"d37681":{"lock":false,"pos":{"x":-27.0100135803223,"y":2.80800485610962,"z":7.49491882324219},"rot":{"x":358.735107421875,"y":270.012268066406,"z":359.984222412109}},"d513b8":{"lock":false,"pos":{"x":-30.2243518829346,"y":2.89364981651306,"z":-7.69995307922363},"rot":{"x":358.733795166016,"y":269.985015869141,"z":179.997680664063}},"daa421":{"lock":false,"pos":{"x":1.69660079479218,"y":1.5583176612854,"z":14.2781038284302},"rot":{"x":359.955139160156,"y":224.990631103516,"z":0.068679116666317}},"dbdb0f":{"lock":false,"pos":{"x":-43.3701095581055,"y":3.18295812606812,"z":-0.0298523493111134},"rot":{"x":358.734741210938,"y":270.000701904297,"z":179.99853515625}},"e600d4":{"lock":false,"pos":{"x":-27.0161094665527,"y":1.72376358509064,"z":15.7743606567383},"rot":{"x":359.920043945313,"y":270.214721679688,"z":180.016540527344}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Miskatonic Mouse @@ -63,9 +63,9 @@ Transform: posX: -9.06 posY: 1.63 posZ: 67.74 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Stranger Things 408301.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Stranger Things 408301.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Stranger Things 408301.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Stranger Things 408301.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Stranger Things 408301.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Stranger Things 408301.yaml index fd0f3508e..5ac5ab703 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Stranger Things 408301.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model Stranger Things 408301.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142948271/A763104B91306431654FBA9E3D88FE0E23CE6E6E/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model Stranger Things 408301.ttslua' -LuaScriptState: '{"ml":{"1078c7":{"lock":false,"pos":{"x":1.6964,"y":1.6699,"z":14.2788},"rot":{"x":359.9552,"y":224.998,"z":180.0686}},"22e3f2":{"lock":false,"pos":{"x":-2.6904,"y":1.655,"z":-5.0485},"rot":{"x":359.9197,"y":270.0118,"z":0.0168}},"239c56":{"lock":false,"pos":{"x":-36.7733,"y":1.7022,"z":-7.7},"rot":{"x":359.9201,"y":269.9961,"z":0.0169}},"3210d6":{"lock":false,"pos":{"x":-27.0934,"y":1.6172,"z":-7.2278},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"3ba2fb":{"lock":false,"pos":{"x":-30.2244,"y":1.6909,"z":-15.28},"rot":{"x":359.9201,"y":269.9962,"z":0.0169}},"43d027":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.0301},"rot":{"x":359.9201,"y":269.9807,"z":0.0169}},"4595ad":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9967,"z":0.0169}},"4667f1":{"lock":false,"pos":{"x":-27.2752,"y":1.6209,"z":4.5605},"rot":{"x":359.9316,"y":315,"z":359.9554}},"4f0a6b":{"lock":false,"pos":{"x":-19.6594,"y":1.61,"z":3.6336},"rot":{"x":0.0446,"y":45,"z":359.9316}},"616612":{"lock":false,"pos":{"x":-33.8841,"y":1.6275,"z":-4.2381},"rot":{"x":0.0446,"y":45,"z":359.9316}},"62b3ab":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":269.9855,"z":0.0169}},"6950d2":{"lock":false,"pos":{"x":-33.7138,"y":1.6263,"z":-7.6781},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"69c26d":{"lock":false,"pos":{"x":-4.3001,"y":1.4068,"z":14.6571},"rot":{"x":359.9832,"y":0.0007,"z":359.9197}},"6bbd29":{"lock":false,"pos":{"x":-9.9085,"y":1.6664,"z":1.7308},"rot":{"x":359.9201,"y":269.9864,"z":0.0169}},"709830":{"lock":false,"pos":{"x":-30.2243,"y":1.6225,"z":-3.83},"rot":{"x":359.9831,"y":-0.0046,"z":359.9201}},"7234af":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0.0072,"z":359.92}},"893557":{"lock":false,"pos":{"x":-23.6765,"y":1.6885,"z":7.5699},"rot":{"x":359.9201,"y":269.9939,"z":0.0169}},"9f9e79":{"lock":false,"pos":{"x":-3.9275,"y":1.7504,"z":5.7571},"rot":{"x":359.9197,"y":269.9856,"z":180.0168}},"b2b842":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9855,"z":0.0169}},"b6d48a":{"lock":false,"pos":{"x":-26.9756,"y":1.6157,"z":-11.6402},"rot":{"x":0.0446,"y":45,"z":359.9316}},"bb506e":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9855,"z":0.0169}},"bc825a":{"lock":false,"pos":{"x":-4.1331,"y":1.5829,"z":-14.6606},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"be6abb":{"lock":false,"pos":{"x":-30.2243,"y":1.6203,"z":-11.51},"rot":{"x":359.9831,"y":0.0072,"z":359.92}},"c210e3":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9935,"z":0.0169}},"d90311":{"lock":false,"pos":{"x":-30.2242,"y":1.6931,"z":-7.7001},"rot":{"x":359.9201,"y":269.9952,"z":0.0169}},"daef01":{"lock":false,"pos":{"x":-30.2243,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":0.007,"z":359.92}},"e22a64":{"lock":false,"pos":{"x":-27.6267,"y":1.6188,"z":-4.0757},"rot":{"x":359.9316,"y":314.9999,"z":359.9554}},"f0e2dc":{"lock":false,"pos":{"x":-17.12,"y":1.6765,"z":-0.03},"rot":{"x":359.9201,"y":269.9836,"z":180.0169}},"f6d6d8":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":269.978,"z":0.0169}},"f7c15e":{"lock":false,"pos":{"x":-30.2242,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9958,"z":0.0169}},"fbf157":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0.0072,"z":359.92}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: Stranger Things @@ -63,9 +63,9 @@ Transform: posX: -11.22 posY: 1.62 posZ: 66.5 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Collector 9810eb.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Collector 9810eb.ttslua index ad53849db..e6f67c6af 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Collector 9810eb.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Collector 9810eb.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Collector 9810eb.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Collector 9810eb.yaml index 58626a95d..4e782857b 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Collector 9810eb.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Collector 9810eb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142920786/52ED9B6276539BF3E1F332C363B21B3D7F6960AA/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The Collector 9810eb.ttslua' -LuaScriptState: '{"ml":{"00688d":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":270,"z":0.0169}},"010d85":{"lock":false,"pos":{"x":-3.9274,"y":1.7344,"z":5.7571},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"149deb":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"150603":{"lock":false,"pos":{"x":-4.4609,"y":1.5834,"z":-14.7893},"rot":{"x":359.9197,"y":269.9951,"z":0.0168}},"20314c":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":180,"z":0.0799}},"27dc65":{"lock":false,"pos":{"x":-20.5971,"y":1.6123,"z":7.2097},"rot":{"x":359.9201,"y":269.993,"z":0.0169}},"368ca7":{"lock":false,"pos":{"x":-2.6886,"y":1.6623,"z":-5.0485},"rot":{"x":359.9832,"y":-0.0001,"z":359.9197}},"45a6ec":{"lock":false,"pos":{"x":-17.1199,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"5e7e07":{"lock":false,"pos":{"x":-23.6766,"y":1.6935,"z":15.19},"rot":{"x":359.9201,"y":270.0272,"z":180.0168}},"643870":{"lock":false,"pos":{"x":-20.1546,"y":1.6096,"z":0.0507},"rot":{"x":359.9201,"y":269.9931,"z":0.0169}},"6f9258":{"lock":false,"pos":{"x":-20.9414,"y":1.6117,"z":3.308},"rot":{"x":0.0776,"y":120,"z":0.0253}},"7234af":{"lock":false,"pos":{"x":-20.7421,"y":1.6081,"z":-7.8073},"rot":{"x":359.9201,"y":269.9929,"z":0.0169}},"8ce0e1":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"8cf84a":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":0.0169,"y":180.0001,"z":0.0799}},"98b377":{"lock":false,"pos":{"x":-2.7248,"y":1.6566,"z":0.3733},"rot":{"x":359.9832,"y":-0.0021,"z":359.9197}},"abd037":{"lock":false,"pos":{"x":-23.6766,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"c29eac":{"lock":false,"pos":{"x":-17.12,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"d1bab1":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"f8005d":{"lock":false,"pos":{"x":-3.9558,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270,"z":0.0168}},"fa8210":{"lock":false,"pos":{"x":1.6965,"y":1.6545,"z":14.2788},"rot":{"x":359.9552,"y":224.9979,"z":0.0687}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The Collector @@ -63,9 +63,9 @@ Transform: posX: -10.6 posY: 1.68 posZ: 64.25 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Colour out of Space 5b81ff.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Colour out of Space 5b81ff.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Colour out of Space 5b81ff.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Colour out of Space 5b81ff.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Colour out of Space 5b81ff.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Colour out of Space 5b81ff.yaml index 5cf94790e..ffffc08ed 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Colour out of Space 5b81ff.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Colour out of Space 5b81ff.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142919895/4026718A421BE11AC64320BE9BC2515B364D066E/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The Colour out of Space 5b81ff.ttslua' -LuaScriptState: '{"ml":{"058b91":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"21c977":{"lock":false,"pos":{"x":-21.0584,"y":1.6119,"z":3.505},"rot":{"x":359.9554,"y":225,"z":0.0684}},"222582":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"23d608":{"lock":false,"pos":{"x":-2.6884,"y":1.6535,"z":-5.0486},"rot":{"x":359.9197,"y":269.9854,"z":0.0169}},"2ab9ac":{"lock":false,"pos":{"x":-17.12,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":269.9964,"z":180.0169}},"2e887e":{"lock":false,"pos":{"x":-3.9083,"y":1.5825,"z":-15.1234},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"407732":{"lock":false,"pos":{"x":-9.7271,"y":1.6676,"z":-0.255},"rot":{"x":359.9201,"y":269.9876,"z":0.0169}},"4c7aff":{"lock":false,"pos":{"x":1.6966,"y":1.6584,"z":14.2788},"rot":{"x":359.9552,"y":224.998,"z":0.0687}},"61b186":{"lock":false,"pos":{"x":-11.155,"y":1.6791,"z":7.1548},"rot":{"x":359.9201,"y":269.9855,"z":180.0169}},"6dca3e":{"lock":false,"pos":{"x":-2.7246,"y":1.6551,"z":0.3736},"rot":{"x":359.9197,"y":269.9846,"z":0.0169}},"6f54e2":{"lock":false,"pos":{"x":-11.3147,"y":1.6797,"z":13.0979},"rot":{"x":359.9201,"y":269.9855,"z":180.0169}},"7234af":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":359.9831,"y":359.9919,"z":359.92}},"770eca":{"lock":false,"pos":{"x":-17.12,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9958,"z":180.0169}},"80fb47":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9855,"z":180.0169}},"a1b852":{"lock":false,"pos":{"x":-11.2981,"y":1.7087,"z":10.3332},"rot":{"x":359.9201,"y":269.9856,"z":180.0169}},"ab51fa":{"lock":false,"pos":{"x":-20.3744,"y":1.6099,"z":0.0842},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"b83079":{"lock":false,"pos":{"x":-3.9275,"y":1.7184,"z":5.7571},"rot":{"x":359.9197,"y":269.9856,"z":180.0168}},"bfb121":{"lock":false,"pos":{"x":-17.12,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":269.9953,"z":180.0169}},"c6995b":{"lock":false,"pos":{"x":-21.6704,"y":1.6106,"z":-3.7228},"rot":{"x":359.9316,"y":315.0002,"z":359.9554}},"d46b84":{"lock":false,"pos":{"x":-11.4019,"y":1.6887,"z":15.8439},"rot":{"x":359.9274,"y":269.9868,"z":180.3533}},"eb22de":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":359.9921,"z":359.9201}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The Colour out of Space @@ -63,9 +63,9 @@ Transform: posX: -9.93 posY: 1.62 posZ: 64.8 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Curse of Amulotep 0d7a8d.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Curse of Amulotep 0d7a8d.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Curse of Amulotep 0d7a8d.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Curse of Amulotep 0d7a8d.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Curse of Amulotep 0d7a8d.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Curse of Amulotep 0d7a8d.yaml index 13aaa29bf..71a935870 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Curse of Amulotep 0d7a8d.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Curse of Amulotep 0d7a8d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142921541/F138D6DF73FB79AC6D1C420869299A481AFA7B90/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The Curse of Amulotep 0d7a8d.ttslua' -LuaScriptState: '{"ml":{"0ce6bb":{"lock":false,"pos":{"x":-12.6932,"y":1.6812,"z":6.9294},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"5127f6":{"lock":false,"pos":{"x":1.6965,"y":1.6662,"z":14.2788},"rot":{"x":359.9551,"y":224.9998,"z":180.0686}},"5e4e43":{"lock":false,"pos":{"x":-13.2968,"y":1.6723,"z":-7.7574},"rot":{"x":359.9201,"y":270.028,"z":180.0168}},"8075b9":{"lock":false,"pos":{"x":-2.7246,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":269.9854,"z":0.0169}},"a08daa":{"lock":false,"pos":{"x":-2.6884,"y":1.6535,"z":-5.0485},"rot":{"x":359.9197,"y":269.9855,"z":0.0169}},"b3cbc1":{"lock":false,"pos":{"x":-3.8937,"y":1.5826,"z":-14.6014},"rot":{"x":359.9197,"y":270.0009,"z":0.0168}},"c6a9ae":{"lock":false,"pos":{"x":-3.9274,"y":1.7611,"z":5.7572},"rot":{"x":359.9197,"y":269.9857,"z":180.0168}},"dc50b3":{"lock":false,"pos":{"x":-3.9555,"y":1.6556,"z":-10.4413},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"ecbf8f":{"lock":false,"pos":{"x":-17.1201,"y":1.6754,"z":-15.2799},"rot":{"x":359.9201,"y":270.0269,"z":180.0168}},"f9fc71":{"lock":false,"pos":{"x":-50.9244,"y":1.7294,"z":8.1784},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The Curse of Amulotep @@ -63,9 +63,9 @@ Transform: posX: -6.7 posY: 1.62 posZ: 66.35 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Facts in the Case of M. Valdemar 238d6f.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Facts in the Case of M. Valdemar 238d6f.ttslua new file mode 100644 index 000000000..3c2a044ca --- /dev/null +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Facts in the Case of M. Valdemar 238d6f.ttslua @@ -0,0 +1,90 @@ +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) +end + +function buttonClick_download() + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Facts in the Case of M. Valdemar 238d6f.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Facts in the Case of M. Valdemar 238d6f.yaml new file mode 100644 index 000000000..0cbe42108 --- /dev/null +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Facts in the Case of M. Valdemar 238d6f.yaml @@ -0,0 +1,73 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +AttachedDecals: +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ + Name: dunwich_back + Size: 7.4 + Transform: + posX: -0.0021877822 + posY: -0.08963572 + posZ: -0.00288731651 + rotX: 270.0 + rotY: 359.869568 + rotZ: 0.0 + scaleX: 2.00000215 + scaleY: 2.00000238 + scaleZ: 2.00000262 +Autoraise: true +ColorDiffuse: + a: 0.27451 + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1870695908503531344/DE3BBAD0CF8FCE5B05B8B18B44F049ECF06BCA5A/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 0 +Description: '' +DragSelectable: true +GMNotes: fancreations/scenario_valdemar.json +GUID: 238d6f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model The Facts in the Case of M. Valdemar 238d6f.ttslua' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: The Facts in the Case of M. Valdemar +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.6 + posY: 1.68 + posZ: 64.25 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.21 + scaleY: 0.2 + scaleZ: 2.46 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Fall of the House of Usher 42bdd3.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Fall of the House of Usher 42bdd3.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Fall of the House of Usher 42bdd3.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Fall of the House of Usher 42bdd3.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Fall of the House of Usher 42bdd3.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Fall of the House of Usher 42bdd3.yaml index a1b6b2b9d..54a676aac 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Fall of the House of Usher 42bdd3.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Fall of the House of Usher 42bdd3.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1771580824970152646/1C2D909AF92814C33B43D22F0EE1D6B8FD260998/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The Fall of the House of Usher 42bdd3.ttslua' -LuaScriptState: '{"ml":{"191941":{"lock":false,"pos":{"x":-8.8991,"y":1.6039,"z":-12.2997},"rot":{"x":359.922,"y":269.9513,"z":0.0169}},"1e5cf2":{"lock":false,"pos":{"x":-8.9685,"y":1.6055,"z":-7.0847},"rot":{"x":359.9211,"y":269.9971,"z":0.0173}},"1ec67c":{"lock":false,"pos":{"x":-2.6889,"y":1.6191,"z":-5.0485},"rot":{"x":0.0168,"y":179.9999,"z":0.0803}},"22ae93":{"lock":false,"pos":{"x":-30.2241,"y":1.6225,"z":-3.83},"rot":{"x":0.0166,"y":180.1514,"z":0.08}},"34fda8":{"lock":false,"pos":{"x":-33.6136,"y":1.6294,"z":3.5762},"rot":{"x":0.0684,"y":134.9841,"z":0.0446}},"49f26f":{"lock":false,"pos":{"x":-36.7604,"y":1.6463,"z":-0.1319},"rot":{"x":359.9201,"y":270.0081,"z":0.0168}},"4b8bb9":{"lock":false,"pos":{"x":0.1816,"y":1.6265,"z":-15.6845},"rot":{"x":359.9197,"y":270.0023,"z":0.0168}},"4d6ba5":{"lock":false,"pos":{"x":-30.2243,"y":1.6349,"z":-7.7001},"rot":{"x":359.9201,"y":270.011,"z":0.0168}},"4f0dc5":{"lock":false,"pos":{"x":-30.2243,"y":1.6372,"z":-0.0301},"rot":{"x":359.9201,"y":269.9995,"z":0.0168}},"64faca":{"lock":false,"pos":{"x":-34.2126,"y":1.628,"z":-3.9652},"rot":{"x":359.9455,"y":329.9937,"z":359.9392}},"7234af":{"lock":false,"pos":{"x":-26.7523,"y":1.6187,"z":-0.0751},"rot":{"x":359.9201,"y":270.0107,"z":0.0169}},"7a167a":{"lock":false,"pos":{"x":1.7099,"y":1.5583,"z":14.2855},"rot":{"x":359.9554,"y":224.7322,"z":0.0689}},"7da52c":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"82cc79":{"lock":false,"pos":{"x":-27.2534,"y":1.6172,"z":-7.651},"rot":{"x":359.9201,"y":270.0127,"z":0.0169}},"8a3e0b":{"lock":false,"pos":{"x":-8.9186,"y":1.6062,"z":-4.448},"rot":{"x":359.9219,"y":270.0014,"z":180.0168}},"8a4aea":{"lock":false,"pos":{"x":-3.9278,"y":1.7733,"z":5.7572},"rot":{"x":359.9197,"y":270.0108,"z":180.0168}},"8fc1ca":{"lock":false,"pos":{"x":-27.3633,"y":1.6207,"z":3.5729},"rot":{"x":359.9554,"y":225.0201,"z":0.0684}},"90b00d":{"lock":false,"pos":{"x":-1.6368,"y":1.4983,"z":-39.3037},"rot":{"x":0,"y":270.0101,"z":359.6725}},"a8a05c":{"lock":false,"pos":{"x":-23.6765,"y":1.6156,"z":3.86},"rot":{"x":0.0167,"y":180.0935,"z":0.08}},"ab5023":{"lock":false,"pos":{"x":-2.7249,"y":1.6159,"z":0.3733},"rot":{"x":0.0168,"y":180,"z":0.0803}},"acf560":{"lock":false,"pos":{"x":-33.4997,"y":1.6304,"z":7.534},"rot":{"x":359.9201,"y":270.01,"z":0.0169}},"aef3fc":{"lock":false,"pos":{"x":-23.6766,"y":1.6258,"z":-7.7},"rot":{"x":359.9201,"y":269.9665,"z":0.0169}},"b485b2":{"lock":false,"pos":{"x":-8.8413,"y":1.603,"z":-14.9318},"rot":{"x":359.9213,"y":269.9984,"z":0.0179}},"b81b3a":{"lock":false,"pos":{"x":-30.2241,"y":1.6247,"z":3.86},"rot":{"x":0.0168,"y":180.0174,"z":0.0799}},"bbb70a":{"lock":false,"pos":{"x":-3.9117,"y":1.5826,"z":-14.806},"rot":{"x":359.9197,"y":270.0314,"z":0.0168}},"bd62c6":{"lock":false,"pos":{"x":-23.6767,"y":1.6303,"z":7.57},"rot":{"x":359.9201,"y":269.9995,"z":0.0168}},"c4b15a":{"lock":false,"pos":{"x":-21.0971,"y":1.641,"z":1.7052},"rot":{"x":359.3205,"y":270.0123,"z":0.0167}},"cac078":{"lock":false,"pos":{"x":-30.2243,"y":1.6394,"z":7.57},"rot":{"x":359.9201,"y":270.0006,"z":0.0168}},"d1e043":{"lock":false,"pos":{"x":-36.7732,"y":1.6339,"z":3.86},"rot":{"x":0.0168,"y":180.0144,"z":0.0799}},"e03eed":{"lock":false,"pos":{"x":-36.7732,"y":1.6486,"z":7.57},"rot":{"x":359.9201,"y":270.0102,"z":0.0168}},"ec039f":{"lock":false,"pos":{"x":-8.9555,"y":1.6047,"z":-9.7254},"rot":{"x":359.9219,"y":270.0037,"z":0.0168}},"eda22b":{"lock":false,"pos":{"x":-1.4656,"y":1.5756,"z":-26.9312},"rot":{"x":359.9201,"y":270.0143,"z":0.0169}},"f2cf1f":{"lock":false,"pos":{"x":-23.6765,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":269.9977,"z":0.0172}},"fdde48":{"lock":false,"pos":{"x":-27.0721,"y":1.6182,"z":-3.4372},"rot":{"x":359.9316,"y":315.0023,"z":359.9554}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The Fall of the House of Usher @@ -63,9 +63,9 @@ Transform: posX: 15.11 posY: 3.18 posZ: -58.67 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Festival 29d22a.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Festival 29d22a.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Festival 29d22a.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Festival 29d22a.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Festival 29d22a.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Festival 29d22a.yaml index 7d9dee486..5c34416b3 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Festival 29d22a.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Festival 29d22a.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142936385/DCE942F9A1172E9C55A36E4593F5CDC71D9BC3AD/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The Festival 29d22a.ttslua' -LuaScriptState: '{"ml":{"1e3988":{"lock":false,"pos":{"x":-30.2243,"y":1.6959,"z":-7.7},"rot":{"x":359.9201,"y":270.0014,"z":180.0169}},"259b7b":{"lock":false,"pos":{"x":-20.746,"y":1.685,"z":-0.0446},"rot":{"x":359.9201,"y":270.0016,"z":180.0169}},"27bf6a":{"lock":false,"pos":{"x":-10.5675,"y":1.6537,"z":13.5759},"rot":{"x":359.9201,"y":270.0211,"z":0.0168}},"28272f":{"lock":false,"pos":{"x":-27.0195,"y":1.6235,"z":14.5832},"rot":{"x":359.9201,"y":270.0063,"z":0.0169}},"299ea1":{"lock":false,"pos":{"x":-30.223,"y":1.6982,"z":-0.0301},"rot":{"x":359.9201,"y":270.024,"z":180.0168}},"2c792a":{"lock":false,"pos":{"x":-34.0171,"y":1.6278,"z":-3.8093},"rot":{"x":0.0684,"y":134.9883,"z":0.0445}},"3d2a1a":{"lock":false,"pos":{"x":-3.9275,"y":1.7504,"z":5.7571},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"3eef2e":{"lock":false,"pos":{"x":-9.6732,"y":1.6648,"z":0.0646},"rot":{"x":359.9201,"y":269.9858,"z":0.0169}},"447fd2":{"lock":false,"pos":{"x":-34.1668,"y":1.6303,"z":3.8209},"rot":{"x":0.0253,"y":29.9808,"z":359.9224}},"4591d4":{"lock":false,"pos":{"x":-20.7985,"y":1.615,"z":15.1153},"rot":{"x":359.9201,"y":270.0109,"z":0.0169}},"4b81f6":{"lock":false,"pos":{"x":-3.8815,"y":1.5826,"z":-14.612},"rot":{"x":359.9197,"y":270.0021,"z":0.0168}},"50ffd3":{"lock":false,"pos":{"x":-23.6765,"y":1.6902,"z":3.8601},"rot":{"x":359.9201,"y":270.0026,"z":180.0169}},"68ba2e":{"lock":false,"pos":{"x":-26.8859,"y":1.6172,"z":-6.0034},"rot":{"x":359.9554,"y":224.9895,"z":0.0684}},"6bc393":{"lock":false,"pos":{"x":-30.2243,"y":1.7027,"z":15.19},"rot":{"x":359.9201,"y":270.0014,"z":180.0169}},"7234af":{"lock":false,"pos":{"x":-33.4411,"y":1.6281,"z":-0.1151},"rot":{"x":359.9201,"y":270.0092,"z":0.0169}},"7b9e37":{"lock":false,"pos":{"x":-30.2243,"y":1.6225,"z":-3.83},"rot":{"x":0.0169,"y":179.9999,"z":0.0799}},"7bdc6b":{"lock":false,"pos":{"x":-23.6765,"y":1.6879,"z":-3.83},"rot":{"x":359.9201,"y":270.0012,"z":180.0169}},"7d6343":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9982,"z":0.0169}},"8ce4d8":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":179.9982,"z":0.0803}},"9e71b4":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4402},"rot":{"x":359.9197,"y":269.9982,"z":0.0168}},"a19bdb":{"lock":false,"pos":{"x":-30.2243,"y":1.627,"z":11.46},"rot":{"x":0.0169,"y":180.0077,"z":0.0799}},"a45247":{"lock":false,"pos":{"x":1.697,"y":1.5583,"z":14.2784},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"b5096d":{"lock":false,"pos":{"x":-13.5542,"y":1.6749,"z":-0.1164},"rot":{"x":359.9201,"y":270.0067,"z":180.0168}},"be3ac9":{"lock":false,"pos":{"x":-36.7732,"y":1.7073,"z":-0.03},"rot":{"x":359.9201,"y":269.9733,"z":180.0169}},"c2da92":{"lock":false,"pos":{"x":-20.9563,"y":1.61,"z":-2.6211},"rot":{"x":0.0253,"y":29.9999,"z":359.9224}},"c41b7b":{"lock":false,"pos":{"x":-30.2243,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":359.9757,"z":359.9201}},"ce35ae":{"lock":false,"pos":{"x":-2.7247,"y":1.6551,"z":0.3733},"rot":{"x":0.0168,"y":180.0006,"z":0.0803}},"d0c475":{"lock":false,"pos":{"x":-17.12,"y":1.6844,"z":15.19},"rot":{"x":359.9201,"y":270.0072,"z":180.0168}},"d7fc4c":{"lock":false,"pos":{"x":-30.2198,"y":1.7004,"z":7.5731},"rot":{"x":359.9201,"y":270.0274,"z":180.0168}},"da1f25":{"lock":false,"pos":{"x":-17.1199,"y":1.6054,"z":-0.03},"rot":{"x":359.9201,"y":270.0272,"z":0.0169}},"daa95d":{"lock":false,"pos":{"x":-27.1008,"y":1.6199,"z":2.1469},"rot":{"x":359.9554,"y":224.9999,"z":0.0684}},"db49f3":{"lock":false,"pos":{"x":-21.1809,"y":1.6117,"z":2.132},"rot":{"x":0.0684,"y":134.9832,"z":0.0445}},"f0d16a":{"lock":false,"pos":{"x":-23.6765,"y":1.6935,"z":15.19},"rot":{"x":359.9201,"y":270.011,"z":180.0168}},"f108e3":{"lock":false,"pos":{"x":-27.3214,"y":1.6189,"z":-2.4573},"rot":{"x":359.9316,"y":315.0002,"z":359.9554}},"f591c7":{"lock":false,"pos":{"x":-26.9568,"y":1.6207,"z":5.6374},"rot":{"x":0.0684,"y":134.9882,"z":0.0445}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The Festival @@ -63,9 +63,9 @@ Transform: posX: -9.31 posY: 1.62 posZ: 64.66 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Grand Oak Hotel 5ccf55.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Grand Oak Hotel 5ccf55.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Grand Oak Hotel 5ccf55.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Grand Oak Hotel 5ccf55.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Grand Oak Hotel 5ccf55.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Grand Oak Hotel 5ccf55.yaml index d49a2fce1..d7da09e96 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Grand Oak Hotel 5ccf55.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Grand Oak Hotel 5ccf55.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142935568/34A42BC3AEF7764F8D7BB242DB08FD36B8EC6DCB/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The Grand Oak Hotel 5ccf55.ttslua' -LuaScriptState: '{"ml":{"076680":{"lock":false,"pos":{"x":-1.4656,"y":1.4756,"z":-26.9304},"rot":{"x":359.9201,"y":270.0086,"z":0.0169}},"1832f9":{"lock":false,"pos":{"x":-30.2241,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":0.0168}},"31b5a1":{"lock":false,"pos":{"x":-17.12,"y":1.6189,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":0.0168}},"51a259":{"lock":false,"pos":{"x":-2.7247,"y":1.6256,"z":0.3733},"rot":{"x":0.0168,"y":180.0003,"z":0.0803}},"580dd8":{"lock":false,"pos":{"x":-30.2242,"y":1.6394,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":0.0168}},"5895c2":{"lock":false,"pos":{"x":-3.9277,"y":1.7299,"z":5.7534},"rot":{"x":359.9197,"y":269.999,"z":180.0168}},"6fc753":{"lock":false,"pos":{"x":-36.7732,"y":1.6508,"z":15.1901},"rot":{"x":359.9201,"y":269.9999,"z":0.0168}},"794c01":{"lock":false,"pos":{"x":-36.7732,"y":1.6463,"z":-0.03},"rot":{"x":359.9201,"y":270.0025,"z":0.0168}},"7f738c":{"lock":false,"pos":{"x":-17.1198,"y":1.6167,"z":-7.7001},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"801388":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9995,"z":0.0168}},"93cb42":{"lock":false,"pos":{"x":-17.12,"y":1.6234,"z":15.19},"rot":{"x":359.9201,"y":269.9999,"z":0.0168}},"9cd1ad":{"lock":false,"pos":{"x":-4.0559,"y":1.5827,"z":-15.1513},"rot":{"x":359.9197,"y":270,"z":0.0168}},"ad2380":{"lock":false,"pos":{"x":-2.6885,"y":1.6239,"z":-5.0485},"rot":{"x":0.0169,"y":179.9811,"z":0.0803}},"b3a042":{"lock":false,"pos":{"x":-0.217,"y":1.6291,"z":-10.403},"rot":{"x":359.9582,"y":269.9997,"z":-0.0057}},"daa47d":{"lock":false,"pos":{"x":-36.7732,"y":1.6486,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":0.0168}},"e3a8d4":{"lock":false,"pos":{"x":-17.1188,"y":1.6212,"z":7.5574},"rot":{"x":359.9201,"y":269.9977,"z":0.0168}},"fc4638":{"lock":false,"pos":{"x":1.6963,"y":1.5583,"z":14.2748},"rot":{"x":359.9552,"y":224.9405,"z":0.0687}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The Grand Oak Hotel @@ -63,9 +63,9 @@ Transform: posX: -7.46 posY: 1.62 posZ: 64.61 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Legend of Sleepy Hollow 0500f1.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Legend of Sleepy Hollow 0500f1.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Legend of Sleepy Hollow 0500f1.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Legend of Sleepy Hollow 0500f1.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Legend of Sleepy Hollow 0500f1.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Legend of Sleepy Hollow 0500f1.yaml index 34d1e2b40..783d81b37 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Legend of Sleepy Hollow 0500f1.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Legend of Sleepy Hollow 0500f1.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1617311203420460064/3D20A71D13F484BEEBCF572E827CD38FF3DF57E4/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The Legend of Sleepy Hollow 0500f1.ttslua' -LuaScriptState: '{"ml":{"033daa":{"lock":false,"pos":{"x":-8.1757,"y":1.6066,"z":0.3485},"rot":{"x":359.9216,"y":269.9993,"z":0.0168}},"0d0ca8":{"lock":false,"pos":{"x":-23.6765,"y":1.6292,"z":3.86},"rot":{"x":359.9201,"y":269.9998,"z":180.0168}},"15b639":{"lock":false,"pos":{"x":-2.6885,"y":1.6191,"z":-5.0485},"rot":{"x":0.0168,"y":180.0166,"z":0.0803}},"21f7a4":{"lock":false,"pos":{"x":-26.8493,"y":1.6194,"z":1.7171},"rot":{"x":359.9392,"y":239.9975,"z":0.0545}},"4027ed":{"lock":false,"pos":{"x":-30.2244,"y":1.6247,"z":3.8601},"rot":{"x":0.0169,"y":179.985,"z":0.0799}},"4b8bb9":{"lock":false,"pos":{"x":6.5889,"y":1.517,"z":-17.8819},"rot":{"x":359.9201,"y":270.0021,"z":0.0169}},"4f9d72":{"lock":false,"pos":{"x":-2.7247,"y":1.599,"z":0.3733},"rot":{"x":0.0168,"y":180,"z":0.0803}},"7112e4":{"lock":false,"pos":{"x":-36.7732,"y":1.6463,"z":-0.03},"rot":{"x":359.9201,"y":269.9997,"z":180.0168}},"7234af":{"lock":false,"pos":{"x":-33.2491,"y":1.6278,"z":-0.0616},"rot":{"x":359.9201,"y":270.0093,"z":0.0169}},"75a1d7":{"lock":false,"pos":{"x":-3.9282,"y":1.7684,"z":5.756},"rot":{"x":359.9197,"y":270.0071,"z":180.0168}},"7a167a":{"lock":false,"pos":{"x":1.7024,"y":1.5583,"z":14.2869},"rot":{"x":359.9554,"y":224.7314,"z":0.0689}},"7d002e":{"lock":false,"pos":{"x":-8.9412,"y":1.593,"z":-3.1373},"rot":{"x":359.9211,"y":270.0159,"z":0.0178}},"7fb809":{"lock":false,"pos":{"x":-8.8494,"y":1.6036,"z":-13.0782},"rot":{"x":359.9212,"y":270.0023,"z":0.0178}},"8385c4":{"lock":false,"pos":{"x":-8.8435,"y":1.6056,"z":-6.2428},"rot":{"x":359.9214,"y":270.0007,"z":180.0158}},"92ed37":{"lock":false,"pos":{"x":-26.8628,"y":1.6183,"z":-1.9646},"rot":{"x":359.9224,"y":300.0059,"z":359.9747}},"93a112":{"lock":false,"pos":{"x":-30.2243,"y":1.6394,"z":7.5708},"rot":{"x":359.9201,"y":269.9991,"z":180.0168}},"98cfeb":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4416},"rot":{"x":359.9197,"y":269.9995,"z":0.0168}},"9e9ff6":{"lock":false,"pos":{"x":-36.7733,"y":1.6441,"z":-7.7},"rot":{"x":359.9201,"y":269.9993,"z":180.0168}},"a7f7c7":{"lock":false,"pos":{"x":-36.7732,"y":1.6316,"z":-3.83},"rot":{"x":0.0168,"y":180.041,"z":0.08}},"abb407":{"lock":false,"pos":{"x":-8.8479,"y":1.6029,"z":-15.3075},"rot":{"x":359.9212,"y":270.011,"z":0.0178}},"afa1f3":{"lock":false,"pos":{"x":-8.8373,"y":1.6049,"z":-8.5317},"rot":{"x":359.9213,"y":270.0001,"z":0.0179}},"b5a46b":{"lock":false,"pos":{"x":-23.6765,"y":1.6269,"z":-3.8299},"rot":{"x":359.9201,"y":270,"z":180.0168}},"bbb70a":{"lock":false,"pos":{"x":-3.9121,"y":1.5826,"z":-14.8057},"rot":{"x":359.9197,"y":270.0306,"z":0.0168}},"bfa2a2":{"lock":false,"pos":{"x":-8.8434,"y":1.6042,"z":-10.8084},"rot":{"x":359.9212,"y":270.0005,"z":0.0178}},"e9cc5a":{"lock":false,"pos":{"x":-30.2243,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":269.9995,"z":180.0168}},"eda22b":{"lock":false,"pos":{"x":-1.4656,"y":1.5756,"z":-26.9308},"rot":{"x":359.9201,"y":270.0153,"z":0.0169}},"fbe9fd":{"lock":false,"pos":{"x":-24.8778,"y":1.6161,"z":-0.1574},"rot":{"x":0.0166,"y":180.1361,"z":0.08}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The Legend of Sleepy Hollow @@ -63,9 +63,9 @@ Transform: posX: 7.67 posY: 3.37 posZ: -40.85 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Nameless City 9d3083.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Nameless City 9d3083.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Nameless City 9d3083.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Nameless City 9d3083.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Nameless City 9d3083.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Nameless City 9d3083.yaml index 978561012..60c412188 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Nameless City 9d3083.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Nameless City 9d3083.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1797477398306699180/7C5363FFCCDCD4A1AF2A0C71B2A7E5F96D5ACCA4/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The Nameless City 9d3083.ttslua' -LuaScriptState: '{"ml":{"164a39":{"lock":false,"pos":{"x":-3.95620059967041,"y":1.59753966331482,"z":-10.4415016174316},"rot":{"x":359.919738769531,"y":269.998657226563,"z":0.0168390870094299}},"1a1506":{"lock":false,"pos":{"x":-12.104998588562,"y":1.59499669075012,"z":-11.3583011627197},"rot":{"x":359.920104980469,"y":269.973022460938,"z":0.0168796647340059}},"6e906f":{"lock":false,"pos":{"x":-3.9279,"y":1.7203,"z":5.7572},"rot":{"x":359.9197,"y":270,"z":180.0168}},"7d6103":{"lock":false,"pos":{"x":-12.0929002761841,"y":1.59430456161499,"z":-13.6558017730713},"rot":{"x":359.920104980469,"y":269.989196777344,"z":0.0168482903391123}},"7e3c60":{"lock":false,"pos":{"x":-16.4165992736816,"y":1.67012298107147,"z":9.44509983062744},"rot":{"x":0.0799057334661484,"y":90.030403137207,"z":359.983215332031}},"8067ce":{"lock":false,"pos":{"x":-2.7245,"y":1.6208,"z":0.3732},"rot":{"x":359.9197,"y":269.9814,"z":0.0169}},"8beeb8":{"lock":false,"pos":{"x":-30.2243003845215,"y":1.63719701766968,"z":-0.0299998410046101},"rot":{"x":359.920104980469,"y":270.000061035156,"z":180.016830444336}},"8fb06e":{"lock":false,"pos":{"x":-11.5186023712158,"y":1.48982048034668,"z":-26.3105010986328},"rot":{"x":359.920227050781,"y":269.659973144531,"z":0.0173455532640219}},"96f7e5":{"lock":false,"pos":{"x":-3.9277,"y":1.7203,"z":5.7571},"rot":{"x":359.9197,"y":270.0125,"z":180.0168}},"a0b3c1":{"lock":false,"pos":{"x":-12.7744,"y":1.6368,"z":7.2866},"rot":{"x":359.9201,"y":269.9998,"z":0.0168}},"a66270":{"lock":false,"pos":{"x":-12.6184,"y":1.6367,"z":7.5768},"rot":{"x":359.9201,"y":269.9999,"z":0.0168}},"b07c45":{"lock":false,"pos":{"x":-2.7248,"y":1.6208,"z":0.3733},"rot":{"x":359.9197,"y":270.0002,"z":0.0168}},"b3b462":{"lock":false,"pos":{"x":-2.68862700462341,"y":1.62393081188202,"z":-5.04849576950073},"rot":{"x":359.919738769531,"y":270.000061035156,"z":0.0168373957276344}},"b6da68":{"lock":false,"pos":{"x":1.7024005651474,"y":1.55830836296082,"z":14.2777013778687},"rot":{"x":359.955139160156,"y":224.997863769531,"z":0.068672813475132}},"c0dc73":{"lock":true,"pos":{"x":0.0874999985098839,"y":1.61240005493164,"z":-9.4350004196167},"rot":{"x":359.919799804688,"y":269.9873046875,"z":0.0169000010937452}},"cc8bbb":{"lock":false,"pos":{"x":-12.033501625061,"y":1.59552979469299,"z":-9.2046012878418},"rot":{"x":359.920104980469,"y":270.011779785156,"z":0.0168169923126698}},"cdea43":{"lock":false,"pos":{"x":-12.6030263900757,"y":1.64734363555908,"z":11.2748069763184},"rot":{"x":359.920104980469,"y":270.000061035156,"z":180.016830444336}},"d3d96a":{"lock":false,"pos":{"x":-11.9824981689453,"y":1.59610056877136,"z":-7.02070093154907},"rot":{"x":359.920104980469,"y":270.021118164063,"z":0.0168036427348852}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The Nameless City @@ -63,9 +63,9 @@ Transform: posX: -10.53 posY: 1.62 posZ: 65.91 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.45 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Nephew Calls 3ddd12.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Nephew Calls 3ddd12.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Nephew Calls 3ddd12.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Nephew Calls 3ddd12.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Nephew Calls 3ddd12.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Nephew Calls 3ddd12.yaml index fbaa9f017..e9f71c340 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Nephew Calls 3ddd12.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Nephew Calls 3ddd12.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142940439/EE68DD668C18F8F8C61B0F2BABA6D548B17A6EA7/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The Nephew Calls 3ddd12.ttslua' -LuaScriptState: '{"ml":{"2e8f0a":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":269.9843,"z":0.0169}},"3c18ed":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0482},"rot":{"x":359.9197,"y":269.9865,"z":0.0169}},"4369ca":{"lock":false,"pos":{"x":-20.9201,"y":1.6118,"z":3.8653},"rot":{"x":359.9747,"y":210,"z":0.0776}},"4ed173":{"lock":false,"pos":{"x":-3.9276,"y":1.7237,"z":5.7571},"rot":{"x":359.9197,"y":269.9888,"z":180.0168}},"4fa9f9":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"54707a":{"lock":false,"pos":{"x":-4.0348,"y":1.5826,"z":-15.3238},"rot":{"x":359.9197,"y":270.0002,"z":0.0168}},"5ca1a9":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":359.9848,"z":359.9201}},"7234af":{"lock":false,"pos":{"x":-20.5116,"y":1.6101,"z":-0.1741},"rot":{"x":359.9201,"y":269.9943,"z":0.0169}},"7b5228":{"lock":false,"pos":{"x":-17.12,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":270,"z":180.0169}},"9e9bdd":{"lock":false,"pos":{"x":-17.12,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"a41e13":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"a8f47c":{"lock":false,"pos":{"x":1.6965,"y":1.6368,"z":14.2789},"rot":{"x":359.9552,"y":224.9986,"z":0.0687}},"a9c518":{"lock":false,"pos":{"x":-11.5089,"y":1.6766,"z":1.4197},"rot":{"x":359.9201,"y":269.999,"z":0.0169}},"b874a8":{"lock":false,"pos":{"x":-17.1199,"y":1.6042,"z":-3.83},"rot":{"x":0.0169,"y":179.9998,"z":0.0799}},"db443b":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"e67855":{"lock":false,"pos":{"x":-17.1201,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":269.9982,"z":180.0169}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The Nephew Calls @@ -63,9 +63,9 @@ Transform: posX: -9.29 posY: 1.62 posZ: 65.33 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Pensher Wyrm 504f38.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Pensher Wyrm 504f38.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Pensher Wyrm 504f38.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Pensher Wyrm 504f38.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Pensher Wyrm 504f38.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Pensher Wyrm 504f38.yaml index 8c194abce..985494547 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Pensher Wyrm 504f38.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Pensher Wyrm 504f38.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142945578/6BA34FBD61F7AD38DE8B2B9E5D5F067406B7CC77/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The Pensher Wyrm 504f38.ttslua' -LuaScriptState: '{"ml":{"0251e6":{"lock":false,"pos":{"x":-58.7691,"y":1.7417,"z":22.2313},"rot":{"x":359.9201,"y":269.9973,"z":0.0169}},"04fdb8":{"lock":false,"pos":{"x":-2.7247,"y":1.6551,"z":0.3733},"rot":{"x":359.9197,"y":270.0046,"z":0.0168}},"07bfca":{"lock":false,"pos":{"x":-11.1535,"y":1.6509,"z":1.3602},"rot":{"x":359.9201,"y":269.9977,"z":0.0169}},"1ae75c":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9961,"z":0.0169}},"22cf16":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9969,"z":0.0168}},"336335":{"lock":false,"pos":{"x":-23.6765,"y":1.6828,"z":-11.51},"rot":{"x":359.9201,"y":269.9848,"z":0.0169}},"3cf9b8":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9969,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-20.5194,"y":1.6101,"z":-0.0446},"rot":{"x":359.9201,"y":270.0053,"z":0.0169}},"909b6f":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":359.9197,"y":270.0029,"z":0.0168}},"a45247":{"lock":false,"pos":{"x":1.6951,"y":1.5583,"z":14.2794},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"afc427":{"lock":false,"pos":{"x":-23.6764,"y":1.6874,"z":3.86},"rot":{"x":359.9201,"y":269.9971,"z":0.0169}},"b93ec9":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9976,"z":0.0169}},"c606a1":{"lock":false,"pos":{"x":-4.0681,"y":1.5827,"z":-15.3226},"rot":{"x":359.9197,"y":270.0012,"z":0.0168}},"d37670":{"lock":false,"pos":{"x":-3.9277,"y":1.6705,"z":5.7572},"rot":{"x":359.9197,"y":270.0103,"z":180.0168}},"e28e5b":{"lock":false,"pos":{"x":-17.1199,"y":1.6782,"z":3.86},"rot":{"x":359.9201,"y":269.9969,"z":0.0169}},"eb6cf0":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9966,"z":0.0169}},"f0dbb0":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9832,"y":0.0155,"z":359.92}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The Pensher Wyrm @@ -63,9 +63,9 @@ Transform: posX: -9.37 posY: 1.62 posZ: 65.42 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Red Room fa4327.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Red Room fa4327.ttslua index ad53849db..e6f67c6af 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Red Room fa4327.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Red Room fa4327.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Red Room fa4327.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Red Room fa4327.yaml index f1763d31f..1ddad1b08 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Red Room fa4327.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Red Room fa4327.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142946225/F5A6228957B37E945B425681115D09E7B8543BC6/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The Red Room fa4327.ttslua' -LuaScriptState: '{"ml":{"023e21":{"lock":false,"pos":{"x":-3.9277,"y":1.6752,"z":5.7572},"rot":{"x":359.9197,"y":269.9987,"z":180.0168}},"0a7a51":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":180.0169}},"1d2e12":{"lock":false,"pos":{"x":-3.956,"y":1.6585,"z":-10.4412},"rot":{"x":359.9197,"y":270.0003,"z":180.0168}},"26b589":{"lock":false,"pos":{"x":-2.7247,"y":1.658,"z":0.3733},"rot":{"x":359.9198,"y":269.9589,"z":0.0169}},"469d58":{"lock":false,"pos":{"x":-11.9576,"y":1.6717,"z":3.1538},"rot":{"x":359.9201,"y":269.9781,"z":0.0169}},"64f279":{"lock":false,"pos":{"x":-17.1197,"y":1.889,"z":-11.5094},"rot":{"x":359.9201,"y":269.9996,"z":0.0169}},"a45247":{"lock":false,"pos":{"x":1.6949,"y":1.5583,"z":14.2794},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"cde2d1":{"lock":false,"pos":{"x":-2.6885,"y":1.6459,"z":-5.0485},"rot":{"x":359.9197,"y":270.0159,"z":0.0168}},"ce2091":{"lock":false,"pos":{"x":-17.12,"y":1.6778,"z":3.86},"rot":{"x":359.9201,"y":269.9993,"z":0.0169}},"d63331":{"lock":false,"pos":{"x":-50.9244,"y":1.7294,"z":8.1784},"rot":{"x":359.9201,"y":270.0003,"z":180.0169}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The Red Room @@ -63,9 +63,9 @@ Transform: posX: -11.09 posY: 1.62 posZ: 66.55 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Stolen Baillius bfefd4.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Stolen Baillius bfefd4.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Stolen Baillius bfefd4.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Stolen Baillius bfefd4.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Stolen Baillius bfefd4.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Stolen Baillius bfefd4.yaml index 934ae8892..8fdf34f84 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Stolen Baillius bfefd4.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Stolen Baillius bfefd4.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142943616/2B7B73A110A3EC225C854F85AB009F04859E3806/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The Stolen Baillius bfefd4.ttslua' -LuaScriptState: '{"ml":{"00dc67":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9995,"z":0.0168}},"0e6c8c":{"lock":false,"pos":{"x":-3.9277,"y":1.6971,"z":5.7571},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"102272":{"lock":false,"pos":{"x":-10.2894,"y":1.6717,"z":2.0208},"rot":{"x":359.9201,"y":270.0023,"z":0.0169}},"33116d":{"lock":false,"pos":{"x":-27.119,"y":1.6184,"z":-3.2752},"rot":{"x":0.0446,"y":44.9999,"z":359.9316}},"40f354":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"631549":{"lock":false,"pos":{"x":-23.6766,"y":1.6157,"z":3.86},"rot":{"x":359.9832,"y":0.0089,"z":359.92}},"6a9431":{"lock":false,"pos":{"x":-2.7247,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":180.0034,"z":0.0803}},"7234af":{"lock":false,"pos":{"x":-20.4879,"y":1.61,"z":-0.2199},"rot":{"x":359.9201,"y":269.9942,"z":0.0169}},"79090a":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":180,"z":0.0799}},"82e02f":{"lock":false,"pos":{"x":-26.575,"y":1.6185,"z":-0.1012},"rot":{"x":359.9201,"y":269.9947,"z":0.0169}},"a45247":{"lock":false,"pos":{"x":1.6952,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"af4e73":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"bf5d39":{"lock":false,"pos":{"x":-5.9411,"y":1.5569,"z":-25.3389},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"cb2e63":{"lock":false,"pos":{"x":-23.6775,"y":1.689,"z":-0.0357},"rot":{"x":359.92,"y":270.3729,"z":180.0163}},"ec7a73":{"lock":false,"pos":{"x":-4.9066,"y":1.684,"z":-14.5418},"rot":{"x":359.9195,"y":270.04,"z":0.0161}},"edcae4":{"lock":false,"pos":{"x":-30.2242,"y":1.6934,"z":-0.0301},"rot":{"x":359.9201,"y":270.0021,"z":0.0169}},"f305a2":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":179.9978,"z":0.0803}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The Stolen Baillius @@ -63,9 +63,9 @@ Transform: posX: -9.01 posY: 1.61 posZ: 66.4 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Strange Case of Dr. Jekyll and Mr. Hyde 695a4d.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Strange Case of Dr. Jekyll and Mr. Hyde 695a4d.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Strange Case of Dr. Jekyll and Mr. Hyde 695a4d.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Strange Case of Dr. Jekyll and Mr. Hyde 695a4d.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Strange Case of Dr. Jekyll and Mr. Hyde 695a4d.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Strange Case of Dr. Jekyll and Mr. Hyde 695a4d.yaml index 8b6a30cf6..6b78cab4e 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Strange Case of Dr. Jekyll and Mr. Hyde 695a4d.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Strange Case of Dr. Jekyll and Mr. Hyde 695a4d.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1845919769156839538/7ED48DF559525AF388EDAABCDEED4EE9D25E872A/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The Strange Case of Dr. Jekyll and Mr. Hyde 695a4d.ttslua' -LuaScriptState: '{"ml":{"024508":{"lock":false,"pos":{"x":-28.8626,"y":1.653,"z":-9.1556},"rot":{"x":359.92,"y":270.0022,"z":181.0828}},"078f2c":{"lock":false,"pos":{"x":-23.6763,"y":1.6133,"z":-3.83},"rot":{"x":0.0173,"y":179.6544,"z":0.0798}},"269309":{"lock":false,"pos":{"x":-30.2243,"y":1.635,"z":-7.7001},"rot":{"x":359.92,"y":269.9929,"z":180.0166}},"3227a4":{"lock":false,"pos":{"x":-26.8567,"y":1.6167,"z":-7.6324},"rot":{"x":359.9201,"y":270.0099,"z":0.0169}},"32b4d2":{"lock":false,"pos":{"x":-36.7727,"y":1.6316,"z":-3.83},"rot":{"x":0.0169,"y":179.9977,"z":0.0793}},"383831":{"lock":false,"pos":{"x":-26.8033,"y":1.6188,"z":-0.1282},"rot":{"x":359.9201,"y":270.0127,"z":0.0168}},"3d5164":{"lock":false,"pos":{"x":-36.7732,"y":1.6486,"z":7.57},"rot":{"x":359.9201,"y":270.0005,"z":180.0168}},"4b8bb9":{"lock":false,"pos":{"x":-0.0159,"y":1.6265,"z":-16.7635},"rot":{"x":359.9197,"y":270.0023,"z":0.0168}},"4cdfa9":{"lock":false,"pos":{"x":-23.6766,"y":1.6258,"z":-7.7},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"53fe8a":{"lock":false,"pos":{"x":-2.6886,"y":1.6191,"z":-5.0485},"rot":{"x":0.0169,"y":179.9868,"z":0.0803}},"543b4a":{"lock":false,"pos":{"x":-30.2239,"y":1.6533,"z":-0.0299},"rot":{"x":359.9205,"y":269.9981,"z":179.1735}},"5b38c6":{"lock":false,"pos":{"x":-33.1594,"y":1.6265,"z":-4.1167},"rot":{"x":359.9201,"y":270.0099,"z":0.0168}},"600618":{"lock":false,"pos":{"x":-9.2628,"y":1.6093,"z":4.5256},"rot":{"x":359.9217,"y":270.0335,"z":0.0169}},"6dc5d4":{"lock":false,"pos":{"x":-30.2238,"y":1.6247,"z":3.8614},"rot":{"x":0.0169,"y":179.9879,"z":0.0799}},"6ff6ed":{"lock":false,"pos":{"x":-36.7729,"y":1.6339,"z":3.86},"rot":{"x":0.0165,"y":180.2679,"z":0.08}},"7234af":{"lock":false,"pos":{"x":-33.0638,"y":1.6275,"z":-0.1187},"rot":{"x":359.9201,"y":270.0089,"z":0.0169}},"75fef9":{"lock":false,"pos":{"x":-36.7733,"y":1.6441,"z":-7.7},"rot":{"x":359.9201,"y":270.0007,"z":180.0168}},"7a167a":{"lock":false,"pos":{"x":1.7036,"y":1.5583,"z":14.2866},"rot":{"x":359.9555,"y":224.7286,"z":0.0689}},"7c7d59":{"lock":false,"pos":{"x":-9.1864,"y":1.6078,"z":-0.3787},"rot":{"x":359.9208,"y":269.9886,"z":0.0173}},"86aaf9":{"lock":false,"pos":{"x":-33.3449,"y":1.6302,"z":7.631},"rot":{"x":359.9201,"y":270.0127,"z":0.0169}},"8b1dc6":{"lock":false,"pos":{"x":-2.7247,"y":1.599,"z":0.3734},"rot":{"x":0.0168,"y":180.0033,"z":0.0803}},"8cf73d":{"lock":false,"pos":{"x":-3.9279,"y":1.7636,"z":5.7573},"rot":{"x":359.9197,"y":269.9713,"z":180.0169}},"8f9081":{"lock":false,"pos":{"x":-9.1522,"y":1.6063,"z":-5.0856},"rot":{"x":359.9218,"y":270.0312,"z":0.0168}},"98a0d1":{"lock":false,"pos":{"x":-30.2243,"y":1.6394,"z":7.57},"rot":{"x":359.9201,"y":269.9996,"z":180.0168}},"a4727b":{"lock":false,"pos":{"x":-36.7732,"y":1.6463,"z":-0.0301},"rot":{"x":359.9201,"y":269.9998,"z":180.0168}},"a68940":{"lock":false,"pos":{"x":-33.3986,"y":1.6291,"z":3.615},"rot":{"x":359.9555,"y":224.9258,"z":0.0684}},"b18436":{"lock":false,"pos":{"x":-35.1992,"y":1.696,"z":-1.7658},"rot":{"x":358.925,"y":270.0078,"z":178.6654}},"bbb70a":{"lock":false,"pos":{"x":-3.6978,"y":1.5824,"z":-14.341},"rot":{"x":359.9197,"y":269.9741,"z":0.0169}},"bee2e6":{"lock":false,"pos":{"x":-33.2319,"y":1.6255,"z":-7.6765},"rot":{"x":359.9201,"y":270.0127,"z":0.0168}},"c02930":{"lock":false,"pos":{"x":-3.9561,"y":1.5975,"z":-10.4414},"rot":{"x":359.9197,"y":270.0294,"z":0.0168}},"c6ea29":{"lock":false,"pos":{"x":-30.224,"y":1.6225,"z":-3.83},"rot":{"x":0.0168,"y":180.0216,"z":0.0799}},"d0abad":{"lock":false,"pos":{"x":-26.6604,"y":1.6174,"z":-4.1256},"rot":{"x":359.9554,"y":224.9934,"z":0.0684}},"da0979":{"lock":false,"pos":{"x":-27.8043,"y":1.6494,"z":-1.8588},"rot":{"x":359.92,"y":270.0262,"z":0.8627}},"e4fcbc":{"lock":false,"pos":{"x":-27.9885,"y":1.6546,"z":6.6294},"rot":{"x":359.2249,"y":269.9977,"z":180.0169}},"ec96e5":{"lock":false,"pos":{"x":-9.2495,"y":1.6086,"z":2.0614},"rot":{"x":359.9217,"y":270.0346,"z":0.0169}},"f1f60e":{"lock":false,"pos":{"x":-21.0557,"y":1.6397,"z":-1.6467},"rot":{"x":359.3288,"y":270.0027,"z":180.0169}},"f6f6c2":{"lock":false,"pos":{"x":-9.1373,"y":1.607,"z":-2.6686},"rot":{"x":359.9218,"y":270.0311,"z":0.0168}},"fd77b1":{"lock":false,"pos":{"x":-23.6766,"y":1.6281,"z":-0.0299},"rot":{"x":359.9201,"y":270.0011,"z":180.0165}},"ff1ffa":{"lock":false,"pos":{"x":-35.2578,"y":1.6569,"z":-9.6213},"rot":{"x":359.9201,"y":269.9996,"z":180.8269}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The Strange Case of Dr. Jekyll and Mr. Hyde @@ -63,9 +63,9 @@ Transform: posX: -26.2 posY: 1.92 posZ: -120.92 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Svalbard Event 7bc42b.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Svalbard Event 7bc42b.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Svalbard Event 7bc42b.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Svalbard Event 7bc42b.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Svalbard Event 7bc42b.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Svalbard Event 7bc42b.yaml index 1559f384f..4f2a9b537 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Svalbard Event 7bc42b.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Svalbard Event 7bc42b.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142948942/FA97D7EF94B715ADD1EEE40831114451FBED200B/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The Svalbard Event 7bc42b.ttslua' -LuaScriptState: '{"ml":{"0967ea":{"lock":false,"pos":{"x":-23.6765,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9941,"z":0.0169}},"1a4e64":{"lock":false,"pos":{"x":-23.6766,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9746,"z":0.0169}},"37ec51":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9792,"z":0.0169}},"44b0c5":{"lock":false,"pos":{"x":-33.6265,"y":1.6284,"z":0.0656},"rot":{"x":359.9201,"y":269.9935,"z":0.0169}},"4c2b84":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":0,"z":359.92}},"5f0185":{"lock":false,"pos":{"x":-36.7732,"y":1.7045,"z":-0.03},"rot":{"x":359.9201,"y":269.9952,"z":0.0169}},"6a72fc":{"lock":false,"pos":{"x":-30.2243,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9945,"z":0.0169}},"713671":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9929,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-20.8364,"y":1.6106,"z":0.0223},"rot":{"x":359.9201,"y":269.9936,"z":0.0169}},"7dcc93":{"lock":false,"pos":{"x":1.6965,"y":1.6545,"z":14.2788},"rot":{"x":359.9552,"y":224.998,"z":0.0687}},"88005c":{"lock":false,"pos":{"x":-27.1056,"y":1.6193,"z":0.044},"rot":{"x":359.9201,"y":269.9936,"z":0.0169}},"963cfe":{"lock":false,"pos":{"x":-10.715,"y":1.6678,"z":0.2579},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"9fac8b":{"lock":false,"pos":{"x":-3.9277,"y":1.7557,"z":5.7571},"rot":{"x":359.9197,"y":269.9771,"z":180.0169}},"a751fe":{"lock":false,"pos":{"x":-4.1944,"y":1.583,"z":-14.6164},"rot":{"x":359.9197,"y":270.0002,"z":0.0168}},"a8a4b1":{"lock":false,"pos":{"x":-30.2243,"y":1.6931,"z":-7.7},"rot":{"x":359.9201,"y":269.9951,"z":0.0169}},"b11646":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9929,"z":0.0169}},"b149b1":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0.0001,"z":359.92}},"bbe4b0":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.0301},"rot":{"x":359.9201,"y":269.9937,"z":0.0169}},"bc7323":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":359.9831,"y":0,"z":359.9201}},"c99e9d":{"lock":false,"pos":{"x":-2.6886,"y":1.6623,"z":-5.0485},"rot":{"x":359.9197,"y":269.9824,"z":0.0169}},"ca0e9b":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9952,"z":0.0169}},"e10b7c":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0,"z":359.9201}},"f9ae22":{"lock":false,"pos":{"x":-2.7251,"y":1.6566,"z":0.3733},"rot":{"x":359.9198,"y":269.9414,"z":0.0169}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The Svalbard Event @@ -63,9 +63,9 @@ Transform: posX: -10.24 posY: 1.62 posZ: 67.29 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Symphony of Erich Zann b7c6be.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Symphony of Erich Zann b7c6be.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Symphony of Erich Zann b7c6be.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Symphony of Erich Zann b7c6be.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Symphony of Erich Zann b7c6be.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Symphony of Erich Zann b7c6be.yaml index 015aa7551..a983fa296 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Symphony of Erich Zann b7c6be.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Symphony of Erich Zann b7c6be.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1254763972105175718/5A09C7E8EBCC79DD9E405FF6F83E49C2C27D5F29/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The Symphony of Erich Zann b7c6be.ttslua' -LuaScriptState: '{"ml":{"025ede":{"lock":false,"pos":{"x":-2.7253,"y":1.6208,"z":0.3733},"rot":{"x":0.0168,"y":180.0004,"z":0.0803}},"0b6540":{"lock":false,"pos":{"x":-3.9276,"y":1.7299,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}},"1d53b9":{"lock":false,"pos":{"x":-27.1699,"y":1.6203,"z":3.4176},"rot":{"x":359.9316,"y":315.0006,"z":359.9554}},"267216":{"lock":false,"pos":{"x":-9.3367,"y":1.5512,"z":22.848},"rot":{"x":359.9201,"y":270.025,"z":359.3601}},"28cca1":{"lock":false,"pos":{"x":-2.6882,"y":1.6191,"z":-5.0485},"rot":{"x":0.0168,"y":179.9995,"z":0.0803}},"4dc9bc":{"lock":false,"pos":{"x":-23.6766,"y":1.6303,"z":7.57},"rot":{"x":359.9201,"y":270.0023,"z":180.0168}},"5abb04":{"lock":false,"pos":{"x":-23.6766,"y":1.6156,"z":3.86},"rot":{"x":359.9832,"y":-0.0044,"z":359.92}},"5bd64c":{"lock":false,"pos":{"x":-30.2243,"y":1.6394,"z":7.5702},"rot":{"x":359.9201,"y":270.0232,"z":180.0168}},"67cf63":{"lock":false,"pos":{"x":-12.1989,"y":1.522,"z":33.707},"rot":{"x":359.9201,"y":269.9902,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-20.2811,"y":1.6098,"z":0.1027},"rot":{"x":359.9201,"y":269.9872,"z":0.0169}},"90ad8b":{"lock":false,"pos":{"x":-23.6765,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":269.9854,"z":180.0168}},"95dc3d":{"lock":false,"pos":{"x":-12.1893,"y":1.5207,"z":29.2011},"rot":{"x":359.9201,"y":269.9885,"z":0.0169}},"b6da68":{"lock":false,"pos":{"x":1.6955,"y":1.5583,"z":14.2792},"rot":{"x":359.9552,"y":224.9335,"z":0.0687}},"c0b834":{"lock":false,"pos":{"x":-0.2044,"y":1.6111,"z":-10.4137},"rot":{"x":359.9197,"y":270.0196,"z":0.0168}},"c582af":{"lock":false,"pos":{"x":-26.9427,"y":1.6213,"z":7.6022},"rot":{"x":359.9201,"y":270.0272,"z":0.0168}},"c9d140":{"lock":false,"pos":{"x":-12.2295,"y":1.5215,"z":31.5404},"rot":{"x":359.9201,"y":269.9884,"z":0.0169}},"de583f":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4413},"rot":{"x":359.9197,"y":270.002,"z":0.0168}},"edd0d4":{"lock":false,"pos":{"x":-17.12,"y":1.6189,"z":-0.03},"rot":{"x":359.9201,"y":270.0099,"z":180.0168}},"f4c93e":{"lock":false,"pos":{"x":-3.9584,"y":1.5827,"z":-14.7436},"rot":{"x":359.9197,"y":270.0297,"z":0.0168}},"f5f35d":{"lock":false,"pos":{"x":-9.207,"y":1.5169,"z":30.3654},"rot":{"x":0.0169,"y":180,"z":0.0799}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The Symphony of Erich Zann @@ -63,9 +63,9 @@ Transform: posX: -10.14 posY: 1.67 posZ: 67.99 - rotX: 0 - rotY: 270 - rotZ: 357 + rotX: 0.0 + rotY: 270.0 + rotZ: 357.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Thing in the Woods c90c49.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Thing in the Woods c90c49.ttslua index ad53849db..e6f67c6af 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Thing in the Woods c90c49.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Thing in the Woods c90c49.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Thing in the Woods c90c49.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Thing in the Woods c90c49.yaml index b48c54725..12d9ffbbe 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Thing in the Woods c90c49.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Thing in the Woods c90c49.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142949442/404A26E158B9EBC1069A5FBA9BA2331CBFD7851B/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The Thing in the Woods c90c49.ttslua' -LuaScriptState: '{"ml":{"0f3e93":{"lock":false,"pos":{"x":-26.9859,"y":1.6191,"z":-0.0135},"rot":{"x":359.9201,"y":269.994,"z":0.0169}},"2261a5":{"lock":false,"pos":{"x":-4.7182,"y":1.5837,"z":-14.7432},"rot":{"x":359.9197,"y":270.0041,"z":0.0168}},"2ec534":{"lock":false,"pos":{"x":-12.3654,"y":1.6721,"z":11.366},"rot":{"x":0.0799,"y":90,"z":359.9831}},"383672":{"lock":false,"pos":{"x":-23.6765,"y":1.6851,"z":-3.83},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"46b65b":{"lock":false,"pos":{"x":-10.4494,"y":1.5959,"z":-0.6855},"rot":{"x":359.9201,"y":270,"z":0.0169}},"491279":{"lock":false,"pos":{"x":-3.9277,"y":1.7131,"z":5.7571},"rot":{"x":359.9197,"y":269.9995,"z":180.0168}},"51527f":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9985,"z":0.0169}},"57318a":{"lock":false,"pos":{"x":-2.6886,"y":1.6543,"z":-5.0515},"rot":{"x":0.0169,"y":179.9818,"z":0.0803}},"5942b3":{"lock":false,"pos":{"x":-23.6766,"y":1.6874,"z":3.86},"rot":{"x":359.9201,"y":269.9991,"z":0.0169}},"641bdb":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-20.6314,"y":1.6102,"z":-0.1048},"rot":{"x":359.9201,"y":269.994,"z":0.0169}},"8480f8":{"lock":false,"pos":{"x":-3.956,"y":1.6585,"z":-10.4412},"rot":{"x":359.9197,"y":270,"z":180.0168}},"98d4a2":{"lock":false,"pos":{"x":-50.9244,"y":1.7294,"z":8.1784},"rot":{"x":359.9201,"y":270,"z":180.0169}},"a45247":{"lock":false,"pos":{"x":1.6952,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"c6305b":{"lock":false,"pos":{"x":-2.7247,"y":1.6551,"z":0.3733},"rot":{"x":0.0168,"y":179.9938,"z":0.0803}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The Thing in the Woods @@ -63,9 +63,9 @@ Transform: posX: -11.01 posY: 1.62 posZ: 67.68 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Undying 965030.ttslua b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Undying 965030.ttslua index ad53849db..3c2a044ca 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Undying 965030.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Undying 965030.ttslua @@ -1,22 +1,90 @@ -function onload(saved_data) - createDownloadButton() +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} + + local register + local modules = {} + + local require + local loaded = {} + + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end + + require = function(name) + local loadedModule = loaded[name] + + if loadedModule then + if loadedModule == loadingPlaceholder then + return nil + end + else + if not modules[name] then + if not superRequire then + local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name) + error('Tried to require ' .. identifier .. ', but no such module has been registered') + else + return superRequire(name) + end + end + + loaded[name] = loadingPlaceholder + loadedModule = modules[name](require, loaded, register, modules) + loaded[name] = loadedModule + end + + return loadedModule + end + + return require, loaded, register, modules +end)(nil) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/DownloadBox") +end) +__bundle_register("core/DownloadBox", function(require, _LOADED, __bundle_register, __bundle_modules) +function onLoad() + local notes = self.getGMNotes() + + -- default parameters (e.g. scenarios) + local buttonParameters = { + label = "Download", + click_function = "buttonClick_download", + function_owner = self, + position = { x = 0, y = 0.1, z = 2.1 }, + height = 250, + width = 800, + font_size = 150, + color = { 0, 0, 0 }, + font_color = { 1, 1, 1 } + } + + -- return to boxes + if string.match(notes, "................") == "campaigns/return" then + buttonParameters.position.z = 2 + + -- official campaign boxes + elseif string.match(notes, ".........") == "campaigns" or self.hasTag("LargeBox") then + buttonParameters.position.z = 6 + buttonParameters.height = 500 + buttonParameters.width = 1700 + buttonParameters.font_size = 350 + + -- investigator boxes + elseif string.match(notes, ".............") == "investigators" then + buttonParameters.position.z = 7 + buttonParameters.height = 850 + buttonParameters.width = 3400 + buttonParameters.font_size = 700 + end + + self.createButton(buttonParameters) end - ---Beginning Setup - - ---Make Download button -function createDownloadButton() - self.createButton({ - label="Download", click_function="buttonClick_download", function_owner=self, - position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, - font_size=150, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by download button, function buttonClick_download() - local params = { url = self.getGMNotes(), replace = self.guid } - Global.call('placeholder_download', params) -end \ No newline at end of file + Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Undying 965030.yaml b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Undying 965030.yaml index 3aa64ccb8..a21d67ff0 100644 --- a/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Undying 965030.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made ScenariosCampaignsMiscellany 66e97c/Custom_Model_Bag Fan-Made Standalone Scenarios 5db60c/Custom_Model The Undying 965030.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 AttachedDecals: - CustomDecal: ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ @@ -11,30 +11,30 @@ AttachedDecals: posX: -0.0021877822 posY: -0.08963572 posZ: -0.00288731651 - rotX: 270 + rotX: 270.0 rotY: 359.869568 - rotZ: 0 + rotZ: 0.0 scaleX: 2.00000215 scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true ColorDiffuse: a: 0.27451 - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1824531491067739120/4AD2D51DAC6215F2866BB2AD15D47109B432B999/ MaterialIndex: 3 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj @@ -52,7 +52,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'Custom_Model The Undying 965030.ttslua' -LuaScriptState: '{"ml":{"0fd978":{"lock":false,"pos":{"x":-30.2235,"y":1.6225,"z":-3.83},"rot":{"x":0.0168,"y":180.0082,"z":0.0799}},"12a3b2":{"lock":false,"pos":{"x":-30.224,"y":1.6349,"z":-7.7002},"rot":{"x":359.9201,"y":270,"z":180.0168}},"14b5db":{"lock":false,"pos":{"x":-30.2242,"y":1.6394,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"15cbab":{"lock":false,"pos":{"x":-33.7068,"y":1.6284,"z":-0.1776},"rot":{"x":359.9201,"y":270,"z":0.0169}},"162580":{"lock":false,"pos":{"x":-6.3892,"y":1.7348,"z":-20.6362},"rot":{"x":359.9201,"y":269.9998,"z":180.0168}},"297f5e":{"lock":false,"pos":{"x":-5.4446,"y":1.734,"z":-18.9178},"rot":{"x":359.9201,"y":270.0124,"z":180.0168}},"30f698":{"lock":false,"pos":{"x":-33.2362,"y":1.6256,"z":-7.634},"rot":{"x":359.9201,"y":270,"z":0.0169}},"458680":{"lock":false,"pos":{"x":-26.813,"y":1.621,"z":7.4371},"rot":{"x":359.9201,"y":269.9995,"z":0.0169}},"4feab4":{"lock":false,"pos":{"x":-7.4591,"y":1.5537,"z":-18.8829},"rot":{"x":359.9201,"y":269.9981,"z":180.0169}},"5138ed":{"lock":false,"pos":{"x":-2.7247,"y":1.6208,"z":0.3733},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"520fe8":{"lock":false,"pos":{"x":-23.6765,"y":1.6303,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"56ddd0":{"lock":false,"pos":{"x":-3.928,"y":1.6818,"z":5.7571},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}},"5a7b85":{"lock":false,"pos":{"x":-3.9559,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"5b38c6":{"lock":false,"pos":{"x":-33.5265,"y":1.6271,"z":-3.896},"rot":{"x":359.9201,"y":269.9997,"z":0.0168}},"67baab":{"lock":false,"pos":{"x":-20.3626,"y":1.6121,"z":7.635},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}},"69ff3d":{"lock":false,"pos":{"x":-5.603,"y":1.4978,"z":28.7767},"rot":{"x":359.9201,"y":270,"z":0.0169}},"750893":{"lock":false,"pos":{"x":-10.4844,"y":1.6395,"z":11.0528},"rot":{"x":359.9201,"y":270,"z":0.0168}},"7a167a":{"lock":false,"pos":{"x":1.7082,"y":1.5583,"z":14.2764},"rot":{"x":359.9551,"y":224.9979,"z":0.0687}},"8112ff":{"lock":false,"pos":{"x":-3.8055,"y":1.5825,"z":-14.7204},"rot":{"x":359.9197,"y":270.0176,"z":0.0168}},"88570c":{"lock":false,"pos":{"x":-36.7732,"y":1.6463,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"930283":{"lock":false,"pos":{"x":-36.7733,"y":1.6441,"z":-7.7},"rot":{"x":359.9201,"y":270,"z":180.0168}},"95ce6e":{"lock":false,"pos":{"x":-23.6758,"y":1.6156,"z":3.86},"rot":{"x":0.0168,"y":180.0081,"z":0.0799}},"a31359":{"lock":false,"pos":{"x":-27.0588,"y":1.6192,"z":-0.1229},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"b1bd8f":{"lock":false,"pos":{"x":-30.2242,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":180.0168}},"bca4a0":{"lock":false,"pos":{"x":-2.6885,"y":1.6191,"z":-5.0486},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"c61150":{"lock":false,"pos":{"x":-36.7725,"y":1.6316,"z":-3.83},"rot":{"x":0.0168,"y":180.0071,"z":0.0799}},"cbc8fb":{"lock":false,"pos":{"x":-17.12,"y":1.6212,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"d54c36":{"lock":false,"pos":{"x":-23.6765,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"dc3b69":{"lock":false,"pos":{"x":-10.7851,"y":1.6484,"z":7.1934},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"f514f5":{"lock":false,"pos":{"x":-10.4502,"y":1.6983,"z":14.5899},"rot":{"x":359.9201,"y":270.0004,"z":180.0168}}}}' +LuaScriptState: '' MeasureMovement: false Name: Custom_Model Nickname: The Undying @@ -63,9 +63,9 @@ Transform: posX: -55.36 posY: 6.3 posZ: -85.71 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Leaked Items 42cd6e.yaml b/unpacked/Custom_Model_Bag Leaked Items 42cd6e.yaml index 7e88ba251..960ebfd9f 100644 --- a/unpacked/Custom_Model_Bag Leaked Items 42cd6e.yaml +++ b/unpacked/Custom_Model_Bag Leaked Items 42cd6e.yaml @@ -1,26 +1,26 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomMesh: CastShadows: true ColliderURL: '' Convex: true CustomShader: - FresnelStrength: 0 + FresnelStrength: 0.0 SpecularColor: - b: 1 - g: 1 - r: 1 - SpecularIntensity: 0 - SpecularSharpness: 2 + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1016065725028510450/7BC76948EE00979A428636EF40D46AE8634760A6/ MaterialIndex: 3 MeshURL: https://pastebin.com/raw/166Kdeqb @@ -52,11 +52,11 @@ Transform: posX: -57.92 posY: 2.95 posZ: -82.99 - rotX: 90 - rotY: 135 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 90.0 + rotY: 135.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9.yaml b/unpacked/Custom_Model_Bag Legacy Assets 7165a9.yaml index 682209585..1e9bd49f2 100644 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9.yaml +++ b/unpacked/Custom_Model_Bag Legacy Assets 7165a9.yaml @@ -1,25 +1,21 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 ContainedObjects: - !include 'Custom_Model_Bag Legacy Assets 7165a9/Custom_Model_Infinite_Bag Toggle-able Resource tokens 272489.yaml' - !include 'Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75.yaml' - !include 'Custom_Model_Bag Legacy Assets 7165a9/Deck Pre-Errata Cards 8fa254.yaml' -- !include 'Custom_Model_Bag Legacy Assets 7165a9/Checker_white Token Arranger 4825a7.yaml' -- !include 'Custom_Model_Bag Legacy Assets 7165a9/Custom_Model AttachmentFacedown - Helper 3da8b6.yaml' - !include 'Custom_Model_Bag Legacy Assets 7165a9/CardCustom Guard Dog (2) 66c1cb.yaml' - !include 'Custom_Model_Bag Legacy Assets 7165a9/CardCustom Flashlight (3) ecd43e.yaml' -- !include 'Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6.yaml' CustomMesh: CastShadows: true ColliderURL: '' @@ -54,9 +50,9 @@ Transform: posX: -61.26 posY: 0.78 posZ: -90.08 - rotX: 0 - rotY: 0 - rotZ: 0 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 5.25 scaleY: 5.25 scaleZ: 5.25 diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6.yaml b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6.yaml deleted file mode 100644 index 78385da6d..000000000 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6.yaml +++ /dev/null @@ -1,53 +0,0 @@ -AltLookAngle: - x: 0 - y: 0 - z: 0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 0 - g: 0.36652 - r: 0.70588 -ContainedObjects: -- !include 'Bag Deck Importer - Commands 2e59f6/Checker_white Include Command f4b112.yaml' -- !include 'Bag Deck Importer - Commands 2e59f6/Checker_white Proxy Card Command 400e1a.yaml' -- !include 'Bag Deck Importer - Commands 2e59f6/Checker_white Move Command 0b55d8.yaml' -- !include 'Bag Deck Importer - Commands 2e59f6/Checker_white Zone Command ec5b5f.yaml' -- !include 'Bag Deck Importer - Commands 2e59f6/Checker_white Proxy Investigator Command - 80eac7.yaml' -- !include 'Bag Deck Importer - Commands 2e59f6/Bag Deck Importer Reference Guide - cb2ce4.yaml' -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 2e59f6 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: Deck Importer - Commands -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 29.21 - posY: 4.04 - posZ: -36.22 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Bag Deck Importer Reference Guide cb2ce4.yaml b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Bag Deck Importer Reference Guide cb2ce4.yaml deleted file mode 100644 index 34c990cfc..000000000 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Bag Deck Importer Reference Guide cb2ce4.yaml +++ /dev/null @@ -1,90 +0,0 @@ -AltLookAngle: - x: 0 - y: 0 - z: 0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 1 - g: 1 - r: 1 -ContainedObjects: -- AltLookAngle: - x: 0 - y: 0 - z: 0 - Autoraise: true - ColorDiffuse: - b: 1 - g: 1 - r: 1 - CustomPDF: - PDFPage: 0 - PDFPageOffset: 0 - PDFPassword: '' - PDFUrl: http://cloud-3.steamusercontent.com/ugc/1700659722106672329/E7690C91C2A67EE07244C7434DCCF49CCE62B51D/ - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 775aed - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_PDF - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.345 - posY: 2.432 - posZ: -73.439 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1.17 - scaleY: 1 - scaleZ: 1.17 - Value: 0 - XmlUI: '' -Description: '' -DragSelectable: true -GMNotes: '' -GUID: cb2ce4 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: Deck Importer Reference Guide -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -45.5 - posY: 3.23 - posZ: -77.73 - rotX: 0 - rotY: 90 - rotZ: 0 - scaleX: 0.55 - scaleY: 0.55 - scaleZ: 0.55 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Include Command f4b112.ttslua b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Include Command f4b112.ttslua deleted file mode 100644 index cb871497f..000000000 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Include Command f4b112.ttslua +++ /dev/null @@ -1,105 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-08-30 5:05 p.m. ---- - -command_name = "include" - ----@type ArkhamImport_Command_RunDirectives -runOn = { - instructions = true, - handlers = true -} - -local back_image_default = "https://images-ext-2.discordapp.net/external/QY_dmo_UnAHEi1pgWwaRr1-HSB8AtrAv0W74Mh_Z6vg/https/i.imgur.com/EcbhVuh.jpg" - ----@param parameters ArkhamImport_Command_DescriptionInstructionArguments ----@return ArkhamImport_Command_DescriptionInstructionResults -function do_instruction(parameters) - local args = parameters.arguments - local arg_count = #args - - if (arg_count<4 or arg_count>6) then - return { - is_successful = false, - error_message = "Include Command requires between 4 and 6 arguments. " .. arg_count .. " were provided." - } - end - - if not parameters.command_state["include-command"] then - parameters.command_state["include-command"] = { - has_run = false, - includes = {}, - index = 1 - } - end - - local index = parameters.command_state["include-command"].index - parameters.command_state["include-command"].index = index + 1 - - parameters.command_state["include-command"].includes[index] = { - count = args[1], - name = args[2], - subtitle = args[3], - image_uri = args[4], - zone = args[5] or "default", - back_image_uri = args[6] or back_image_default - } - - return { is_successful = true, command_state = parameters.command_state } -end - ----@param parameters ArkhamImport_Command_HandlerArguments ----@return ArkhamImport_Command_HandlerResults -function handle_card(parameters) - local state = parameters.command_state["include-command"] - - if state.has_run then return { is_successful = true } end - - state.has_run = true - - local source = getObjectFromGUID(parameters.source_guid) - local offset = 0.1 - - for _, include in pairs(state.includes) do - local zone_name = include.zone - local zone = parameters.configuration.zones[zone_name] - - if not zone then - return { - is_successful = false, - command_state = parameters.command_state, - error_message = "Include Card [" .. include.name .. "]: Zone \"" .. tostring(zone_name) .. "\" was not found." - } - end - - local position = zone.is_absolute and zone.position or source:positionToWorld(zone.position) - - for _=1, include.count do - local new = spawnObject { - type = "CardCustom", - position = position + Vector(0, offset, 0), - rotaiton = source:getRotation() + Vector(0, 0, zone.is_facedown and 180 or 0), - ---@param card TTSObject - callback_function = function (card) - card:setName(include.name) - card:setDescription(include.subtitle) - end - } - - new:setCustomObject { - type = 0, - face = include.image_uri, - back = include.back_image_uri - } - offset = offset + 1 - end - end - - return { - handled = false, -- This is adding cards without respect to the deck content. So the card we're using to fire this command still needs proper handling - command_state = parameters.command_state, - is_successful = true - } -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Include Command f4b112.yaml b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Include Command f4b112.yaml deleted file mode 100644 index 786f51b44..000000000 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Include Command f4b112.yaml +++ /dev/null @@ -1,54 +0,0 @@ -AltLookAngle: - x: 0 - y: 0 - z: 0 -Autoraise: true -ColorDiffuse: - b: 1 - g: 1 - r: 1 -Description: 'Arguments: - - count - - name - - subtitle - - image_uri - - zone [Optional] - - back_image_uri [Optional]' -DragSelectable: true -GMNotes: '' -GUID: f4b112 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Checker_white Include Command f4b112.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Checker_white -Nickname: Include Command -Snap: true -Sticky: true -Tags: -- import_command -Tooltip: true -Transform: - posX: -48.11 - posY: 3.42 - posZ: -75.43 - rotX: 358 - rotY: 0 - rotZ: 178 - scaleX: 0.35 - scaleY: 0.35 - scaleZ: 0.35 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Move Command 0b55d8.ttslua b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Move Command 0b55d8.ttslua deleted file mode 100644 index 6a9bcf879..000000000 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Move Command 0b55d8.ttslua +++ /dev/null @@ -1,70 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-08-24 6:02 p.m. ---- - -command_name = "move" - ----@type ArkhamImport_Command_RunDirectives -runOn = { - instructions = true, - handlers = true -} - ----@param parameters ArkhamImport_Command_DescriptionInstructionArguments ----@return ArkhamImport_Command_DescriptionInstructionResults -function do_instruction(parameters) - local args = parameters.arguments - - if (#args~=2 and #args~=3) then - return { is_successful = false, error_message = "Move Command requires 2 or 3 arguments. " .. #args .. " were provided." } - end - - local card_id = args[1] - local new_zone = args[2] - local count = tonumber(args[3]) or 3 - - if not parameters.configuration.zones[new_zone] then - return { is_successful = false, error_message = "Move Command: Zone \"" .. new_zone .. "\" was not found." } - end - - local state = parameters.command_state["move"] - - if not state then - state = {} - parameters.command_state["move"] = state - end - - local card_data = state[card_id] - - if not card_data then - card_data = { - zone = {}, - offset = 0 - } - - state[card_id] = card_data - end - - local zone = card_data.zone - local offset = card_data.offset - - for index=offset,offset+count do - zone[index] = new_zone - end - - return { command_state = parameters.command_state, is_successful = true } -end - ----@param parameters ArkhamImport_Command_HandlerArguments ----@return ArkhamImport_Command_HandlerResults -function handle_card(parameters) - local state = parameters.command_state["move"] or {} - - local card_data = state[parameters.card.code] - - if not card_data then return { is_successful = true} end - - return { zone = card_data.zone, is_successful = true } -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Move Command 0b55d8.yaml b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Move Command 0b55d8.yaml deleted file mode 100644 index 1fd7eb3eb..000000000 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Move Command 0b55d8.yaml +++ /dev/null @@ -1,42 +0,0 @@ -AltLookAngle: - x: 0 - y: 0 - z: 0 -Autoraise: true -ColorDiffuse: - b: 1 - g: 1 - r: 1 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 0b55d8 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Checker_white Move Command 0b55d8.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Checker_white -Nickname: Move Command -Snap: true -Sticky: true -Tags: -- import_command -Tooltip: true -Transform: - posX: -48.1 - posY: 3.42 - posZ: -73.34 - rotX: 0 - rotY: 270 - rotZ: 180 - scaleX: 0.35 - scaleY: 0.35 - scaleZ: 0.35 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Proxy Card Command 400e1a.ttslua b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Proxy Card Command 400e1a.ttslua deleted file mode 100644 index a06c12d0d..000000000 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Proxy Card Command 400e1a.ttslua +++ /dev/null @@ -1,91 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-08-24 6:11 p.m. ---- - -command_name = "proxy-card" - ----@type ArkhamImport_Command_RunDirectives -runOn = { - instructions = true, - handlers = true -} - -local back_image_default = "https://images-ext-2.discordapp.net/external/QY_dmo_UnAHEi1pgWwaRr1-HSB8AtrAv0W74Mh_Z6vg/https/i.imgur.com/EcbhVuh.jpg" - ----@param parameters ArkhamImport_Command_DescriptionInstructionArguments ----@return ArkhamImport_Command_DescriptionInstructionResults -function do_instruction(parameters) - local args = parameters.arguments - if (#args<4 or #args>6) then - return { - is_successful = false, - error_message = "Move Command requires between 4 or 6 arguments. " .. #args .. " were provided." - } - end - - if not parameters.command_state["proxy-card"] then - parameters.command_state["proxy-card"] = {} - parameters.command_state["proxy-card-offset"] = 0.1 - end - - parameters.command_state["proxy-card"][args[1]] = { - name = args[2], - subtitle = args[3], - image_uri = args[4], - zone = args[5] or "default", - back_image_uri = args[6] or back_image_default - } - - return { - command_state = parameters.command_state, - is_successful = true - } -end - ----@param parameters ArkhamImport_Command_HandlerArguments ----@return ArkhamImport_Command_HandlerResults -function handle_card(parameters) - local state = parameters.command_state["proxy-card"] or {} - - local card_data = state[parameters.card.code] - - if not card_data then return { is_successful = true } end - - local offset = parameters.command_state["proxy-card-offset"] - parameters.command_state["proxy-card-offset"] = offset + 0.1 - - local zone = parameters.configuration.zones[card_data.zone] - - if not zone then - return { - is_successful = false, - error_message = "Proxy Card [" .. tostring(parameters.card.code) .. "]: Zone \"" .. tostring(card_data.zone) .. "\" was not found." - } - end - - local source = getObjectFromGUID(parameters.source_guid) - local position = zone.is_absolute and zone.position or source:positionToWorld(zone.position) - - for _=1, parameters.card.count do - local new = spawnObject { - type = "CardCustom", - position = position + Vector(0, offset, 0), - rotation = source:getRotation() + Vector(0, 0, zone.is_facedown and 180 or 0), - ---@param card TTSObject - callback_function = function (card) - card:setName(card_data.name) - card:setDescription(card_data.subtitle) - end - } - - new:setCustomObject { - type = 0, - face = card_data.image_uri, - back = card_data.back_image_uri - } - end - - return { handled = true, is_successful = true } -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Proxy Card Command 400e1a.yaml b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Proxy Card Command 400e1a.yaml deleted file mode 100644 index 5907274ee..000000000 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Proxy Card Command 400e1a.yaml +++ /dev/null @@ -1,42 +0,0 @@ -AltLookAngle: - x: 0 - y: 0 - z: 0 -Autoraise: true -ColorDiffuse: - b: 1 - g: 1 - r: 1 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 400e1a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Checker_white Proxy Card Command 400e1a.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Checker_white -Nickname: Proxy Card Command -Snap: true -Sticky: true -Tags: -- import_command -Tooltip: true -Transform: - posX: -48.11 - posY: 3.42 - posZ: -74.08 - rotX: 0 - rotY: 270 - rotZ: 180 - scaleX: 0.35 - scaleY: 0.35 - scaleZ: 0.35 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Proxy Investigator Command 80eac7.ttslua b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Proxy Investigator Command 80eac7.ttslua deleted file mode 100644 index 87d16bcc5..000000000 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Proxy Investigator Command 80eac7.ttslua +++ /dev/null @@ -1,96 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-08-25 2:32 p.m. ---- - -command_name = "proxy-investigator" - ----@type ArkhamImport_Command_RunDirectives -runOn = { - instructions = true, - handlers = true -} - ----@param parameters ArkhamImport_Command_DescriptionInstructionArguments ----@return ArkhamImport_Command_DescriptionInstructionResults -function do_instruction(parameters) - local args = parameters.arguments - - if (#args~=6 and #args~=7) then - return { - is_successful = false, - error_message = "Proxy Investigator command requires either 7 or 8 arguments. " .. #args .. " were provided." - } - end - - parameters.command_state["proxy-investigator"] = { - name = args[1], - subtitle = args[2], - front_uri = args[3], - back_uri = args[4], - mini_front_uri = args[5], - mini_back_uri = args[6], - zone = args[7] or "investigator" - } - - return { - command_state = parameters.command_state, - is_successful = true - } -end - ----@param source TTSObject ----@param name string ----@param subtitle string ----@param offset number ----@param zone ArkhamImportZone ----@param front string ----@param back string ----@param use_minicard_scaling boolean -local function create_card(source, name, subtitle, offset, zone, front, back, use_minicard_scaling) - local position = zone.is_absolute and zone.position or source:positionToWorld(zone.position) - - local card = spawnObject { - type = "CardCustom", - position = position + Vector(0, offset, 0), - rotation = source:getRotation() + Vector(0, 0, zone.is_facedown and 180 or 0), - scale = use_minicard_scaling and Vector(0.6, 1, 0.6) or Vector(1,1,1), - callback_function = function (card) card:setName(name) card:setDescription(subtitle) end - } - - card:setCustomObject { - type = 0, - face = front, - back = back - } -end - ----@param parameters ArkhamImport_Command_HandlerArguments ----@return ArkhamImport_Command_HandlerResults -function handle_card(parameters) - if parameters.card.type_code ~= "investigator" then return {is_successful = true } end - - local card_data = parameters.command_state["proxy-investigator"] or {} - - if not card_data then return { is_successful = true } end - - local zone = parameters.configuration.zones[card_data.zone] - - if not zone then - return { - is_successful = false, - command_state = parameters.command_state, - error_message = "Proxy Investigator [" .. tostring(parameters.card.code) .. "]: Zone \"" .. tostring(card_data.zone) .. "\" was not found." - } - end - - local source = getObjectFromGUID(parameters.source_guid) - - for _=1, parameters.card.count do - create_card(source, card_data.name, card_data.subtitle, 10, zone, card_data.front_uri, card_data.back_uri, false) - create_card(source, card_data.name, card_data.subtitle, 20, zone, card_data.mini_front_uri, card_data.mini_back_uri, true) - end - - return { handled = true, is_successful = true} -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Proxy Investigator Command 80eac7.yaml b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Proxy Investigator Command 80eac7.yaml deleted file mode 100644 index f61d962df..000000000 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Proxy Investigator Command 80eac7.yaml +++ /dev/null @@ -1,42 +0,0 @@ -AltLookAngle: - x: 0 - y: 0 - z: 0 -Autoraise: true -ColorDiffuse: - b: 1 - g: 1 - r: 1 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 80eac7 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Checker_white Proxy Investigator Command 80eac7.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Checker_white -Nickname: Proxy Investigator Command -Snap: true -Sticky: true -Tags: -- import_command -Tooltip: true -Transform: - posX: -48.1 - posY: 3.42 - posZ: -74.74 - rotX: 0 - rotY: 270 - rotZ: 180 - scaleX: 0.35 - scaleY: 0.35 - scaleZ: 0.35 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Zone Command ec5b5f.ttslua b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Zone Command ec5b5f.ttslua deleted file mode 100644 index e8d0cc3bb..000000000 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Zone Command ec5b5f.ttslua +++ /dev/null @@ -1,43 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-08-24 5:48 p.m. ---- - -command_name = "zone" - -runOn = { - instructions = true, - handlers = false -} - ----@param parameters ArkhamImport_Command_DescriptionInstructionArguments ----@return ArkhamImport_Command_DescriptionInstructionResults -function do_instruction(parameters) - local args = parameters.arguments - if (#args<4 or #args>6) then - return { - is_successful = false, - error_message = "Zone Command requires between 4 and 6 arguments. " .. #args .. " were provided." - } - end - - local name = args[1] - local position = Vector(tonumber(args[2]), tonumber(args[3]), tonumber(args[4])) - local is_facedown= (args[5] and args[5]:lower()=="true") or false - local is_absolute = (args[6] and args[6]:lower() == "true") or false - - ---@type ArkhamImportZone - local zone = { - position = position, - is_facedown = is_facedown, - is_absolute = is_absolute - } - - parameters.configuration.zones[name] = zone - - return { - configuration = parameters.configuration, - is_successful = true - } -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Zone Command ec5b5f.yaml b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Zone Command ec5b5f.yaml deleted file mode 100644 index fe97fb68b..000000000 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Deck Importer - Commands 2e59f6/Checker_white Zone Command ec5b5f.yaml +++ /dev/null @@ -1,42 +0,0 @@ -AltLookAngle: - x: 0 - y: 0 - z: 0 -Autoraise: true -ColorDiffuse: - b: 1 - g: 1 - r: 1 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: ec5b5f -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Checker_white Zone Command ec5b5f.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Checker_white -Nickname: Zone Command -Snap: true -Sticky: true -Tags: -- import_command -Tooltip: true -Transform: - posX: -48.1 - posY: 3.42 - posZ: -72.64 - rotX: 0 - rotY: 270 - rotZ: 180 - scaleX: 0.35 - scaleY: 0.35 - scaleZ: 0.35 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75.yaml b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75.yaml index 41e68d0d7..f5f3c29b5 100644 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75.yaml +++ b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 0 + b: 0.0 g: 0.36652 r: 0.70588 ContainedObjects: @@ -43,11 +43,11 @@ Transform: posX: 27.12 posY: 4.04 posZ: -35.86 - rotX: 0 - rotY: 0 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75/Custom_PDF The Circle Undone Campaign Guide 090d61.yaml b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75/Custom_PDF The Circle Undone Campaign Guide 090d61.yaml index 19542524e..aef119248 100644 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75/Custom_PDF The Circle Undone Campaign Guide 090d61.yaml +++ b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75/Custom_PDF The Circle Undone Campaign Guide 090d61.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 43.26 posY: 3.88 posZ: 39.76 - rotX: 22 - rotY: 270 - rotZ: 0 + rotX: 22.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.18 - scaleY: 1 + scaleY: 1.0 scaleZ: 2.18 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75/Custom_PDF The Dunwich Legacy Campaign Guide 8e1339.yaml b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75/Custom_PDF The Dunwich Legacy Campaign Guide 8e1339.yaml index 3f8f93365..703b55c9b 100644 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75/Custom_PDF The Dunwich Legacy Campaign Guide 8e1339.yaml +++ b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75/Custom_PDF The Dunwich Legacy Campaign Guide 8e1339.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 14.89 posY: 3.58 posZ: 40.66 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.18 - scaleY: 1 + scaleY: 1.0 scaleZ: 2.18 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75/Custom_PDF The Forgotten Age Campaign Guide ec5c7e.yaml b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75/Custom_PDF The Forgotten Age Campaign Guide ec5c7e.yaml index 1e6e8e839..995dee3d4 100644 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75/Custom_PDF The Forgotten Age Campaign Guide ec5c7e.yaml +++ b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75/Custom_PDF The Forgotten Age Campaign Guide ec5c7e.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 43.13 posY: 3.58 posZ: 41.2 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.18 - scaleY: 1 + scaleY: 1.0 scaleZ: 2.18 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75/Custom_PDF The Path to Carcosa Campaign Guide ea71cc.yaml b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75/Custom_PDF The Path to Carcosa Campaign Guide ea71cc.yaml index 936c82069..cf8670d7f 100644 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75/Custom_PDF The Path to Carcosa Campaign Guide ea71cc.yaml +++ b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Bag Pre-Errata Campaign Guides 676d75/Custom_PDF The Path to Carcosa Campaign Guide ea71cc.yaml @@ -1,12 +1,12 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true ColorDiffuse: - b: 1 - g: 1 - r: 1 + b: 1.0 + g: 1.0 + r: 1.0 CustomPDF: PDFPage: 0 PDFPageOffset: 0 @@ -35,11 +35,11 @@ Transform: posX: 15.58 posY: 3.58 posZ: 41.18 - rotX: 0 - rotY: 270 - rotZ: 0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.18 - scaleY: 1 + scaleY: 1.0 scaleZ: 2.18 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/CardCustom Flashlight (3) ecd43e.yaml b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/CardCustom Flashlight (3) ecd43e.yaml index 22026566d..547ed93f8 100644 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/CardCustom Flashlight (3) ecd43e.yaml +++ b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/CardCustom Flashlight (3) ecd43e.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 557700 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: 30.88 posY: 4.23 posZ: -35.78 - rotX: 0 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/CardCustom Guard Dog (2) 66c1cb.yaml b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/CardCustom Guard Dog (2) 66c1cb.yaml index 1f994bd04..777ab8507 100644 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/CardCustom Guard Dog (2) 66c1cb.yaml +++ b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/CardCustom Guard Dog (2) 66c1cb.yaml @@ -1,7 +1,7 @@ AltLookAngle: - x: 0 - y: 0 - z: 0 + x: 0.0 + y: 0.0 + z: 0.0 Autoraise: true CardID: 557600 ColorDiffuse: @@ -41,11 +41,11 @@ Transform: posX: 30.71 posY: 4.27 posZ: -36.33 - rotX: 1 - rotY: 270 - rotZ: 0 - scaleX: 1 - scaleY: 1 - scaleZ: 1 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Checker_white Token Arranger 4825a7.ttslua b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Checker_white Token Arranger 4825a7.ttslua deleted file mode 100644 index a5c413e21..000000000 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Checker_white Token Arranger 4825a7.ttslua +++ /dev/null @@ -1,249 +0,0 @@ ---- ---- Generated by Luanalysis ---- Created by Whimsical. ---- DateTime: 2021-12-19 5:00 p.m. ---- - ----@type table -local token_ids = { - elder_sign = "Elder Sign", - skull = "Skull", - cultist = "Cultist", - tablet = "Tablet", - elder_thing = "Elder Thing", - autofail = "Auto-fail", - bless = "Bless", - curse = "Curse", - frost = "Frost", - unnamed = "" -} - ----@type table -local name_ids = { - ["Elder Sign"] = "elder_sign", - ["Skull"] = "skull", - ["Cultist"] = "cultist", - ["Tablet"] = "tablet", - ["Elder Thing"] = "elder_thing", - ["Auto-fail"] = "autofail", - ["Bless"] = "bless", - ["Curse"] = "curse", - ["Frost"] = "frost", - [""] = "unnamed" -} - ----@type Vector -local rotation = {0, 270.00, 0} - ----@type table -local offsets = { - x = -2, - z = -2 -} - -local left_right = "z" -local up_down = "x" -local vertical = "y" - ----@type TTSObject[] -local tracking = {} - -function onload(data) - data = JSON.decode(data) - if data then - local existing = data.tracking - - if existing then - for _, guid in ipairs(existing) do - local object = getObjectFromGUID(guid) - if object then - table.insert(tracking, object) - end - end - end - - if data.tokens then - Wait.frames(function () - for token, value in pairs(data.tokens) do - revalue(nil, value, token) - end - end, 3) - end - - Wait.frames(function () - if data.auto_update then - self.UI:setAttribute("auto_update", "isOn", data.auto_update) - updateToggle(nil, data.auto_update, "auto_update") - end - end, 3) - end - - self:addContextMenuItem("Clear", function () - tracking = {} - end, false) -end - -function onSave() - local targets = {} - for _, token in ipairs(tracking) do - table.insert(targets, token:getGUID()) - end - - local tokens = {} - for id, _ in pairs(token_ids) do - tokens[id] = self.UI:getValue(id) - end - - return JSON.encode({ - tracking = targets, - tokens = tokens, - auto_update = self.UI:getAttribute("auto_update", "isOn") - }) -end - ----@param player Player ----@param value string ----@param token string -function revalue(player, value, token) - if not tonumber(value) then value = 0 end - self.UI:setValue(token, value) - self.UI:setAttribute(token, "text", value) - - if player then -- player is nil when we call this in onload - -- False since "on" looks greyed out - if self.UI:getAttribute("auto_update", "isOn"):lower()=="false" then - Wait.frames(function() - layout() - end, 3) - end - end -end - - ----@param player Player ----@param token string -function inc(player, token) - local value = tonumber(self.UI:getValue(token)) or 0 - revalue(player, value+1, token) -end - ----@param player Player ----@param token string -function dec(player, token) - local value = tonumber(self.UI:getValue(token)) or 0 - revalue(player, value-1, token) -end - ----@param player Player ----@param value string ----@param id string -function updateToggle(player, value, id) - local value = value:lower() == "true" and true or false - self.UI:setAttribute(id, "isOn", value) - if player then - broadcastToAll("Token Arranger: Auto-Update " .. (value and "Disabled" or "Enabled")) - end -end - ----@return TTSObject -local function get_chaos_bag() - return getObjectsWithTag("chaosBag")[1] -end - ----@type table -local token_precedence = { - ["Skull"] = -1, - ["Cultist"] = -2, - ["Tablet"] = -3, - ["Elder Thing"] = -4, - - ["Elder Sign"] = 100, - ["Auto-fail"] = -100, - - ["Bless"] = -1, - ["Curse"] = -2, - ["Frost"] = -3, - [""] = -1000, -} - -local function token_value_comparator(left, right) - if left.value>right.value then return true - elseif right.value>left.value then return false - elseif left.precedence>right.precedence then return true - elseif right.precedence>left.precedence then return false - else return left.token:getGUID() > right.token:getGUID() - end -end - -local function do_position() - local data = {} - - for index, token in ipairs(tracking) do - local name = token:getName() - - data[index] = { - token= token, - value = tonumber(name) or tonumber(self.UI:getValue(name_ids[name])), - precedence = token_precedence[name] or 0 - } - end - - table.sort(data, token_value_comparator) - - local pos = self:getPosition() - local location = {} - - pos[left_right] = pos[left_right] + offsets[left_right] - - location[left_right] = pos[left_right] - location[up_down] = pos[up_down] - location[vertical] = pos[vertical] - - local current_value = data[1].value - - for _, item in ipairs(data) do - ---@type TTSObject - local token = item.token - - ---@type number - local value = item.value - - if value~=current_value then - location[left_right] = pos[left_right] - location[up_down] = location[up_down] + offsets[up_down] - current_value = value - end - - token:setPosition(location) - token:setRotation(rotation) - location[left_right] = location[left_right] + offsets[left_right] - end - -end - -function layout() - for _, token in ipairs(tracking) do - token:destruct() - end - - tracking = {} - - local chaosBag = get_chaos_bag() - - local size = #chaosBag:getObjects() - - for _, data in ipairs(chaosBag:getObjects()) do - chaosBag:takeObject { - guid = data.guid, - smooth = false, - ---@param tok TTSObject - callback_function = function (tok) - local clone = tok:clone() - Wait.frames(function() chaosBag:putObject(clone) end, 1) - table.insert(tracking, tok) - end - } - end - - Wait.condition(function () do_position() end, function () return size==#tracking end) -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Checker_white Token Arranger 4825a7.xml b/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Checker_white Token Arranger 4825a7.xml deleted file mode 100644 index 2c6d64e62..000000000 --- a/unpacked/Custom_Model_Bag Legacy Assets 7165a9/Checker_white Token Arranger 4825a7.xml +++ /dev/null @@ -1,52 +0,0 @@ - - 100 -