Uncoded Deck needs coding. Multicolored Auras

Discute about general card coding keyword, ask questions and get answer about the mechanism, about the guideline, the direction we want to go...etc...
Locked
SliverMadness
Posts: 19
Joined: Tue Oct 05, 2010 9:30 pm

Uncoded Deck needs coding. Multicolored Auras

Post by SliverMadness »

This deck still needs to be coded as most if not all of these cards are still uncoded. It also works fast, and clean.

3 Artifact
* 3 x Esper Stormblade
23 Gold
* 3 x Bant Sureblade
* 3 x Giltspire Avenger
* 4 x Grixis Grimblade
* 3 x Jenara, Asura of War
* 3 x Jund Hackblade
* 4 x Knight of New Alara
* 3 x Stoic Angel
11 Hybrid
* 4 x Fists of the Demigod
* 4 x Shield of the Oversoul
* 3 x Steel of the Godhead
20 Land
* 4 x Ancient Ziggurat
* 4 x Arcane Sanctum
* 4 x Pillar of the Paruns
* 4 x Reflecting Pool
* 4 x Vesuva
4 White
* 4 x Path to Exile
wololo
Site Admin
Posts: 3728
Joined: Wed Oct 15, 2008 12:42 am
Location: Japan

Re: Uncoded Deck needs coding. Multicolored Auras

Post by wololo »

I think this forum is rather for discussing "how" to code cards rather than card requests. I'll let it open for now though, in case somebody want to share coding ideas regarding these cards.
SliverMadness
Posts: 19
Joined: Tue Oct 05, 2010 9:30 pm

Re: Uncoded Deck needs coding. Multicolored Auras

Post by SliverMadness »

Sorry about that wololo. I'm still new to coding the cards and im having trouble doing it myself..
jfespinal
Posts: 2
Joined: Sun Jul 26, 2015 4:55 pm

Re: Uncoded Deck needs coding. Multicolored Auras

Post by jfespinal »

Hello
I love wagic and I like the sliver deck and was looking for two cards:
Ancient Ziggurat and Cavern of Souls
but there are not in the wagic code so I code myself

Code: Select all

[card]
name=Ancient Ziggurat
auto=aslongas(creature|myhand) {T}:add{W}
auto=aslongas(creature|myhand) {T}:add{U}
auto=aslongas(creature|myhand) {T}:add{B}
auto=aslongas(creature|myhand) {T}:add{R}
auto=aslongas(creature|myhand) {T}:add{G}
text=Add one mana of any color to your mana pool. Spend this mana only to cast a creature spell.
type=Land
[/card]
[card]
name=Cavern of Souls
auto=activatechooseatype foreach(creature[chosentype]|battlefield) 0/0 activatechooseend
auto={T}:Add{1}
auto={T}:Aslongas(creature[chosentype]|myhand) Add{B}
auto={T}:Aslongas(creature[chosentype]|myhand) Add{G}
auto={T}:Aslongas(creature[chosentype]|myhand) Add{R}
auto={T}:Aslongas(creature[chosentype]|myhand) Add{U}
auto={T}:Aslongas(creature[chosentype]|myhand) Add{W}
text=As Cavern of Souls enters the battlefield, choose a creature type. -- {T}: Add {1} to your mana pool. -- {T}: Add one mana of any color to your mana pool. Spend this mana only to cast a creature spell of the chosen type, and that spell can't be countered.
type=Land
[/card]
You can put it on primitives, I am still working on Cavern of Souls because even when you choose a creature type it let you cast mana of any color on other creatures type that you did not selected but you can play it honestly jejeje!!!!
Locked