Tabletop Simulator

Tabletop Simulator

No hay suficientes valoraciones
WoW TCG - The Molten Core Raid Deck
   
Premio
Favoritos
Favorito
Quitar
Number of Players: 2, 3, 4
Etiquetas: Trading Card Games, 4+
Tamaño
Publicado el
Actualizado el
127.547 KB
3 OCT 2017 a las 3:09 p. m.
1 NOV 2021 a las 7:29 p. m.
4 notas sobre cambios ( ver )

Suscríbete para descargar
WoW TCG - The Molten Core Raid Deck

En 1 colección creada por SPARK
WoW TCG - Raids and Dungeons Collection
11 artículos
Descripción
This mod includes the entirety of the Molten Core Raid Deck for the World of Warcraft Trading Card Game.

Amidst the smoldering lava of the Molten Core, sleeps Ragnaros the fire lord. His minions roam his domain, keeping watch as his lieutenants guard the protective runes throughout his lair. Enter the Molten Core if you dare, but beware the fury of Ragnaros!

This mod is intended to be played with player decks. Find and make your own with frogwow.me and wow.tcgbrowser.com
1 comentarios
dommlic 24 MAR 2023 a las 2:04 p. m. 
You can use this script on Shazzrah's Card to use his ability when flipped. The script will launch the card in the air and fall down to wreak havoc.

[code]
function onPlayerAction(player, action, targets)
if action == Player.Action.Randomize then
-- print(table.concat(targets))
for key,_ in pairs(targets) do
-- print(key)
-- print(_.getGUID())
if self.getGUID() == _.getGUID() then
target = Vector(math.random(-5,5),1000,math.random(-5,5))
self.addForce(target)
self.addTorque(target)
end
end
end
end
[/code]