This commit is contained in:
Adam Goldsmith 2020-11-28 11:47:21 -05:00
parent b03c6bda1c
commit 9a9e849a87
1300 changed files with 60817 additions and 44136 deletions

View File

@ -50,6 +50,173 @@ function onload()
end end
function take_callback(object_spawned, mat)
customObject = object_spawned.getCustomObject()
local player = mat.getGUID();
local image = customObject.image
-- Update global stats
if PULLS[image] == nil then
PULLS[image] = 0
end
PULLS[image] = PULLS[image] + 1
-- Update player stats
if PLAYER_PULLS[player][image] == nil then
PLAYER_PULLS[player][image] = 0
end
PLAYER_PULLS[player][image] = PLAYER_PULLS[player][image] + 1
end
MAT_GUID_TO_COLOUR = {
["8b081b"] = "White",
-- player 2 conrad
["bd0ff4"] = "Orange",
-- player
["383d8b"] = "Green",
-- playur 4 olivia
["0840d5"] = "Red"
}
PLAYER_PULLS = {
-- player 1 max
["8b081b"] = {},
-- player 2 conrad
["bd0ff4"] = {},
-- player
["383d8b"] = {},
-- playur 4 olivia
["0840d5"] = {}
}
PULLS = {
-- 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/1011565208488654691/8F0B399048EBC34CD24B99AAD415AEC40E679C65/"] = 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/1011565208488650618/B2B081032AF3EFDBD90840A5D6888A3CEA228D66/"] = 0,
-- elder sign
["https://i.imgur.com/nEmqjmj.png"] = 0,
}
IMAGE_TOKEN_MAP = {
-- cultist
["https://i.imgur.com/VzhJJaH.png"] = "cultist",
-- skull
["https://i.imgur.com/stbBxtx.png"] = "skull",
-- tablet
["https://i.imgur.com/1plY463.png"] = "tablet",
-- elder thing
["https://i.imgur.com/ttnspKt.png"] = "Elder Thing",
-- curse
["http://cloud-3.steamusercontent.com/ugc/1011565208488654691/8F0B399048EBC34CD24B99AAD415AEC40E679C65/"] = "curse",
-- tentacle
["https://i.imgur.com/lns4fhz.png"] = "Auto-Fail",
-- minus eight
["https://i.imgur.com/9t3rPTQ.png"] = "-8",
-- minus seven
["https://i.imgur.com/4WRD42n.png"] = "-7",
-- minus six
["https://i.imgur.com/c9qdSzS.png"] = "-6",
-- minus five
["https://i.imgur.com/3Ym1IeG.png"] = "-5",
-- minus four
["https://i.imgur.com/qrgGQRD.png"] = "-4",
-- minus three
["https://i.imgur.com/yfs8gHq.png"] = "-3",
-- minus two
["https://i.imgur.com/bfTg2hb.png"] = "-2",
-- minus one
["https://i.imgur.com/w3XbrCC.png"] = "-1",
-- zero
["https://i.imgur.com/btEtVfd.png"] = "0",
-- plus one
["https://i.imgur.com/uIx8jbY.png"] = "+1",
-- bless
["http://cloud-3.steamusercontent.com/ugc/1011565208488650618/B2B081032AF3EFDBD90840A5D6888A3CEA228D66/"] = "bless",
-- elder sign
["https://i.imgur.com/nEmqjmj.png"] = "Elder Sign",
}
function resetStats()
for key,value in pairs(PULLS) do
PULLS[key] = 0
end
for playerKey, playerValue in pairs(PLAYER_PULLS) do
for key,value in pairs(PULLS) do
PLAYER_PULLS[playerKey][key] = value
end
end
end
function getPlayerName(playerMatGuid)
local playerColour = MAT_GUID_TO_COLOUR[playerMatGuid]
if Player[playerColour].seated then
return Player[playerColour].steam_name
else
return playerColour
end
end
function printStats()
local squidKing = "Nobody"
local maxSquid = 0
printToAll("\nOverall Game stats\n")
printNonZeroTokenPairs(PULLS)
printToAll("\nIndividual Stats\n")
for playerMatGuid, countTable in pairs(PLAYER_PULLS) do
local playerName = getPlayerName(playerMatGuid)
printToAll(playerName .. " Stats", {r=255,g=0,b=0})
printNonZeroTokenPairs(PLAYER_PULLS[playerMatGuid])
playerSquidCount = PLAYER_PULLS[playerMatGuid]["https://i.imgur.com/lns4fhz.png"]
if playerSquidCount != nil and playerSquidCount > maxSquid then
squidKing = playerName
end
end
printToAll(squidKing .. " is an auto-fail magnet.", {r=255,g=0,b=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
-- Remove comments to enable autorotate cards on hands. -- Remove comments to enable autorotate cards on hands.
-- function onObjectEnterScriptingZone(zone, object) -- function onObjectEnterScriptingZone(zone, object)
-- Autorotate cards with right side up when entering hand. -- Autorotate cards with right side up when entering hand.
@ -252,7 +419,8 @@ function drawChaostoken(params)
local token = chaosbag.takeObject({ local token = chaosbag.takeObject({
index = 0, index = 0,
position = toPosition, position = toPosition,
rotation = mat.getRotation() rotation = mat.getRotation(),
callback_function = function(obj) take_callback(obj, mat) end
}) })
CHAOS_TOKENS[#CHAOS_TOKENS + 1] = token CHAOS_TOKENS[#CHAOS_TOKENS + 1] = token
return return

View File

@ -22,7 +22,7 @@ CameraStates:
- null - null
- null - null
- null - null
Date: 11/1/2020 8:50:09 PM Date: 11/7/2020 5:09:33 PM
DecalPallet: DecalPallet:
- ImageURL: http://cloud-3.steamusercontent.com/ugc/1474319121424323663/BC5570ECF747F1B30224461B576E8B0FE7FA5F33/ - ImageURL: http://cloud-3.steamusercontent.com/ugc/1474319121424323663/BC5570ECF747F1B30224461B576E8B0FE7FA5F33/
Name: Achivement Checkmark Name: Achivement Checkmark
@ -230,9 +230,9 @@ Hands:
rotX: 0.0 rotX: 0.0
rotY: 90.0 rotY: 90.0
rotZ: 0.0 rotZ: 0.0
scaleX: 22.8715858 scaleX: 22.8846416
scaleY: 7.0 scaleY: 7.0
scaleZ: 7.06411266 scaleZ: 7.069945
- Color: Red - Color: Red
Transform: Transform:
posX: -27.96 posX: -27.96
@ -263,9 +263,9 @@ Hands:
rotX: 0.0 rotX: 0.0
rotY: 90.0 rotY: 90.0
rotZ: 0.0 rotZ: 0.0
scaleX: 22.8717346 scaleX: 22.8847885
scaleY: 7.002465 scaleY: 7.002465
scaleZ: 7.06417131 scaleZ: 7.07000351
Hiding: 2 Hiding: 2
Lighting: Lighting:
AmbientEquatorColor: AmbientEquatorColor:
@ -551,10 +551,13 @@ ObjectStates:
- !include '../AH_SCE_Unpacked/unpacked/ScriptingTrigger b047f8.yaml' - !include '../AH_SCE_Unpacked/unpacked/ScriptingTrigger b047f8.yaml'
- !include '../AH_SCE_Unpacked/unpacked/ScriptingTrigger 18538f.yaml' - !include '../AH_SCE_Unpacked/unpacked/ScriptingTrigger 18538f.yaml'
- !include '../AH_SCE_Unpacked/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0.yaml' - !include '../AH_SCE_Unpacked/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0.yaml'
- !include '../AH_SCE_Unpacked/unpacked/Custom_Model Custom Data Helper c0b834.yaml'
- !include '../AH_SCE_Unpacked/unpacked/Custom_Model_Bag Miskatonic Mouse 0954ef.yaml' - !include '../AH_SCE_Unpacked/unpacked/Custom_Model_Bag Miskatonic Mouse 0954ef.yaml'
- !include '../AH_SCE_Unpacked/unpacked/Notecard Arkham SCE 1.501 - 1112020 - Page - !include '../AH_SCE_Unpacked/unpacked/Custom_Model Custom Data Helper c0b834.yaml'
1 e65fb4.yaml' - !include '../AH_SCE_Unpacked/unpacked/Custom_Token Chaos Bag Stat Tracker 766620.yaml'
- !include '../AH_SCE_Unpacked/unpacked/Custom_Model_Bag Maximillion Pegasus Custom
Investigator 84be1d.yaml'
- !include '../AH_SCE_Unpacked/unpacked/Notecard Arkham SCE 1.51 - 1172020 - Page
1 094d4d.yaml'
PlayArea: 1.0 PlayArea: 1.0
PlayerCounts: PlayerCounts:
- 0 - 0
@ -563,7 +566,7 @@ PlayingTime:
- 0 - 0
- 0 - 0
Rules: '' Rules: ''
SaveName: Arkham SCE 1.501 SaveName: Arkham SCE 1.51
Sky: Sky_Museum Sky: Sky_Museum
SkyURL: https://i.imgur.com/GkQqaOF.jpg SkyURL: https://i.imgur.com/GkQqaOF.jpg
SnapPoints: SnapPoints:
@ -1030,7 +1033,7 @@ SnapPoints:
Rotation: Rotation:
x: 359.9201 x: 359.9201
y: 269.981476 y: 269.981476
z: 0.0169199947 z: 0.0169201475
- Position: - Position:
x: -21.2858257 x: -21.2858257
y: 1.50565612 y: 1.50565612

View File

@ -32,7 +32,7 @@ Transform:
posX: -48.92 posX: -48.92
posY: 1.25 posY: 1.25
posZ: 71.4 posZ: 71.4
rotX: 90.0 rotX: 89.97
rotY: 90.0 rotY: 90.0
rotZ: 0.0 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0

View File

@ -29,7 +29,7 @@ Text:
fontSize: 64 fontSize: 64
Tooltip: true Tooltip: true
Transform: Transform:
posX: -17.92 posX: -17.91
posY: 1.27 posY: 1.27
posZ: 84.57 posZ: 84.57
rotX: 90.0 rotX: 90.0

View File

@ -1,8 +1,8 @@
Autoraise: true Autoraise: true
ColorDiffuse: ColorDiffuse:
b: 0.141086936 b: 0.141085863
g: 0.141086936 g: 0.141085863
r: 0.141086936 r: 0.141085863
CustomMesh: CustomMesh:
CastShadows: true CastShadows: true
ColliderURL: '' ColliderURL: ''

View File

@ -1,8 +1,8 @@
Autoraise: true Autoraise: true
ColorDiffuse: ColorDiffuse:
b: 0.141086936 b: 0.141085863
g: 0.141086936 g: 0.141085863
r: 0.141086936 r: 0.141085863
CustomMesh: CustomMesh:
CastShadows: true CastShadows: true
ColliderURL: '' ColliderURL: ''

View File

@ -1,8 +1,8 @@
Autoraise: true Autoraise: true
ColorDiffuse: ColorDiffuse:
b: 0.141086936 b: 0.141085863
g: 0.141086936 g: 0.141085863
r: 0.141086936 r: 0.141085863
CustomMesh: CustomMesh:
CastShadows: true CastShadows: true
ColliderURL: '' ColliderURL: ''

View File

@ -29,7 +29,7 @@ GridProjection: false
Hands: false Hands: false
HideWhenFaceDown: false HideWhenFaceDown: false
IgnoreFoW: false IgnoreFoW: false
Locked: true Locked: false
LuaScript: !include 'Custom_Model Custom Data Helper c0b834.ttslua' LuaScript: !include 'Custom_Model Custom Data Helper c0b834.ttslua'
LuaScriptState: '' LuaScriptState: ''
MeasureMovement: false MeasureMovement: false
@ -39,12 +39,12 @@ Snap: true
Sticky: true Sticky: true
Tooltip: true Tooltip: true
Transform: Transform:
posX: 31.42 posX: 31.48
posY: 1.47 posY: 1.49
posZ: -23.85 posZ: -23.84
rotX: 359.89 rotX: 359.92
rotY: 269.98 rotY: 269.99
rotZ: 0.01 rotZ: 0.02
scaleX: 0.5 scaleX: 0.5
scaleY: 0.5 scaleY: 0.5
scaleZ: 0.5 scaleZ: 0.5

View File

@ -256,7 +256,7 @@ Transform:
posY: 1.6 posY: 1.6
posZ: -23.57 posZ: -23.57
rotX: 359.92 rotX: 359.92
rotY: 269.96 rotY: 269.95
rotZ: 0.02 rotZ: 0.02
scaleX: 0.45 scaleX: 0.45
scaleY: 0.6 scaleY: 0.6

View File

@ -256,7 +256,7 @@ Transform:
posY: 1.56 posY: 1.56
posZ: -19.36 posZ: -19.36
rotX: 0.02 rotX: 0.02
rotY: 180.05 rotY: 180.06
rotZ: 0.08 rotZ: 0.08
scaleX: 0.45 scaleX: 0.45
scaleY: 0.6 scaleY: 0.6

View File

@ -256,7 +256,7 @@ Transform:
posY: 1.57 posY: 1.57
posZ: 19.26 posZ: 19.26
rotX: 359.98 rotX: 359.98
rotY: 0.0 rotY: 0.01
rotZ: 359.92 rotZ: 359.92
scaleX: 0.45 scaleX: 0.45
scaleY: 0.6 scaleY: 0.6

View File

@ -256,7 +256,7 @@ Transform:
posY: 1.56 posY: 1.56
posZ: -19.36 posZ: -19.36
rotX: 0.02 rotX: 0.02
rotY: 180.06 rotY: 180.07
rotZ: 0.08 rotZ: 0.08
scaleX: 0.45 scaleX: 0.45
scaleY: 0.6 scaleY: 0.6

View File

@ -256,7 +256,7 @@ Transform:
posY: 1.6 posY: 1.6
posZ: -22.34 posZ: -22.34
rotX: 359.92 rotX: 359.92
rotY: 270.03 rotY: 270.04
rotZ: 0.02 rotZ: 0.02
scaleX: 0.45 scaleX: 0.45
scaleY: 0.6 scaleY: 0.6

File diff suppressed because it is too large Load Diff

View File

@ -11,7 +11,7 @@ CustomImage:
Type: 2 Type: 2
ImageScalar: 1.0 ImageScalar: 1.0
ImageSecondaryURL: '' ImageSecondaryURL: ''
ImageURL: https://i.imgur.com/yfs8gHq.png ImageURL: https://i.imgur.com/1plY463.png
WidthScale: 0.0 WidthScale: 0.0
Description: '' Description: ''
DragSelectable: true DragSelectable: true
@ -32,9 +32,9 @@ Snap: true
Sticky: true Sticky: true
Tooltip: true Tooltip: true
Transform: Transform:
posX: -3.78 posX: -3.86
posY: 4.58 posY: 4.58
posZ: -15.11 posZ: -14.84
rotX: 0.0 rotX: 0.0
rotY: 260.0 rotY: 260.0
rotZ: 0.0 rotZ: 0.0

View File

@ -78,9 +78,9 @@ Snap: true
Sticky: true Sticky: true
Tooltip: true Tooltip: true
Transform: Transform:
posX: -36.57 posX: -33.33
posY: 3.16 posY: 1.99
posZ: -95.38 posZ: -87.05
rotX: 0.02 rotX: 0.02
rotY: 270.0 rotY: 270.0
rotZ: 0.02 rotZ: 0.02

View File

@ -14,6 +14,7 @@ ContainedObjects:
- !include 'Bag The Innsmouth Conspiracy 2e936e/Deck Creatures of the Deep 0326ec.yaml' - !include 'Bag The Innsmouth Conspiracy 2e936e/Deck Creatures of the Deep 0326ec.yaml'
- !include 'Bag The Innsmouth Conspiracy 2e936e/Deck Agents of Hydra b909c7.yaml' - !include 'Bag The Innsmouth Conspiracy 2e936e/Deck Agents of Hydra b909c7.yaml'
- !include 'Bag The Innsmouth Conspiracy 2e936e/Deck Agents of Dagon e18dd7.yaml' - !include 'Bag The Innsmouth Conspiracy 2e936e/Deck Agents of Dagon e18dd7.yaml'
- !include 'Bag The Innsmouth Conspiracy 2e936e/Deck In Too Deep 60643c.yaml'
- !include 'Bag The Innsmouth Conspiracy 2e936e/Deck The Vanishing of Elina Harper - !include 'Bag The Innsmouth Conspiracy 2e936e/Deck The Vanishing of Elina Harper
6af1d0.yaml' 6af1d0.yaml'
- !include 'Bag The Innsmouth Conspiracy 2e936e/Deck The Pit of Despair 094470.yaml' - !include 'Bag The Innsmouth Conspiracy 2e936e/Deck The Pit of Despair 094470.yaml'
@ -39,10 +40,10 @@ Snap: true
Sticky: true Sticky: true
Tooltip: true Tooltip: true
Transform: Transform:
posX: 23.69 posX: 30.94
posY: 3.19 posY: 2.96
posZ: -40.91 posZ: -80.02
rotX: -0.0 rotX: -0.01
rotY: 0.0 rotY: 0.0
rotZ: 359.98 rotZ: 359.98
scaleX: 1.0 scaleX: 1.0

File diff suppressed because one or more lines are too long

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 266312 CardID: 554112
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'2663': '5541':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 266311 CardID: 554711
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'2663': '5547':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 553703 CardID: 555003
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'5537': '5550':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 552710 CardID: 553910
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'5527': '5539':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 553104 CardID: 554004
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'5531': '5540':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 553212 CardID: 554212
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'5532': '5542':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 553805 CardID: 555105
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'5538': '5551':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 266314 CardID: 554814
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'2663': '5548':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 553314 CardID: 554314
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'5533': '5543':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 553607 CardID: 554907
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'5536': '5549':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/

View File

@ -0,0 +1,45 @@
Autoraise: true
CardID: 553100
ColorDiffuse:
b: 0.713235259
g: 0.713235259
r: 0.713235259
CustomDeck:
'5531':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/
NumHeight: 7
NumWidth: 10
Type: 0
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: ''
GUID: 55fc3d
Grid: true
GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
Locked: false
LuaScript: ''
LuaScriptState: ''
MeasureMovement: false
Name: Card
Nickname: Riot Whistle
SidewaysCard: false
Snap: true
Sticky: true
Tooltip: true
Transform:
posX: 37.42
posY: 1.3
posZ: 90.16
rotX: 0.02
rotY: 270.0
rotZ: 0.02
scaleX: 1.0
scaleY: 1.0
scaleZ: 1.0
XmlUI: ''

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 266313 CardID: 554413
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'2663': '5544':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/
@ -35,7 +35,7 @@ Tooltip: true
Transform: Transform:
posX: 37.42 posX: 37.42
posY: 1.3 posY: 1.3
posZ: 90.16 posZ: 87.86
rotX: 0.02 rotX: 0.02
rotY: 270.0 rotY: 270.0
rotZ: 0.02 rotZ: 0.02

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 553508 CardID: 554608
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'5535': '5546':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/
@ -35,7 +35,7 @@ Tooltip: true
Transform: Transform:
posX: 37.42 posX: 37.42
posY: 1.3 posY: 1.3
posZ: 87.86 posZ: 85.56
rotX: 0.02 rotX: 0.02
rotY: 269.98 rotY: 269.98
rotZ: 0.02 rotZ: 0.02

View File

@ -35,7 +35,7 @@ Tooltip: true
Transform: Transform:
posX: 37.42 posX: 37.42
posY: 1.3 posY: 1.3
posZ: 85.56 posZ: 83.26
rotX: 0.02 rotX: 0.02
rotY: 269.98 rotY: 269.98
rotZ: 0.02 rotZ: 0.02

View File

@ -35,7 +35,7 @@ Tooltip: true
Transform: Transform:
posX: 37.42 posX: 37.42
posY: 1.3 posY: 1.3
posZ: 83.26 posZ: 80.96
rotX: 0.02 rotX: 0.02
rotY: 269.98 rotY: 269.98
rotZ: 0.02 rotZ: 0.02

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 553416 CardID: 554516
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'5534': '5545':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/

View File

@ -35,7 +35,7 @@ Tooltip: true
Transform: Transform:
posX: 37.42 posX: 37.42
posY: 1.3 posY: 1.3
posZ: 80.96 posZ: 78.66
rotX: 0.02 rotX: 0.02
rotY: 269.98 rotY: 269.98
rotZ: 0.02 rotZ: 0.02

View File

@ -35,7 +35,7 @@ Tooltip: true
Transform: Transform:
posX: 37.42 posX: 37.42
posY: 1.3 posY: 1.3
posZ: 78.66 posZ: 76.36
rotX: 0.02 rotX: 0.02
rotY: 269.98 rotY: 269.98
rotZ: 0.02 rotZ: 0.02

View File

@ -35,7 +35,7 @@ Tooltip: true
Transform: Transform:
posX: 37.42 posX: 37.42
posY: 1.3 posY: 1.3
posZ: 76.36 posZ: 74.06
rotX: 0.02 rotX: 0.02
rotY: 269.98 rotY: 269.98
rotZ: 0.02 rotZ: 0.02

View File

@ -35,7 +35,7 @@ Tooltip: true
Transform: Transform:
posX: 37.42 posX: 37.42
posY: 1.3 posY: 1.3
posZ: 74.06 posZ: 71.76
rotX: 0.02 rotX: 0.02
rotY: 269.98 rotY: 269.98
rotZ: 0.02 rotZ: 0.02

View File

@ -35,7 +35,7 @@ Tooltip: true
Transform: Transform:
posX: 37.42 posX: 37.42
posY: 1.3 posY: 1.3
posZ: 71.76 posZ: 69.46
rotX: 0.02 rotX: 0.02
rotY: 269.97 rotY: 269.97
rotZ: 0.02 rotZ: 0.02

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 266312 CardID: 554112
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'2663': '5541':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 266311 CardID: 554711
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'2663': '5547':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 553703 CardID: 555003
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'5537': '5550':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 552710 CardID: 553910
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'5527': '5539':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 553104 CardID: 554004
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'5531': '5540':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 553212 CardID: 554212
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'5532': '5542':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 553805 CardID: 555105
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'5538': '5551':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 266314 CardID: 554814
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'2663': '5548':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 553314 CardID: 554314
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'5533': '5543':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 553607 CardID: 554907
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'5536': '5549':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/

View File

@ -0,0 +1,45 @@
Autoraise: true
CardID: 553100
ColorDiffuse:
b: 0.713235259
g: 0.713235259
r: 0.713235259
CustomDeck:
'5531':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/
NumHeight: 7
NumWidth: 10
Type: 0
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: ''
GUID: 55fc3d
Grid: true
GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
Locked: false
LuaScript: ''
LuaScriptState: ''
MeasureMovement: false
Name: Card
Nickname: Riot Whistle
SidewaysCard: false
Snap: true
Sticky: true
Tooltip: true
Transform:
posX: 66.62
posY: 1.41
posZ: 75.88
rotX: 0.02
rotY: 270.0
rotZ: 0.02
scaleX: 1.0
scaleY: 1.0
scaleZ: 1.0
XmlUI: ''

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 266313 CardID: 554413
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'2663': '5544':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 553508 CardID: 554608
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'5535': '5546':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/

View File

@ -1,11 +1,11 @@
Autoraise: true Autoraise: true
CardID: 553416 CardID: 554516
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.713235259
g: 0.713235259 g: 0.713235259
r: 0.713235259 r: 0.713235259
CustomDeck: CustomDeck:
'5534': '5545':
BackIsHidden: true BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/ BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/

Some files were not shown because too many files have changed in this diff Show More