It is currently 24 Apr 2024, 16:47
   
Text Size

Extort decks....

Moderator: CCGHQ Admins

Extort decks....

Postby Rickycoe123 » 24 May 2013, 19:09

Im a huge fan of extort.... IRL, I somehow manage to gain all the heat from my opponents but yet come out trumps...


Has anyone managed to fix/create the coding for extort or even to go as far to say create a deck with them.
Rickycoe123
 
Posts: 138
Joined: 14 Mar 2013, 22:44
Has thanked: 1 time
Been thanked: 15 times

Re: Extort decks....

Postby NEMESiS » 24 May 2013, 19:11

User avatar
NEMESiS
 
Posts: 460
Joined: 03 Jan 2013, 04:02
Location: Pools of Becoming
Has thanked: 70 times
Been thanked: 21 times

Re: Extort decks....

Postby Rickycoe123 » 24 May 2013, 19:35

Nemesis.... i love you.
I will try it out.

I am loving the ipad conversion tool... magic on the busy train to work with custom decks..... cant beat it!
Rickycoe123
 
Posts: 138
Joined: 14 Mar 2013, 22:44
Has thanked: 1 time
Been thanked: 15 times

Re: Extort decks....

Postby thefiremind » 24 May 2013, 19:55

I don't think I'll make an Extort deck really soon, but I had a nice idea about it so I'll share it:
Code: Select all
  <TRIGGERED_ABILITY dangerous="1">
    <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Extort]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Extorsion]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Extorsionar.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Abnötigen]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Estorsione]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[強請]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[착취]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[Вымогательство]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[Extorquir]]></LOCALISED_TEXT>
    <TRIGGER value="SPELL_PLAYED" simple_qualifier="objectyoucontrol" />
    <RESOLUTION_TIME_ACTION>
    local player = EffectController()
    if player:CanAfford("{W/B}") == 1 then
       player:BeginNewMultipleChoice()
       if player:CanAfford("{W}") == 1 then
          player:AddMultipleChoiceAnswer( "CARD_QUERY_OPTION_PAY_W" )
       else
          player:AddMultipleChoiceAnswer( "CARD_QUERY_OPTION_PAY_W", false )
       end
       if player:CanAfford("{B}") == 1 then
          player:AddMultipleChoiceAnswer( "CARD_QUERY_OPTION_PAY_B" )
       else
          player:AddMultipleChoiceAnswer( "CARD_QUERY_OPTION_PAY_B", false )
       end
       player:AddMultipleChoiceAnswer( "CARD_QUERY_DO_NOTHING" )
       player:AskMultipleChoiceQuestion( "CARD_QUERY_MC_EXTORT" )
    end
    </RESOLUTION_TIME_ACTION>
    <RESOLUTION_TIME_ACTION>
    local player = EffectController()
    if player:CanAfford("{W/B}") == 1 then
       local decision = Object():GetMultipleChoiceResult()
       if decision ~= 2 then
          if decision == 0 and player:CanAfford("{W}") == 1 then
             player:TapLand("{W}")
          elseif decision == 1 and player:CanAfford("{B}") == 1 then
             player:TapLand("{B}")
          end
          local lifeloss = 0
          for i=0,MTG():GetNumberOfPlayers()-1 do
             local currentPlayer = MTG():GetNthPlayer(i)
             if currentPlayer ~= nil and currentPlayer:GetTeam() ~= player:GetTeam() then
                currentPlayer:LoseLife(1)
                lifeloss = lifeloss + 1
             end
          end
          player:GainLife(lifeloss)
       end
    end
    </RESOLUTION_TIME_ACTION>
  </TRIGGERED_ABILITY>
This version of extort lets you choose if you want to pay with white or black mana. I'm not sure if conditional costs let you use CTRL (I have never tried :lol:), but if they don't, this would allow more control over the available mana.
< Former DotP 2012/2013/2014 modder >
Currently busy with life...
User avatar
thefiremind
Programmer
 
Posts: 3515
Joined: 07 Nov 2011, 10:55
Has thanked: 118 times
Been thanked: 721 times

Re: Extort decks....

Postby Rickycoe123 » 24 May 2013, 20:30

just checked the deck out... does it limit the amount of extort?? there is only one or two extort cards..

I was thinking about more of low casting extort... how would i implement that code to select mana?
Rickycoe123
 
Posts: 138
Joined: 14 Mar 2013, 22:44
Has thanked: 1 time
Been thanked: 15 times

Re: Extort decks....

Postby NEMESiS » 24 May 2013, 21:25

Well, it has extort, I didn't know you wanted 100% extort cards.
User avatar
NEMESiS
 
Posts: 460
Joined: 03 Jan 2013, 04:02
Location: Pools of Becoming
Has thanked: 70 times
Been thanked: 21 times

Re: Extort decks....

Postby drleg3nd » 24 May 2013, 21:54

ya can chk out my extort decks ..the fixed possiblity storm and black esper extort
drleg3nd
 
Posts: 528
Joined: 14 May 2012, 20:05
Has thanked: 5 times
Been thanked: 30 times

Re: Extort decks....

Postby Kieran » 24 May 2013, 23:52

I've added an Extortion deck to Kieran: Taking request thread Rickycoe123. Go ahead and give it a try. Also, drleg3nd extort decks are cool. I encourage you to try 'em.
Kieran
 
Posts: 232
Joined: 03 Nov 2012, 01:09
Has thanked: 21 times
Been thanked: 16 times

Re: Extort decks....

Postby nivmizzet1 » 25 May 2013, 13:36

I'll be posting an extort deck in my DLC thread soon.
nivmizzet1
 
Posts: 613
Joined: 21 Mar 2013, 10:10
Has thanked: 100 times
Been thanked: 25 times

Re: Extort decks....

Postby Master Necro » 25 May 2013, 15:14

User avatar
Master Necro
 
Posts: 259
Joined: 24 Apr 2013, 18:25
Has thanked: 83 times
Been thanked: 21 times

Re: Extort decks....

Postby Rickycoe123 » 25 May 2013, 19:51

Why was it so hard to find these previously lol.. maybe the search function should look harder :)

You guys are actually pretty cool. :)
Rickycoe123
 
Posts: 138
Joined: 14 Mar 2013, 22:44
Has thanked: 1 time
Been thanked: 15 times

Re: Extort decks....

Postby Master Necro » 25 May 2013, 20:25

Rickycoe123 wrote:You guys are actually pretty cool. :)
You sound surprised. :lol:
User avatar
Master Necro
 
Posts: 259
Joined: 24 Apr 2013, 18:25
Has thanked: 83 times
Been thanked: 21 times

Re: Extort decks....

Postby Rickycoe123 » 26 May 2013, 10:22

xDDD i just assumed (according by other forums on other topics) people can be unhelpful and.... pretty mean :P (Damn trolls).

but every question or request has been taken with respect. and no one has given up :)

Ive made more DLC from pc to ipad.. if anyone needs/wants them... holla!
Rickycoe123
 
Posts: 138
Joined: 14 Mar 2013, 22:44
Has thanked: 1 time
Been thanked: 15 times


Return to 2013

Who is online

Users browsing this forum: No registered users and 4 guests


Who is online

In total there are 4 users online :: 0 registered, 0 hidden and 4 guests (based on users active over the past 10 minutes)
Most users ever online was 4143 on 23 Jan 2024, 08:21

Users browsing this forum: No registered users and 4 guests

Login Form