Tabnine Logo
RecruiterEffect.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
mage.abilities.effects.common.RecruiterEffect
constructor

Best Java code snippets using mage.abilities.effects.common.RecruiterEffect.<init> (Showing top 4 results out of 315)

origin: magefree/mage

@Override
public RecruiterEffect copy() {
  return new RecruiterEffect(this);
}
origin: magefree/mage

public GoblinRecruiter(UUID ownerId, CardSetInfo setInfo) {
  super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{R}");
  this.subtype.add(SubType.GOBLIN);
  this.power = new MageInt(1);
  this.toughness = new MageInt(1);
  // When Goblin Recruiter enters the battlefield, search your library for any number of Goblin cards and reveal those cards. Shuffle your library, then put them on top of it in any order.
  this.addAbility(new EntersBattlefieldTriggeredAbility(new RecruiterEffect(filter), false));
}
origin: magefree/mage

public DwarvenRecruiter(UUID ownerId, CardSetInfo setInfo) {
  super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{R}");
  this.subtype.add(SubType.DWARF);
  this.power = new MageInt(2);
  this.toughness = new MageInt(2);
  // When Dwarven Recruiter enters the battlefield, search your library for any number of Dwarf cards and reveal those cards. Shuffle your library, then put them on top of it in any order.
  this.addAbility(new EntersBattlefieldTriggeredAbility(new RecruiterEffect(filter), false));
}
origin: magefree/mage

public ScoutingTrek(UUID ownerId, CardSetInfo setInfo) {
  super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{1}{G}");
  // Search your library for any number of basic land cards. Reveal those cards, then shuffle your library and put them on top of it.
  this.getSpellAbility().addEffect(new RecruiterEffect(new FilterBasicLandCard("basic land cards")));
}
mage.abilities.effects.commonRecruiterEffect<init>

Popular methods of RecruiterEffect

    Popular in Java

    • Updating database using SQL prepared statement
    • notifyDataSetChanged (ArrayAdapter)
    • runOnUiThread (Activity)
    • getExternalFilesDir (Context)
    • OutputStream (java.io)
      A writable sink for bytes.Most clients will use output streams that write data to the file system (
    • Format (java.text)
      The base class for all formats. This is an abstract base class which specifies the protocol for clas
    • Enumeration (java.util)
      A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
    • Callable (java.util.concurrent)
      A task that returns a result and may throw an exception. Implementors define a single method with no
    • JPanel (javax.swing)
    • Option (scala)
    • Top plugins for WebStorm
    Tabnine Logo
    • Products

      Search for Java codeSearch for JavaScript code
    • IDE Plugins

      IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
    • Company

      About UsContact UsCareers
    • Resources

      FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
    Get Tabnine for your IDE now