Page 1 of 7

Rivals of Ixalan Spoiler Season

PostPosted: 01 Jan 2018, 05:47
by Agetian
Happy New Year, guys!

It's that time again - Rivals of Ixalan is about to start being officially spoiled (or it may as well have started by the time I'm posting this), and there are already quite a few revelations available at http://www.mythicspoiler.com and probably elsewhere. :) Feel free to try to script the cards and provide your scripts here in this thread. Good luck!

- Agetian

Re: Rivals of Ixalan Spoiler Season

PostPosted: 02 Jan 2018, 01:58
by schnautzr

Re: Rivals of Ixalan Spoiler Season

PostPosted: 03 Jan 2018, 06:57
by austinio7116

Re: Rivals of Ixalan Spoiler Season

PostPosted: 03 Jan 2018, 23:25
by austinio7116
Tested and pushed Kumena, Tyrant of Orazca

Re: Rivals of Ixalan Spoiler Season

PostPosted: 04 Jan 2018, 10:05
by austinio7116
Working on swaggering corsair - now implemented and pushed to a new remote branch (upcoming_rix) - but not yet tested as I am at work - I'll test and get a merge request in later.

Merge request now submitted

Re: Rivals of Ixalan Spoiler Season

PostPosted: 04 Jan 2018, 15:10
by ShivaFang
Have any of these merge requests gone through? I'm trying to update my project and either there's something wrong with the way I've got git set up or there is nothing (yet) to update.

I kinda preferred the old way where I could copy the scripts as soon as people posted them, without having to wait for the 'official' update.

Re: Rivals of Ixalan Spoiler Season

PostPosted: 04 Jan 2018, 15:13
by austinio7116
Yes - they are all merged into the master branch now - have you migrated to the git repo?

Re: Rivals of Ixalan Spoiler Season

PostPosted: 04 Jan 2018, 15:38
by ShivaFang
austinio7116 wrote:Yes - they are all merged into the master branch now - have you migrated to the git repo?
Yes.. so something's wrong with my settings. In IntelliJ I've been trying VCS-Update-Rebase and VCS-Update-Branch Default and both say all my files are up to date.

I suspect that it's looking only at the fork I made and not at the actual master branch - and I don't know how to tell it to look at the actual master branch and not the 'forked' master branch.
EDIT: Damnit and I just made a mistake and rolled back to my last commit grr (there was an error when I commited that i didn't see). And I still don't have the new cards. My bad for not making a hard backup of my code like I normally do.

EDIT: Now I'm being told I'm in the 'Detached HEAD State - rebase is not possible' - I don't even know what that means. Man... svn made all this so easy - I just had to update and that was it... none of these hoops.

ANND.. it deleted all my changes to files even though I commited after I had done those. I really don't understand git at all. FFS this is so aggravating.

Re: Rivals of Ixalan Spoiler Season

PostPosted: 04 Jan 2018, 16:02
by torridus
Some of today's official spoilers. All are untested, but they're pretty basic on the code level, so I don't imagine any issues will crop up.

ravenous_chupacabra.txt | Open
Code: Select all
Name:Ravenous Chupacabra
ManaCost:2 B B
Types:Creature Beast Horror
PT:2/2
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigDestroy | TriggerDescription$ When CARDNAME enters the battlefield, destroy target creature an opponent controls.
SVar:TrigDestroy:DB$Destroy | ValidTgts$ Creature.OppCtrl | TgtPrompt$ Select target creature an opponent controls.
SVar:PlayMain1:TRUE
SVar:Picture:http://www.wizards.com/global/images/magic/general/ravenous_chupacabra.jpg
Oracle:When Ravenous Chupacabra enters the battlefield, destroy target creature an opponent controls.
dusk_legion_zealot.txt | Open
Code: Select all
Name:Dusk Legion Zealot
ManaCost:1 B
Types:Creature Vampire Soldier
PT:1/1
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigDraw | TriggerDescription$ When CARDNAME enters the battlefield, you draw a card and you lose 1 life.
SVar:TrigDraw:DB$ Draw | Defined$ You | NumCards$ 1 | SubAbility$ DBLoseLife
SVar:DBLoseLife:DB$ LoseLife | LifeAmount$ 1
SVar:Picture:http://www.wizards.com/global/images/magic/general/dusk_legion_zealot.jpg
Oracle:When Dusk Legion Zealot enters the battlefield, you draw a card and you lose 1 life.
legion_lieutenant.txt | Open
Code: Select all
Name:Legion Lieutenant
ManaCost:W B
Types:Creature Vampire Knight
PT:2/2
S:Mode$ Continuous | Affected$ Creature.Vampire+Other+YouCtrl | AddPower$ 1 | AddToughness$ 1 | Description$ Other Vampires you control get +1/+1.
SVar:Picture:http://www.wizards.com/global/images/magic/general/legion_lieutenant.jpg
Oracle:Other Vampires you control get +1/+1.
merfolk_mistbinder.txt | Open
Code: Select all
Name:Merfolk Mistbinder
ManaCost:G U
Types:Creature Merfolk Shaman
PT:2/2
S:Mode$ Continuous | Affected$ Creature.Merfolk+Other+YouCtrl | AddPower$ 1 | AddToughness$ 1 | Description$ Other Merfolk you control get +1/+1.
SVar:Picture:http://www.wizards.com/global/images/magic/general/merfolk_mistbinder.jpg
Oracle:Other Merfolk you control get +1/+1.
And for my own reference, the current list of implemented cards: https://git.cardforge.org/core-develope ... r/upcoming

Re: Rivals of Ixalan Spoiler Season

PostPosted: 04 Jan 2018, 16:21
by ShivaFang
torridus wrote:And for my own reference, the current list of implemented cards: https://git.cardforge.org/core-develope ... r/upcoming
Thanks for posting this - this will get me started until I can figure out how to get a proper update from git (which I will need for new mechanic updates anyway)

Re: Rivals of Ixalan Spoiler Season

PostPosted: 04 Jan 2018, 18:33
by austinio7116
Git takes a bit of getting used to, but once you are comfortable with it it is just as easy as SVN but more powerful. In IntelliJ, I use the drop down branch menu in the bottom right to switch or create branches, it tells you which branch you are on there too. Then I just use the commit/update menu options in the VCS menu. Hopefully you changes are not lost if you check branches (and perhaps the IntelliJ local history too). There are many ways to do these things though and I too am more familiar with SVN.

Re: Rivals of Ixalan Spoiler Season

PostPosted: 04 Jan 2018, 18:37
by austinio7116
In case you are unsure on the git architecture and what the commands do this may help: https://i.stack.imgur.com/MgaV9.png

Re: Rivals of Ixalan Spoiler Season

PostPosted: 04 Jan 2018, 19:46
by austinio7116
Working on Aquatic Incursion... completed, tested and pushed to upcoming_rix branch

Re: Rivals of Ixalan Spoiler Season

PostPosted: 04 Jan 2018, 20:00
by austinio7116
Atzocan Seer next on my list... tested and pushed to the upcoming_rix branch

Re: Rivals of Ixalan Spoiler Season

PostPosted: 04 Jan 2018, 20:09
by austinio7116
Elenda the Dusk Rose next...Tested and pushed

I have submitted a merge request for the above 3 cards now.