It is currently 18 Jul 2025, 15:42
   
Text Size

Community Wad

Moderator: CCGHQ Admins

Re: Community Wad

Postby Xander9009 » 02 Jan 2017, 22:30

Splinterverse wrote:Xander, will the vehicle crewing code need to be altered to handle Peacekeeper Colossus' ability? (Per the spoiler at http://www.mtgsalvation.com/cards/aethe ... r-colossus)

EDIT TO ADD: Another question, will we need to change the code for all energy/experience/poison/etc. cards to handle this http://mythicspoiler.com/aer/cards/wind ... ictor.html ? (The first ability isn't difficult. It's the second one that I'm wondering about.)

A couple of quick uploads today:
Mountain 386609 now hast HQ art (it was missing before, I must have forgotten to upload it)
Otherworldly Journey HQ art upgrade
City of Brass non-MM version
Foreboding Ruins non-MM version
Forsaken Sanctuary non-MM version
Sylvan Caryatid was missing tap cost on its ability (non-MM version)
Peacekeeper Colossus targets a vehicle other than itself and turns it into an artifact creature. That's it. While it does target a vehicle, and while vehicles do have their own method of becoming a creature, this isn't using or referencing that ability (crew) and is in fact completely separate. It's functionally identical to Ensoul Artifact or something similar (except it specifies it becomes an artifact creature, which would technically remove other types it might have, such as if it somehow became an enchantment).
TL;DR: No :)

Winding Constrictor: This is an awesome card. Mostly because I like the art... Anyway, no. The card itself will just need to watch for the energy manager token getting energy counters. It'll also need to watch for experience counters on the experience manager you made. Poison counters are actually placed on the player itself, and I don't if you can catch those using the normal COUNTERS_CHANGED trigger, so that might be a bit trickier... It'll need to be tested before we'll know either way.
_______________________________
Community Wad - Community Wad Website - How to Help and Report Bugs
Discord: discord.gg/4AXvHzW
User avatar
Xander9009
Programmer
 
Posts: 2905
Joined: 29 Jun 2013, 07:44
Location: Indiana, United States
Has thanked: 121 times
Been thanked: 445 times

Re: Community Wad

Postby RiiakShiNal » 04 Jan 2017, 13:08

Xander9009 wrote:Peacekeeper Colossus targets a vehicle other than itself and turns it into an artifact creature. That's it. While it does target a vehicle, and while vehicles do have their own method of becoming a creature, this isn't using or referencing that ability (crew) and is in fact completely separate. It's functionally identical to Ensoul Artifact or something similar (except it specifies it becomes an artifact creature, which would technically remove other types it might have, such as if it somehow became an enchantment).
TL;DR: No :)
Actually, Peacekeeper Colossus would need some changes to vehicles to be able to work properly as all it specifies is that the vehicle becomes an artifact creature, it does not specify the P/T that the card should become (which makes it different from Ensoul Artifact) so it has to at least read what the P/T should be from the vehicle it targets in some way. Otherwise it would likely become a 0/0 artifact creature and immediately head for the graveyard.

Xander9009 wrote:Winding Constrictor: This is an awesome card. Mostly because I like the art... Anyway, no. The card itself will just need to watch for the energy manager token getting energy counters. It'll also need to watch for experience counters on the experience manager you made. Poison counters are actually placed on the player itself, and I don't if you can catch those using the normal COUNTERS_CHANGED trigger, so that might be a bit trickier... It'll need to be tested before we'll know either way.
If I remember correctly (and I may not since it has been quite a while), but isn't using the COUNTERS_CHANGED trigger how thefiremind decided to track how many poison counters are on the players to begin with?
RiiakShiNal
Programmer
 
Posts: 2188
Joined: 16 May 2011, 21:37
Has thanked: 75 times
Been thanked: 497 times

Re: Community Wad

Postby Splinterverse2 » 04 Jan 2017, 13:12

RiiakShiNal wrote:
Xander9009 wrote:Peacekeeper Colossus targets a vehicle other than itself and turns it into an artifact creature. That's it. While it does target a vehicle, and while vehicles do have their own method of becoming a creature, this isn't using or referencing that ability (crew) and is in fact completely separate. It's functionally identical to Ensoul Artifact or something similar (except it specifies it becomes an artifact creature, which would technically remove other types it might have, such as if it somehow became an enchantment).
TL;DR: No :)
Actually, Peacekeeper Colossus would need some changes to vehicles to be able to work properly as all it specifies is that the vehicle becomes an artifact creature, it does not specify the P/T that the card should become (which makes it different from Ensoul Artifact) so it has to at least read what the P/T should be from the vehicle it targets in some way.

Xander9009 wrote:Winding Constrictor: This is an awesome card. Mostly because I like the art... Anyway, no. The card itself will just need to watch for the energy manager token getting energy counters. It'll also need to watch for experience counters on the experience manager you made. Poison counters are actually placed on the player itself, and I don't if you can catch those using the normal COUNTERS_CHANGED trigger, so that might be a bit trickier... It'll need to be tested before we'll know either way.
If I remember correctly (and I may not since it has been quite a while), but isn't using the COUNTERS_CHANGED trigger how thefiremind decided to track how many poison counters are on the players to begin with?
I think the vehicles are okay because the code for each of them has an inherent p/t that only becomes "active" when the card is a creature.

For the counters, I am not sure. I will dig into it when I start coding this one soon. I hope that is the case because the other two types of player counters can be tracked by triggering off of their managers.
Splinterverse2
 
Posts: 52
Joined: 20 Sep 2016, 13:52
Has thanked: 13 times
Been thanked: 0 time

Re: Community Wad

Postby Xander9009 » 04 Jan 2017, 13:26

RiiakShiNal wrote:
Xander9009 wrote:Peacekeeper Colossus targets a vehicle other than itself and turns it into an artifact creature. That's it. While it does target a vehicle, and while vehicles do have their own method of becoming a creature, this isn't using or referencing that ability (crew) and is in fact completely separate. It's functionally identical to Ensoul Artifact or something similar (except it specifies it becomes an artifact creature, which would technically remove other types it might have, such as if it somehow became an enchantment).
TL;DR: No :)
Actually, Peacekeeper Colossus would need some changes to vehicles to be able to work properly as all it specifies is that the vehicle becomes an artifact creature, it does not specify the P/T that the card should become (which makes it different from Ensoul Artifact) so it has to at least read what the P/T should be from the vehicle it targets in some way.
The P/T of a vehicle is an inherent value which automatically becomes active if it becomes a creature. The crew ability doesn't actually specify the P/T either, and it doesn't access it at all; it just makes it a creature, and the inherent P/T does the rest, the same way Peacekeeper Colossus should. The P/T just doesn't actually mean anything unless it's a creature, but how it becomes a creature isn't tied to the crew ability (according to the comp rules), so it should work without any modifications (according to how it's coded, which is with a normal pair of P/T tags).

RiiakShiNal wrote:
Xander9009 wrote:Winding Constrictor: This is an awesome card. Mostly because I like the art... Anyway, no. The card itself will just need to watch for the energy manager token getting energy counters. It'll also need to watch for experience counters on the experience manager you made. Poison counters are actually placed on the player itself, and I don't if you can catch those using the normal COUNTERS_CHANGED trigger, so that might be a bit trickier... It'll need to be tested before we'll know either way.
If I remember correctly (and I may not since it has been quite a while), but isn't using the COUNTERS_CHANGED trigger how thefiremind decided to track how many poison counters are on the players to begin with?
I don't remember that at all, so I have no idea. Do you mean it didn't work, so he decided to track it manually?
_______________________________
Community Wad - Community Wad Website - How to Help and Report Bugs
Discord: discord.gg/4AXvHzW
User avatar
Xander9009
Programmer
 
Posts: 2905
Joined: 29 Jun 2013, 07:44
Location: Indiana, United States
Has thanked: 121 times
Been thanked: 445 times

Re: Community Wad

Postby RiiakShiNal » 05 Jan 2017, 13:05

Xander9009 wrote:
RiiakShiNal wrote:
Xander9009 wrote:Winding Constrictor: This is an awesome card. Mostly because I like the art... Anyway, no. The card itself will just need to watch for the energy manager token getting energy counters. It'll also need to watch for experience counters on the experience manager you made. Poison counters are actually placed on the player itself, and I don't if you can catch those using the normal COUNTERS_CHANGED trigger, so that might be a bit trickier... It'll need to be tested before we'll know either way.
If I remember correctly (and I may not since it has been quite a while), but isn't using the COUNTERS_CHANGED trigger how thefiremind decided to track how many poison counters are on the players to begin with?
I don't remember that at all, so I have no idea. Do you mean it didn't work, so he decided to track it manually?
No, I mean I believe that keeping track of the changes by using COUNTERS_CHANGED is how he keeps track of the changes to the poison counters (if I remember correctly). Keeping track of the changes manually this way was required (again if I remember correctly) because there was no way to simply ask if the player had poison counters and how many.
RiiakShiNal
Programmer
 
Posts: 2188
Joined: 16 May 2011, 21:37
Has thanked: 75 times
Been thanked: 497 times

Re: Community Wad

Postby Xander9009 » 05 Jan 2017, 14:04

RiiakShiNal wrote:...
No, I mean I believe that keeping track of the changes by using COUNTERS_CHANGED is how he keeps track of the changes to the poison counters (if I remember correctly). Keeping track of the changes manually this way was required (again if I remember correctly) because there was no way to simply ask if the player had poison counters and how many.
Fantastic. Then it should work just fine. :)
_______________________________
Community Wad - Community Wad Website - How to Help and Report Bugs
Discord: discord.gg/4AXvHzW
User avatar
Xander9009
Programmer
 
Posts: 2905
Joined: 29 Jun 2013, 07:44
Location: Indiana, United States
Has thanked: 121 times
Been thanked: 445 times

Re: Community Wad

Postby WickedDeckDude » 06 Jan 2017, 04:44

Bug Report: Abolisher of Bloodlines' transform effect doesn't cause opponents to sacrifice creatures.

Side note, this was my first post and I just wanted to throw out a thanks to the mod team; you guys are great!
WickedDeckDude
 
Posts: 1
Joined: 06 Jan 2017, 04:23
Has thanked: 0 time
Been thanked: 1 time

Re: Community Wad

Postby Xander9009 » 06 Jan 2017, 04:53

WickedDeckDude wrote:Bug Report: Abolisher of Bloodlines' transform effect doesn't cause opponents to sacrifice creatures.

Side note, this was my first post and I just wanted to throw out a thanks to the mod team; you guys are great!
I'm not seeing the issue at a glance, so it'll probably have to wait until someone else does it or I get the chance to actually properly debug it. (For modders: transform triggers go on the opposite face's code.)
_______________________________
Community Wad - Community Wad Website - How to Help and Report Bugs
Discord: discord.gg/4AXvHzW
User avatar
Xander9009
Programmer
 
Posts: 2905
Joined: 29 Jun 2013, 07:44
Location: Indiana, United States
Has thanked: 121 times
Been thanked: 445 times

Re: Community Wad

Postby johnjayme » 06 Jan 2017, 06:27

I just updated my Community Wad today and now I have cards in game with no picture. Any ideas of what I can do to fix this. Thanks for the response in advance.
johnjayme
 
Posts: 2
Joined: 06 Jan 2017, 06:15
Has thanked: 1 time
Been thanked: 0 time

Re: Community Wad

Postby Xander9009 » 06 Jan 2017, 06:29

johnjayme wrote:I just updated my Community Wad today and now I have cards in game with no picture. Any ideas of what I can do to fix this. Thanks for the response in advance.
Make sure you have DATA_DLC_CW_ART_MAIN_1.wad through DATA_DLC_CW_ART_MAIN_21.wad and DATA_DLC_CW_ART_UPDATE.wad
_______________________________
Community Wad - Community Wad Website - How to Help and Report Bugs
Discord: discord.gg/4AXvHzW
User avatar
Xander9009
Programmer
 
Posts: 2905
Joined: 29 Jun 2013, 07:44
Location: Indiana, United States
Has thanked: 121 times
Been thanked: 445 times

Re: Community Wad

Postby johnjayme » 06 Jan 2017, 06:40

Thank you for the quick reply Xander9009 :)
johnjayme
 
Posts: 2
Joined: 06 Jan 2017, 06:15
Has thanked: 1 time
Been thanked: 0 time

Re: Community Wad

Postby MasterXploder7 » 07 Jan 2017, 02:33

Out of curiosity how do cards like Ghostly Prison behave with the AI? I also noticed having more than 1 of them caused their cost to stack, so say I had 4 Ghostly Prisons, 4 Propaganda and 4 Windborn Muse, would their affects stack so that the cost to attack with 1 creature appear as 48 ? (48 because that should be 16+16+16)
"Hate is an everlasting wellspring from which it is eternally sustained." - Nirkana Revenant
MasterXploder7
 
Posts: 293
Joined: 18 Jan 2014, 10:55
Has thanked: 28 times
Been thanked: 11 times

Re: Community Wad

Postby Splinterverse » 08 Jan 2017, 19:09

Just uploaded a few minor bug fixes as well as a few more non-MM versions of several lands.

Xander, I also send you a PM. :)
---------------------------------------------
The DOTP2014 CW is updated nightly between 11 PM and 12 AM EST.
Known Issues/Bugs |
Impossible Cards List | Update Your Land Pools
Splinterverse
 
Posts: 918
Joined: 04 Sep 2016, 13:32
Has thanked: 150 times
Been thanked: 76 times

Re: Community Wad

Postby Splinterverse » 08 Jan 2017, 19:12

MasterXploder7 wrote:Out of curiosity how do cards like Ghostly Prison behave with the AI? I also noticed having more than 1 of them caused their cost to stack, so say I had 4 Ghostly Prisons, 4 Propaganda and 4 Windborn Muse, would their affects stack so that the cost to attack with 1 creature appear as 48 ? (48 because that should be 16+16+16)
Their costs should stack (per the rulings for Propaganda -- http://www.mtgassist.com/cards/Commande ... a/rulings/).
---------------------------------------------
The DOTP2014 CW is updated nightly between 11 PM and 12 AM EST.
Known Issues/Bugs |
Impossible Cards List | Update Your Land Pools
Splinterverse
 
Posts: 918
Joined: 04 Sep 2016, 13:32
Has thanked: 150 times
Been thanked: 76 times

Re: Community Wad

Postby RiiakShiNal » 09 Jan 2017, 00:23

Splinterverse wrote:
MasterXploder7 wrote:Out of curiosity how do cards like Ghostly Prison behave with the AI? I also noticed having more than 1 of them caused their cost to stack, so say I had 4 Ghostly Prisons, 4 Propaganda and 4 Windborn Muse, would their affects stack so that the cost to attack with 1 creature appear as 48 ? (48 because that should be 16+16+16)
Their costs should stack (per the rulings for Propaganda -- http://www.mtgassist.com/cards/Commande ... a/rulings/).
Though the cost should be 24 ( {8} + {8} + {8}) since 4 copies * {2} = {8} not 16.
RiiakShiNal
Programmer
 
Posts: 2188
Joined: 16 May 2011, 21:37
Has thanked: 75 times
Been thanked: 497 times

PreviousNext

Return to 2014

Who is online

Users browsing this forum: Google [Bot] and 4 guests

Main Menu

User Menu

Our Partners


Who is online

In total there are 5 users online :: 1 registered, 0 hidden and 4 guests (based on users active over the past 10 minutes)
Most users ever online was 7303 on 15 Jul 2025, 20:46

Users browsing this forum: Google [Bot] and 4 guests

Login Form