-
Notifications
You must be signed in to change notification settings - Fork 123
Open
Description
Hi. I am making a bot that uses Spirit Charmers Structure Deck. I can't figure out how to Special Summon Awakening of the Possessed - Nefariouser Archfiend from the deck by tributing 1 spellcaster and 1 level 4 or lower Earth monster on the bot's field.
I have this code currently and it seems SpSummon doesn't seem to work:
[Deck("SpiritCharmers", "AI_SDSpiritCharmers")]
public class SpiritCharmers : DefaultExecutor
{
public SpiritCharmers(GameAI ai, Duel duel)
: base(ai, duel)
{
...
AddExecutor(ExecutorType.SpSummon, CardId.AwakeningNefariouserArch, AwakeningNefariouserArch_Effect);
...
}
public bool AwakeningNefariouserArch_Effect()
{
if (ActivateDescription == Util.GetStringId(CardId.AwakeningNefariouserArch, 0))
{
AI.SelectCard(CardId.AwakeningNefariouserArch);
return true;
}
return false;
}
}
The bot special summons but only if Awakening of the Possessed - Nefariouser Archfiend is on the hand which is not really productive. Any help would be appreciated.
Thanks!
Metadata
Metadata
Assignees
Labels
No labels