mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
[DSK] Implement Greenhouse / Rickety Gazebo
This commit is contained in:
parent
caba72094e
commit
b9052103bb
3 changed files with 52 additions and 8 deletions
|
|
@ -3,7 +3,7 @@ package mage.cards.[=$cardNameFirstLetter=];
|
|||
import java.util.UUID;
|
||||
[=$abilitiesImports=]
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.cards.SplitCard;
|
||||
import mage.cards.RoomCard;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SpellAbilityType;
|
||||
|
||||
|
|
@ -11,17 +11,12 @@ import mage.constants.SpellAbilityType;
|
|||
*
|
||||
* @author [=$author=]
|
||||
*/
|
||||
public final class [=$className=] extends SplitCard {
|
||||
public final class [=$className=] extends RoomCard {
|
||||
public [=$className=](UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{[=$type=]}, new CardType[]{??}, "[=$manaCost=]", "??", SpellAbilityType.SPLIT_AFTERMATH);
|
||||
[=$subType=][=$colors=]
|
||||
super(ownerId, setInfo, new CardType[]{[=$type=]}, "[=$manaCost=]", "??");
|
||||
[= if ($power || $power eq 0) {
|
||||
$OUT .= "\n this.power = new MageInt($power);";
|
||||
$OUT .= "\n this.toughness = new MageInt($toughness);";} =][=$abilities=]
|
||||
// getLeftHalfCard().getSpellAbility().addEffect(new Effect());
|
||||
|
||||
// getRightHalfCard().getSpellAbility().addEffect(new Effect());
|
||||
|
||||
}
|
||||
|
||||
private [=$className=](final [=$className=] card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue