This commit is contained in:
Adam Goldsmith 2021-02-13 12:12:29 -05:00
parent c7f0f24d4d
commit 9173f26885
10483 changed files with 54830 additions and 4546 deletions

View File

@ -327,37 +327,49 @@ end
function drawEncountercard(params) --[[ Parameter Table Position, Table Rotation]]
local position = params[1]
local rotation = params[2]
local isFaceUp = params[3]
local alwaysFaceUp = params[3]
local faceUpRotation
if (isFaceUp) then
faceUpRotation = 0
else
faceUpRotation = 180
end
local items = findInRadiusBy(ENCOUNTER_DECK_POS, 4, isCardOrDeck)
if #items > 0 then
for i, v in ipairs(items) do
if v.tag == 'Deck' then
v.takeObject({index = 0, position = position, rotation = {0,rotation.y,faceUpRotation}})
return
end
local card
local items = findInRadiusBy(ENCOUNTER_DECK_POS, 4, isCardOrDeck)
if #items > 0 then
for i, v in ipairs(items) do
if v.tag == 'Deck' then
card = v.takeObject({index = 0})
break
end
-- we didn't find the deck so just pull the first thing we did find
items[1].setPositionSmooth(position, false, false)
items[1].setRotationSmooth({0,rotation.y,faceUpRotation}, false, false)
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)
return
end
-- nothing here, time to reshuffle
reshuffleEncounterDeck(position, {0,rotation.y,faceUpRotation})
reshuffleEncounterDeck(params)
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(tokenDataId).call('checkHiddenCard', card.getName()) then
faceUpRotation = 180
end
end
card.setPositionSmooth(position, false, false)
card.setRotationSmooth({0,rotation.y,faceUpRotation}, false, false)
end
IS_RESHUFFLING = false
function reshuffleEncounterDeck(position, rotation)
function reshuffleEncounterDeck(params)
-- finishes moving the deck back and draws a card
local function move(deck)
deck.setPositionSmooth(ENCOUNTER_DECK_SPAWN_POS, true, false)
deck.takeObject({index = 0, position = position, rotation = rotation, flip = false})
Wait.time(function() IS_RESHUFFLING = false end, 1)
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

File diff suppressed because it is too large Load Diff

View File

@ -12,6 +12,7 @@ GridProjection: false
Hands: false
HideWhenFaceDown: false
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: true
LuaScript: ''
LuaScriptState: ''

View File

@ -12,6 +12,7 @@ GridProjection: false
Hands: false
HideWhenFaceDown: false
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: true
LuaScript: ''
LuaScriptState: ''

View File

@ -12,6 +12,7 @@ GridProjection: false
Hands: false
HideWhenFaceDown: false
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: true
LuaScript: ''
LuaScriptState: ''

View File

@ -12,6 +12,7 @@ GridProjection: false
Hands: false
HideWhenFaceDown: false
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: true
LuaScript: ''
LuaScriptState: ''

View File

@ -12,6 +12,7 @@ GridProjection: false
Hands: false
HideWhenFaceDown: false
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: true
LuaScript: ''
LuaScriptState: ''

View File

@ -12,6 +12,7 @@ GridProjection: false
Hands: false
HideWhenFaceDown: false
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: true
LuaScript: ''
LuaScriptState: ''

View File

@ -12,6 +12,7 @@ GridProjection: false
Hands: false
HideWhenFaceDown: false
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: true
LuaScript: ''
LuaScriptState: ''

View File

@ -12,6 +12,7 @@ GridProjection: false
Hands: false
HideWhenFaceDown: false
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: true
LuaScript: ''
LuaScriptState: ''
@ -34,7 +35,7 @@ Text:
fontSize: 52
Tooltip: true
Transform:
posX: 74.77
posX: 74.78
posY: 1.29
posZ: 59.06
rotX: 90.0

View File

@ -12,6 +12,7 @@ GridProjection: false
Hands: false
HideWhenFaceDown: false
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: true
LuaScript: ''
LuaScriptState: ''

View File

@ -12,6 +12,7 @@ GridProjection: false
Hands: false
HideWhenFaceDown: false
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: true
LuaScript: ''
LuaScriptState: ''

View File

@ -12,6 +12,7 @@ GridProjection: false
Hands: false
HideWhenFaceDown: false
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: true
LuaScript: ''
LuaScriptState: ''

View File

@ -12,6 +12,7 @@ GridProjection: false
Hands: false
HideWhenFaceDown: false
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: true
LuaScript: ''
LuaScriptState: ''
@ -31,7 +32,7 @@ Tooltip: true
Transform:
posX: -17.91
posY: 1.27
posZ: 84.57
posZ: 84.58
rotX: 90.0
rotY: 89.83
rotZ: 0.0

View File

@ -12,6 +12,7 @@ GridProjection: false
Hands: false
HideWhenFaceDown: false
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: true
LuaScript: ''
LuaScriptState: ''

View File

@ -1,9 +1,18 @@
Autoraise: true
Bag:
Order: 0
ColorDiffuse:
b: 0.0
g: 0.366520882
r: 0.7058823
ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Radiant Smite (1) 92c295.yaml'
- !include 'Bag All Player Cards 15bb07/Card Shield of Faith (2) 06abe0.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dr. Henry Armitage 9229a8.yaml'
- !include 'Bag All Player Cards 15bb07/Card Enchanted Armor (2) 9509e3.yaml'
- !include 'Bag All Player Cards 15bb07/Card Tristan Botley (2) 1fd630.yaml'
- !include "Bag All Player Cards 15bb07/Card R\xEDastrad (1) f1f24e.yaml"
- !include 'Bag All Player Cards 15bb07/Card Signum Crucis (2) c73bb0.yaml'
- !include 'Bag All Player Cards 15bb07/Card Torrent of Power 79287f.yaml'
- !include 'Bag All Player Cards 15bb07/Card Guiding Spirit (1) 9375f4.yaml'
- !include 'Bag All Player Cards 15bb07/Card True Survivor (3) 8837ff.yaml'
@ -21,7 +30,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Gaze of Ouraxsh (2) b7c316.yaml'
- !include 'Bag All Player Cards 15bb07/Card Truth from Fiction (2) 45cd73.yaml'
- !include 'Bag All Player Cards 15bb07/Card Mists of R''lyeh (4) 68fce2.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Signum Crucis (2) c21c1f.yaml'
- !include 'Bag All Player Cards 15bb07/Card Burglary (2) 2aeb8a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Occult Lexicon 5d6728.yaml'
- !include 'Bag All Player Cards 15bb07/Card Eucatastrophe (3) eaaee9.yaml'
@ -33,7 +41,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Tetsuo Mori 08e5a6.yaml'
- !include 'Bag All Player Cards 15bb07/Card Devil''s Luck (1) 812685.yaml'
- !include 'Bag All Player Cards 15bb07/Card Logical Reasoning 812175.yaml'
- !include 'Bag All Player Cards 15bb07/Card Scavenging (2) ff4aea.yaml'
- !include 'Bag All Player Cards 15bb07/Card .45 Thompson (3) b492cb.yaml'
- !include 'Bag All Player Cards 15bb07/Card Streetwise (3) d7dbac.yaml'
- !include 'Bag All Player Cards 15bb07/Card Sacrifice (1) f2877e.yaml'
@ -63,7 +70,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Blinding Light 30f860.yaml'
- !include 'Bag All Player Cards 15bb07/Card Counterspell (2) 2236f6.yaml'
- !include 'Bag All Player Cards 15bb07/Card Close Call (2) 6aae86.yaml'
- !include 'Bag All Player Cards 15bb07/Card Take Heart cc6e4d.yaml'
- !include 'Bag All Player Cards 15bb07/Card Gavriella Mizrah 2237f4.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hot Streak (4) 4eb231.yaml'
- !include 'Bag All Player Cards 15bb07/Card Book of Psalms cc1ef3.yaml'
@ -93,6 +99,7 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Double, Double (4) 0e0530.yaml'
- !include 'Bag All Player Cards 15bb07/Card Internal Injury 4fb446.yaml'
- !include 'Bag All Player Cards 15bb07/Card Small Favor bf5a5f.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Favor of the Moon (1) d480e1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Shotgun (4) c92ea3.yaml'
- !include 'Bag All Player Cards 15bb07/Card Occult Scraps 6aea76.yaml'
- !include 'Bag All Player Cards 15bb07/Card Token of Faith 2ea0d0.yaml'
@ -124,7 +131,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Breaking and Entering 31cfbf.yaml'
- !include 'Bag All Player Cards 15bb07/Card Physical Training 1165db.yaml'
- !include 'Bag All Player Cards 15bb07/Card Pilfer cc9563.yaml'
- !include 'Bag All Player Cards 15bb07/Card Knowledge is Power 6de21b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Lucky Cigarette Case c607c5.yaml'
- !include 'Bag All Player Cards 15bb07/Card Relic of Ages 35bc58.yaml'
- !include 'Bag All Player Cards 15bb07/Card Unspeakable Oath (Curiosity) f6aba5.yaml'
@ -145,12 +151,9 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Quick Learner (4) 3bbc0b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Obfuscation 5ec6d0.yaml'
- !include 'Bag All Player Cards 15bb07/Card .41 Derringer fe2db3.yaml'
- !include 'Bag All Player Cards 15bb07/Card The King in Yellow 016b72.yaml'
- !include 'Bag All Player Cards 15bb07/Card Shrivelling (5) 7a33b2.yaml'
- !include 'Bag All Player Cards 15bb07/Card Blood Eclipse (3) 53d765.yaml'
- !include 'Bag All Player Cards 15bb07/Card .32 Colt b0f851.yaml'
- !include 'Bag All Player Cards 15bb07/Card Resourceful 334f03.yaml'
- !include 'Bag All Player Cards 15bb07/Card Unexpected Courage acb83a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Extra Ammunition (1) f60263.yaml'
- !include 'Bag All Player Cards 15bb07/Card Money Talks 276477.yaml'
- !include 'Bag All Player Cards 15bb07/Card Prepared for the Worst 831b6b.yaml'
@ -191,7 +194,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Duke 876557.yaml'
- !include 'Bag All Player Cards 15bb07/Card Robes of Endless Night (2) ef43db.yaml'
- !include 'Bag All Player Cards 15bb07/Card Able Bodied 051742.yaml'
- !include 'Bag All Player Cards 15bb07/Card Inquiring Mind 5c3aea.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hallowed Mirror 312d38.yaml'
- !include 'Bag All Player Cards 15bb07/Card Banish (1) a00fca.yaml'
- !include 'Bag All Player Cards 15bb07/Card Abandoned and Alone 79b4af.yaml'
@ -242,7 +244,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Haunted 249d83.yaml'
- !include 'Bag All Player Cards 15bb07/Card Arcane Studies (4) ca23d4.yaml'
- !include 'Bag All Player Cards 15bb07/Card Shadow Agents 9be144.yaml'
- !include 'Bag All Player Cards 15bb07/Card Unrelenting (1) 45386d.yaml'
- !include 'Bag All Player Cards 15bb07/Card Day of Reckoning e701af.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ritual Candles 0a4db3.yaml'
- !include 'Bag All Player Cards 15bb07/Card Bury Them Deep e6efe6.yaml'
@ -270,7 +271,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Heroic Rescue (2) 93381d.yaml'
- !include 'Bag All Player Cards 15bb07/Card Fishing Net c7b748.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hyperawareness (2) 23c3e5.yaml'
- !include 'Bag All Player Cards 15bb07/Card Eureka! ffa4f9.yaml'
- !include 'Bag All Player Cards 15bb07/Card Borrowed Time (3) 0db666.yaml'
- !include 'Bag All Player Cards 15bb07/Card Across Space and Time fb943f.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Stars Are Right 600a3c.yaml'
@ -287,10 +287,8 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Elder Sign Amulet (3) 324e49.yaml'
- !include 'Bag All Player Cards 15bb07/Card Neither Rain nor Snow 6da7c4.yaml'
- !include 'Bag All Player Cards 15bb07/Card Baron Samedi 16ad5d.yaml'
- !include 'Bag All Player Cards 15bb07/Card Analytical Mind 7b6ab5.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Necronomicon 6b2550.yaml'
- !include 'Bag All Player Cards 15bb07/Card Bought in Blood 275dc3.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Tristan Botley (2) 039e47.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Tattered Cloak 5d30a1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Fine Clothes 5cb973.yaml'
- !include 'Bag All Player Cards 15bb07/Card Crystalline Elder Sign (3) 949ca2.yaml'
@ -381,7 +379,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Ancient Stone (4) 863f91.yaml'
- !include 'Bag All Player Cards 15bb07/Card Pickpocketing (2) 2f4db2.yaml'
- !include 'Bag All Player Cards 15bb07/Card Fieldwork d6771f.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dr. Henry Armitage 9229a8.yaml'
- !include 'Bag All Player Cards 15bb07/Card Siren Call b9fbff.yaml'
- !include 'Bag All Player Cards 15bb07/Card Stick to the Plan (3) 82d62c.yaml'
- !include 'Bag All Player Cards 15bb07/Card Stray Cat f474b1.yaml'
@ -476,7 +473,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card True Grit e25dc1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Manual Dexterity 679b13.yaml'
- !include 'Bag All Player Cards 15bb07/Card Monster Slayer (5) e21854.yaml'
- !include 'Bag All Player Cards 15bb07/Card Essence of the Dream 6ad46b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Deciphered Reality (5) 8b0193.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dark Memory 580a4d.yaml'
- !include 'Bag All Player Cards 15bb07/Card Sixth Sense 6eceef.yaml'
@ -596,7 +592,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card A Test of Will (2) 71a760.yaml'
- !include 'Bag All Player Cards 15bb07/Card Rite of Sanctification 974743.yaml'
- !include 'Bag All Player Cards 15bb07/Card Accursed Follower ef91a9.yaml'
- !include 'Bag All Player Cards 15bb07/Card Grisly Totem (3) 1433eb.yaml'
- !include 'Bag All Player Cards 15bb07/Card Rational Thought 1c7a00.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dream Diary (3) ea40f6.yaml'
- !include 'Bag All Player Cards 15bb07/Card Unspeakable Oath (Cowardice) ea0fa1.yaml'
@ -609,7 +604,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Delay the Inevitable 683937.yaml'
- !include 'Bag All Player Cards 15bb07/Card Daring Maneuver cc6b14.yaml'
- !include 'Bag All Player Cards 15bb07/Card Let me handle this! 36c0cb.yaml'
- !include 'Bag All Player Cards 15bb07/Card Magnifying Glass (1) 378e84.yaml'
- !include 'Bag All Player Cards 15bb07/Card Alyssa Graham 53867b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Followed 0cc3e7.yaml'
- !include 'Bag All Player Cards 15bb07/Card Newspaper ee20c9.yaml'
@ -621,15 +615,12 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card One-Two Punch (5) 8ffa44.yaml'
- !include 'Bag All Player Cards 15bb07/Card Springfield M1903 (4) (Taboo) a7da13.yaml'
- !include 'Bag All Player Cards 15bb07/Card The 13th Vision c1ce8e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Studious (3) 4ea716.yaml'
- !include 'Bag All Player Cards 15bb07/Card Final Rhapsody 2c901b.yaml'
- !include "Bag All Player Cards 15bb07/Card I've had worse\u2026 (2) 76147b.yaml"
- !include 'Bag All Player Cards 15bb07/Card Angered Spirits d8705c.yaml'
- !include 'Bag All Player Cards 15bb07/Card Deduction (2) 95272b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dark Ritual 272e6c.yaml'
- !include 'Bag All Player Cards 15bb07/Card Trench Knife 0d4eb9.yaml'
- !include 'Bag All Player Cards 15bb07/Card Keen Eye (3) 2f9de4.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Enchanted Armor (2) dfe1ee.yaml'
- !include 'Bag All Player Cards 15bb07/Card Well-Maintained (1) e454c3.yaml'
- !include 'Bag All Player Cards 15bb07/Card Adaptable (1) 731d2a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Bait and Switch 2c2d9a.yaml'
@ -679,7 +670,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Disc of Itzamna d6c44a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dynamite Blast 97986a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Unexpected Courage (2) 2f2190.yaml'
- !include 'Bag All Player Cards 15bb07/Card Act of Desperation 0bea17.yaml'
- !include 'Bag All Player Cards 15bb07/Card Split the Angle 67e006.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Eye of Truth (5) d6085d.yaml'
- !include 'Bag All Player Cards 15bb07/Card Rabbit''s Foot f34090.yaml'
@ -719,7 +709,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Friendly Human 448d3a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Priest of Two Faiths (1) 48e4a3.yaml'
- !include 'Bag All Player Cards 15bb07/Card Moment of Respite (3) 523b76.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Favor of the Moon (1) c174e3.yaml'
- !include 'Bag All Player Cards 15bb07/Card Azure Flame (3) c5fb42.yaml'
- !include 'Bag All Player Cards 15bb07/Card A Test of Will 48e516.yaml'
- !include 'Bag All Player Cards 15bb07/Card Silver Twilight Acolyte 16a89d.yaml'
@ -732,7 +721,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card The Black Cat (5) 16e57b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ethereal Form db90e2.yaml'
- !include 'Bag All Player Cards 15bb07/Card Segment of Onyx (1) ff9f23.yaml'
- !include 'Bag All Player Cards 15bb07/Card Art Student 07a8f0.yaml'
- !include 'Bag All Player Cards 15bb07/Card Stargazing (1) 968a26.yaml'
- !include 'Bag All Player Cards 15bb07/Card Sword Cane 9c32e2.yaml'
- !include 'Bag All Player Cards 15bb07/Card Guidance bbfe9b.yaml'
@ -820,7 +808,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Alejandro Vela c49b4b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Joey The Rat Vigil (3) 48c9ff.yaml'
- !include 'Bag All Player Cards 15bb07/Card Doomed ba2ae1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Arcane Enlightenment e69708.yaml'
- !include 'Bag All Player Cards 15bb07/Card Wither d946d9.yaml'
- !include 'Bag All Player Cards 15bb07/Card Drawing Thin 6d9881.yaml'
- !include 'Bag All Player Cards 15bb07/Card Boxing Gloves db4a43.yaml'
@ -844,7 +831,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Intrepid 99d061.yaml'
- !include 'Bag All Player Cards 15bb07/Card Self-Sacrifice 5e808d.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Eye of the Djinn (2) d3f951.yaml'
- !include 'Bag All Player Cards 15bb07/Card Mr. Rook 1339b0.yaml'
- !include 'Bag All Player Cards 15bb07/Card Forbidden Tome (3) f375bf.yaml'
- !include 'Bag All Player Cards 15bb07/Card Armageddon 3feff1.yaml'
- !include "Bag All Player Cards 15bb07/Card The Tower \u2022 XVI d5c93d.yaml"
@ -855,7 +841,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Scroll of Secrets 230835.yaml'
- !include 'Bag All Player Cards 15bb07/Card Cheat Death (5) 3add54.yaml'
- !include 'Bag All Player Cards 15bb07/Card Overpower 5ab9f4.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dream Diary (3) 5f9a10.yaml'
- !include 'Bag All Player Cards 15bb07/Card Vicious Blow (2) d2e026.yaml'
- !include 'Bag All Player Cards 15bb07/Card Improvised Weapon 30f90b.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Skeleton Key (2) 5d559a.yaml'
@ -879,9 +864,7 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Lightning Gun (5) 2d362c.yaml'
- !include 'Bag All Player Cards 15bb07/Card Treasure Hunter (1) 18927e.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Dirge of Reason fe68c6.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Necronomicon d45f10.yaml'
- !include 'Bag All Player Cards 15bb07/Card Lonnie Ritter ad0ef0.yaml'
- !include 'Bag All Player Cards 15bb07/Card Radiant Smite (1) 3a726b.yaml'
- !include 'Bag All Player Cards 15bb07/Card .45 Thompson 2c6509.yaml'
- !include 'Bag All Player Cards 15bb07/Card Mauser C96 f32343.yaml'
- !include 'Bag All Player Cards 15bb07/Card Lola Santiago (3) 8bec05.yaml'
@ -897,7 +880,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Ward of Protection 6656ad.yaml'
- !include 'Bag All Player Cards 15bb07/Card Scrying Mirror 6446d1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Flamethrower (5) (Taboo) 8f170b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Pathfinder (1) 7f99cc.yaml'
- !include 'Bag All Player Cards 15bb07/Card Old Keyring 5888da.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Necronomicon (5) (Taboo) 9fa2a5.yaml'
- !include 'Bag All Player Cards 15bb07/Card Overzealous 88a9b3.yaml'
@ -945,7 +927,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Scroll of Prophecies 0d926f.yaml'
- !include 'Bag All Player Cards 15bb07/Card Arcane Research e425d0.yaml'
- !include 'Bag All Player Cards 15bb07/Card Foolishness fa777f.yaml'
- !include 'Bag All Player Cards 15bb07/Card Drawing Thin (Taboo) 3d08dc.yaml'
- !include 'Bag All Player Cards 15bb07/Card All In (5) (Taboo) ff1dfe.yaml'
- !include 'Bag All Player Cards 15bb07/Card Anna Kaslow (4) 03a4de.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Painted World 170538.yaml'
@ -969,7 +950,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Alter Fate (1) 9e4e11.yaml'
- !include 'Bag All Player Cards 15bb07/Card Peter Sylvestre (2) e1e098.yaml'
- !include 'Bag All Player Cards 15bb07/Card Drawing the Sign 438cca.yaml'
- !include "Bag All Player Cards 15bb07/CardCustom R\xEDastrad (1) d89190.yaml"
- !include 'Bag All Player Cards 15bb07/Card Reckless Assault 3ff641.yaml'
- !include 'Bag All Player Cards 15bb07/Card Peter Sylvestre ffdeb5.yaml'
- !include 'Bag All Player Cards 15bb07/Card Charon''s Obol (1) 1dbc95.yaml'
@ -987,7 +967,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Double or Nothing efb09b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Flashlight bb1cce.yaml'
- !include 'Bag All Player Cards 15bb07/Card Elina Harper 7e2896.yaml'
- !include 'Bag All Player Cards 15bb07/Card Sharp Vision (1) 4d9a97.yaml'
- !include 'Bag All Player Cards 15bb07/Card Encyclopedia dbb0e0.yaml'
- !include 'Bag All Player Cards 15bb07/Card No Sense of Space or Time 1e6cae.yaml'
- !include 'Bag All Player Cards 15bb07/Card Rise to the Occasion (3) bb501b.yaml'
@ -1004,6 +983,51 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Curse of Aeons (3) 3199f2.yaml'
- !include 'Bag All Player Cards 15bb07/Card Scrying 8a927c.yaml'
- !include 'Bag All Player Cards 15bb07/Card Blood-Rite eafd12.yaml'
- !include 'Bag All Player Cards 15bb07/Card Harmony Restored (2) 7885cf.yaml'
- !include 'Bag All Player Cards 15bb07/Card Spirit of Humanity (2) e5901b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Shroud of Shadows (4) 12bdf1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Eye of Chaos (4) f68105.yaml'
- !include 'Bag All Player Cards 15bb07/Card Armageddon (4) 32e5a4.yaml'
- !include 'Bag All Player Cards 15bb07/Card Eye of the Djinn (2) df182a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Lucky Penny (2) aae31c.yaml'
- !include 'Bag All Player Cards 15bb07/Card Guided by the Unseen (3) d76b40.yaml'
- !include 'Bag All Player Cards 15bb07/Card Fey (1) f10690.yaml'
- !include 'Bag All Player Cards 15bb07/Card Holy Rosary (2) 2d2246.yaml'
- !include 'Bag All Player Cards 15bb07/Card Magnifying Glass (1) 378e84.yaml'
- !include 'Bag All Player Cards 15bb07/Card Unexpected Courage acb83a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Pathfinder (1) 7f99cc.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Necronomicon d45f10.yaml'
- !include 'Bag All Player Cards 15bb07/Card Art Student 07a8f0.yaml'
- !include 'Bag All Player Cards 15bb07/Card Deduction (2) 95272b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Inquiring Mind 5c3aea.yaml'
- !include 'Bag All Player Cards 15bb07/Card Analytical Mind 7b6ab5.yaml'
- !include 'Bag All Player Cards 15bb07/Card The King in Yellow 016b72.yaml'
- !include 'Bag All Player Cards 15bb07/Card Resourceful 334f03.yaml'
- !include 'Bag All Player Cards 15bb07/Card Eureka! ffa4f9.yaml'
- !include 'Bag All Player Cards 15bb07/Card Take Heart cc6e4d.yaml'
- !include 'Bag All Player Cards 15bb07/Card Act of Desperation 0bea17.yaml'
- !include 'Bag All Player Cards 15bb07/Card Mr. Rook 1339b0.yaml'
- !include 'Bag All Player Cards 15bb07/Card Drawing Thin (Taboo) 3d08dc.yaml'
- !include 'Bag All Player Cards 15bb07/Card Grisly Totem (3) 1433eb.yaml'
- !include 'Bag All Player Cards 15bb07/Card Knowledge is Power 6de21b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Studious (3) 4ea716.yaml'
- !include 'Bag All Player Cards 15bb07/Card Sharp Vision (1) 4d9a97.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dream Diary (3) 5f9a10.yaml'
- !include 'Bag All Player Cards 15bb07/Card Scavenging (2) ff4aea.yaml'
- !include 'Bag All Player Cards 15bb07/Card Arcane Enlightenment e69708.yaml'
- !include 'Bag All Player Cards 15bb07/Card Essence of the Dream 6ad46b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Unrelenting (1) 45386d.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Ariadne''s Twine (3) 58d4e7.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Dig Deep (4) b3633e.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Flute of the Outer Gods (4) 2d7b99.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Hyperawareness (4) 910846.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Ancestral Knowledge (3) a55d13.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Nephthys (4) a6e34c.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Hallow (3) 4421c6.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Hard Knocks (4) c450f2.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Jacob Morrison (3) 57b8b3.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Justify the Means (3) 2770dd.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Lucky Dice (3) 723609.yaml'
Description: ''
DragSelectable: true
GMNotes: ''
@ -1013,6 +1037,7 @@ GridProjection: false
Hands: false
HideWhenFaceDown: false
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: false
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: false
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''
@ -33,12 +34,12 @@ Snap: true
Sticky: true
Tooltip: true
Transform:
posX: -66.06
posY: 3.48
posZ: -67.38
rotX: 0.02
rotY: 270.01
rotZ: 180.02
posX: 0.0
posY: 1.5
posZ: 0.0
rotX: 359.99
rotY: 270.0
rotZ: 359.98
scaleX: 1.0
scaleY: 1.0
scaleZ: 1.0

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: false
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''
@ -33,12 +34,12 @@ Snap: true
Sticky: true
Tooltip: true
Transform:
posX: -66.06
posY: 3.48
posZ: -67.38
rotX: 0.02
rotY: 270.01
rotZ: 180.02
posX: 0.0
posY: 1.5
posZ: 0.0
rotX: 359.99
rotY: 270.0
rotZ: 359.98
scaleX: 1.0
scaleY: 1.0
scaleZ: 1.0

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -0,0 +1,46 @@
Autoraise: true
CardID: 266206
ColorDiffuse:
b: 0.713235259
g: 0.713235259
r: 0.713235259
CustomDeck:
'2662':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1762566631365911157/BA72DB110F19AB0970C87BEB853477E6D4A7D65F/
NumHeight: 5
NumWidth: 6
Type: 0
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: ''
GUID: 32e5a4
Grid: true
GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''
MeasureMovement: false
Name: Card
Nickname: Armageddon (4)
SidewaysCard: false
Snap: true
Sticky: true
Tooltip: true
Transform:
posX: 79.27
posY: 3.28
posZ: -2.84
rotX: 358.21
rotY: 269.93
rotZ: 183.3
scaleX: 1.0
scaleY: 1.0
scaleZ: 1.0
XmlUI: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

View File

@ -22,6 +22,7 @@ GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''

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