tmxk2012917 wrote:a bug of
Titan's Presence:
I could target any permanent and was not asked to reveal a creature. As a result, It could not exile anything
Fixed.
Splinterverse wrote:Finished coding for today; all cards referenced are from the missing cards list.
Bludgeon Brawl http://pastebin.com/SCcbiQnP Ability appears on artifacts. When Equip is clicked, the mana is paid. But it doesn't attach. Could it be that the card type is not able to attach?
In addition to what thefiremind said, since CMCs are limited, it'd be a lot better visually if the ability were granted based on the CMC so the text shows properly. For instance,
Time Vault would be given "Equip

" and "Equipped creature gets +2/+0." Because it's to appease my own OCD, I've put in the effort do just that.
However, there was a problem. The problem was that by granting the equipment subtype (which is done on layer 4), the filter no longer included those cards by the time the layer 6 ability granting came around. This means they were granted the equipment subtype but not the abilities. In order to fix it, I altered the code to use no filter blocks. I stored the cards being given the equipment subtype in a DC and had the layer 6 CA iterate that DC.
There were two other problems I encountered, as well. 1: EffectDC():Get_Chest(0) was always nil on layer 6 despite being successfully created and worked with on layer 4. I'm not sure what was going on here, but when I changed to LinkedDC() it stopped, so it was probably some subtlety of the engine I'm not aware of (or am just overlooking). 2: A card attached to another card uses the tap status of the parent for display. It functionally works fine, but visually appears incorrect. I've given it a very simple ability at the moment with nothing more than "{T}" as a granted ability if it's tapped. This means that when you zoom in and the abilities that require tapping as a cost don't highlight, you can see why. However, with nothing more than the symbol, it's not ideal. It should ideally say, in each language, "This card is currently tapped." or something to that effect. It was just a two minute workaround, though.
The card works, but because I altered so much of it to make it work, I added myself as an editor. I usually don't since the alterations here are simple and quick, but since the idea behind the editors section is to know who to talk to when it breaks, it seemed necessary.
Normally, I'd just toss it in a spoiler, but it's actually too long for the forum...
http://pastebin.com/NeDHuY8W