It is currently 07 Jul 2021, 22:56
   
Text Size

Top Ten Wishlist

Continuing Development of MicroProse's Magic: The Gathering!

Moderators: BAgate, drool66, stassy, Aswan jaguar, gmzombie, CCGHQ Admins

Re: Top Ten Wishlist

Postby aww1979 » 06 Jul 2010, 04:21

Yeah :) That image is just so awesome :D Though it looks more like some badass 8/8 legendary wizard than a 2/2 meddling mage, but that's why I like it!
aww1979
Tester
 
Posts: 1717
Joined: 03 Mar 2009, 19:36
Has thanked: 0 time
Been thanked: 2 times

Re: Top Ten Wishlist

Postby Tyranix95 » 07 Jul 2010, 03:02

... I found this incredible image for Meddling Mage. My 'request' is that it get added as an alternate (or main) image...
Hey!

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>) :P / :lol:

Ok; for real now. I think that Meddling Mage artwork looks totally cool and would look great in the game.

Good idea magic man. :supz:
Tyranix95
 
Posts: 83
Joined: 19 May 2010, 03:01
Has thanked: 0 time
Been thanked: 0 time

Re: Top Ten Wishlist

Postby 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. :x 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

Postby 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.
Last edited by aww1979 on 07 Jul 2010, 23:55, edited 1 time in total.
aww1979
Tester
 
Posts: 1717
Joined: 03 Mar 2009, 19:36
Has thanked: 0 time
Been thanked: 2 times

Re: Top Ten Wishlist

Postby Tyranix95 » 07 Jul 2010, 23:54

Ok, I'll look for that. Thanks. :D
Tyranix95
 
Posts: 83
Joined: 19 May 2010, 03:01
Has thanked: 0 time
Been thanked: 0 time

Re: Top Ten Wishlist

Postby jatill » 08 Jul 2010, 12:01

So what I'm hearing is "code Uril!"
jatill
DEVELOPER
 
Posts: 2118
Joined: 24 Feb 2009, 16:35
Has thanked: 5 times
Been thanked: 17 times

Re: Top Ten Wishlist

Postby Tyranix95 » 08 Jul 2010, 23:00

Adding new cards is always a 8) :idea: . =D>

I'll :shock: for bugs! :)
Tyranix95
 
Posts: 83
Joined: 19 May 2010, 03:01
Has thanked: 0 time
Been thanked: 0 time

Re: Top Ten Wishlist

Postby 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;

}
discoransom
 
Posts: 141
Joined: 08 Sep 2009, 20:44
Has thanked: 0 time
Been thanked: 0 time

Re: Top Ten Wishlist

Postby 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.
aww1979
Tester
 
Posts: 1717
Joined: 03 Mar 2009, 19:36
Has thanked: 0 time
Been thanked: 2 times

Re: Top Ten Wishlist

Postby discoransom » 10 Jul 2010, 12:22

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.
*ears perk up*

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

Postby 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.
aww1979
Tester
 
Posts: 1717
Joined: 03 Mar 2009, 19:36
Has thanked: 0 time
Been thanked: 2 times

Re: Top Ten Wishlist

Postby 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...
thedrigo
 
Posts: 224
Joined: 28 Feb 2009, 15:46
Has thanked: 23 times
Been thanked: 1 time

Re: Top Ten Wishlist

Postby 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)
aww1979
Tester
 
Posts: 1717
Joined: 03 Mar 2009, 19:36
Has thanked: 0 time
Been thanked: 2 times

Re: Top Ten Wishlist

Postby 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)
Brandon822
 
Posts: 69
Joined: 12 Sep 2009, 09:54
Location: Finland
Has thanked: 0 time
Been thanked: 0 time

Re: Top Ten Wishlist

Postby mzepol » 15 Jul 2010, 01:59

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...
Yeah, Karn would be a nice addition. It would complete STAX.
User avatar
mzepol
 
Posts: 54
Joined: 09 Jun 2010, 16:13
Has thanked: 8 times
Been thanked: 0 time

PreviousNext

Return to ManaLink 3.0

Who is online

Users browsing this forum: No registered users and 7 guests


Who is online

In total there are 7 users online :: 0 registered, 0 hidden and 7 guests (based on users active over the past 10 minutes)
Most users ever online was 1922 on 07 Jun 2021, 06:01

Users browsing this forum: No registered users and 7 guests

Login Form