Top Ten Wishlist
Continuing Development of MicroProse's Magic: The Gathering!
Moderators: BAgate, drool66, stassy, Aswan jaguar, gmzombie, CCGHQ Admins
Re: Top Ten Wishlist
by aww1979 » 06 Jul 2010, 04:21
Yeah
That image is just so awesome
Though it looks more like some badass 8/8 legendary wizard than a 2/2 meddling mage, but that's why I like it!
Re: Top Ten Wishlist
by Tyranix95 » 07 Jul 2010, 03:02
Hey!... I found this incredible image for Meddling Mage. My 'request' is that it get added as an alternate (or main) image...
This Meddling Mage looks way hotter than carrie (1976).
"If [the Exorcist] made you shudder, [Meddling Mage] will make you scream." "If only they knew she had the power." "Take [Meddling Mage] to the prom. I dare you!" (Tag Lines, carrie (1976), <imdb>)
Ok; for real now. I think that Meddling Mage artwork looks totally cool and would look great in the game.
Good idea magic man.
- Tyranix95
- Posts: 83
- Joined: 19 May 2010, 03:01
- Has thanked: 0 time
- Been thanked: 0 time
Re: Top Ten Wishlist
by Tyranix95 » 07 Jul 2010, 23:51
Hey, now I messing around with a Rabid Wombat deck. The computer keeps casting Swords to Plowshares on my Wombats.
Is Spectral Cloak in the game?
Last edited by Tyranix95 on 07 Jul 2010, 23:53, edited 1 time in total.
- Tyranix95
- Posts: 83
- Joined: 19 May 2010, 03:01
- Has thanked: 0 time
- Been thanked: 0 time
Re: Top Ten Wishlist
by aww1979 » 07 Jul 2010, 23:52
I've got another dozen or so but I'm going to wait and see how I do in the tournament, so I look less greedy when I ask for a few of them! Mostly they are from Alara Reborn for some reason; I found most of them by clicking on 'random card' in gatherer a million times.
edit: Re: Tyranix: nope but Diplomatic Immunity is, I think.
edit again: Yup it is, and so is Zephid's Embrace. Those are the only enchant creatures coded that give shroud. The problem with doing that is you cannot put further enchantments on the wombat, without sneaky tricks like Crown of the Ages or Enchantment Alteration, and I'm not even sure that's legal in modern rules, though it once was.
edit: Re: Tyranix: nope but Diplomatic Immunity is, I think.
edit again: Yup it is, and so is Zephid's Embrace. Those are the only enchant creatures coded that give shroud. The problem with doing that is you cannot put further enchantments on the wombat, without sneaky tricks like Crown of the Ages or Enchantment Alteration, and I'm not even sure that's legal in modern rules, though it once was.
Last edited by aww1979 on 07 Jul 2010, 23:55, edited 1 time in total.
- Tyranix95
- Posts: 83
- Joined: 19 May 2010, 03:01
- Has thanked: 0 time
- Been thanked: 0 time
Re: Top Ten Wishlist
by jatill » 08 Jul 2010, 12:01
So what I'm hearing is "code Uril!"
Apps by jatill: http://www.slightlymagic.net/wiki/Other_Apps_by_jatill
Re: Top Ten Wishlist
by Tyranix95 » 08 Jul 2010, 23:00
Adding new cards is always a
.
I'll
for bugs! 
I'll
- Tyranix95
- Posts: 83
- Joined: 19 May 2010, 03:01
- Has thanked: 0 time
- Been thanked: 0 time
Re: Top Ten Wishlist
by discoransom » 09 Jul 2010, 11:18
I'd love to see Mystical Teachings (or at least an approximation that doesn't tutor up flash cards if necessary). I think it can be glued together with Mystical Tutor (edit: or better yet Merchant Scroll) and Chainer's Edict. I'm a complete noob but I think it might look something sort of like this (probably have this quite wrong though):
int card_mystical_teachings(int player, int card, event_t event){
//return type_tutor(player, card, event, TYPE_INSTANT | TYPE_INTERRUPT, 1, 0);
if( event == EVENT_CAN_CAST ){
return 1;
}
else if(event == EVENT_GRAVEYARD_ABILITY){
if( (player) && has_mana_multi(player, 5, 1, 0, 0, 0, 0) ){
return 1;
}
}
else if( event == EVENT_PAY_FLASHBACK_COSTS ){
charge_mana_multi(player, 5, 1, 0, 0, 0, 0);
}
else if( event == EVENT_RESOLVE_SPELL ){
tutor1(player, TYPE_INSTANT | TYPE_INTERRUPT, &default_tutor_1, TUTOR_DECK)
}
}
if( get_flashback() ){
kill_card(player, card, KILL_REMOVE);
}
else{
kill_card(player, card, KILL_DESTROY);
}
}
return 0;
}
int card_mystical_teachings(int player, int card, event_t event){
//return type_tutor(player, card, event, TYPE_INSTANT | TYPE_INTERRUPT, 1, 0);
if( event == EVENT_CAN_CAST ){
return 1;
}
else if(event == EVENT_GRAVEYARD_ABILITY){
if( (player) && has_mana_multi(player, 5, 1, 0, 0, 0, 0) ){
return 1;
}
}
else if( event == EVENT_PAY_FLASHBACK_COSTS ){
charge_mana_multi(player, 5, 1, 0, 0, 0, 0);
}
else if( event == EVENT_RESOLVE_SPELL ){
tutor1(player, TYPE_INSTANT | TYPE_INTERRUPT, &default_tutor_1, TUTOR_DECK)
}
}
if( get_flashback() ){
kill_card(player, card, KILL_REMOVE);
}
else{
kill_card(player, card, KILL_DESTROY);
}
}
return 0;
}
- discoransom
- Posts: 141
- Joined: 08 Sep 2009, 20:44
- Has thanked: 0 time
- Been thanked: 0 time
Re: Top Ten Wishlist
by aww1979 » 10 Jul 2010, 00:28
Actually, Mystical Teachings is probably much easier than that. By purposely exploting the bug that already lets you use Merchant Scroll to get a (blue) flash card like Plumeveil, you probably wouldn't have to do much coding at all.
Re: Top Ten Wishlist
by discoransom » 10 Jul 2010, 12:22
*ears perk up*aww1979 wrote:Actually, Mystical Teachings is probably much easier than that. By purposely exploting the bug that already lets you use Merchant Scroll to get a (blue) flash card like Plumeveil, you probably wouldn't have to do much coding at all.
oh really? that does sound easy...I'll have to fool around with this...I lust for that card.
- discoransom
- Posts: 141
- Joined: 08 Sep 2009, 20:44
- Has thanked: 0 time
- Been thanked: 0 time
Re: Top Ten Wishlist
by aww1979 » 10 Jul 2010, 14:49
Even if it isn't that easy, approximating it to just find an instant (and not flash cards) should be extremely easy, given that virtually identical cards already exist, and flashback is already coded.
Re: Top Ten Wishlist
by thedrigo » 10 Jul 2010, 23:40
I dunno if it's possible or if anybody has thought of this but wouldn't it be nice to have Karn, Silver Golem? I'm just saying...
Re: Top Ten Wishlist
by aww1979 » 11 Jul 2010, 15:56
I don't see why he isn't possible, since his activated ability already exists in Animate Artifact and Xenic Poltergeist, and his triggered ability exists on cards like Giant Badger or Cave People. (tweaking the numbers, obviously, but that's not hard)
Re: Top Ten Wishlist
by Brandon822 » 13 Jul 2010, 22:32
Well, I again blew my chances for getting card coded by Jatill. So let's put here some new interesting cards from core set 2011 that could be useful/fun in manalink.
Knight Exemplar(we have LOTS of knights)
War Priest of Thune(Enchantment removal by creature)
Mass Polymorph(Some crazy things may happen with this card)
Stormtide Leviathan(I think this is greatly designed card, lots of uses. high CC though and vulnerable)
Phylactery Lich(Competitor for Phyrexian Negator)
Reassembling Skeleton(I'll be back)
Manic Vandal(Red ape)
Destructive Force(Chaos and mayhem)
Fauna Shaman(creature(elf) Survival of the Fittest)
Brittle Effigy(Exile spell for every color, bit high activating cost though)
And the five Titans(Very powerful cards, well blue one should have shroud)
Knight Exemplar(we have LOTS of knights)
War Priest of Thune(Enchantment removal by creature)
Mass Polymorph(Some crazy things may happen with this card)
Stormtide Leviathan(I think this is greatly designed card, lots of uses. high CC though and vulnerable)
Phylactery Lich(Competitor for Phyrexian Negator)
Reassembling Skeleton(I'll be back)
Manic Vandal(Red ape)
Destructive Force(Chaos and mayhem)
Fauna Shaman(creature(elf) Survival of the Fittest)
Brittle Effigy(Exile spell for every color, bit high activating cost though)
And the five Titans(Very powerful cards, well blue one should have shroud)
- Brandon822
- Posts: 69
- Joined: 12 Sep 2009, 09:54
- Location: Finland
- Has thanked: 0 time
- Been thanked: 0 time
Re: Top Ten Wishlist
by mzepol » 15 Jul 2010, 01:59
Yeah, Karn would be a nice addition. It would complete STAX.thedrigo wrote:I dunno if it's possible or if anybody has thought of this but wouldn't it be nice to have Karn, Silver Golem? I'm just saying...
Who is online
Users browsing this forum: No registered users and 7 guests
