From 07e297604b4b1be26f7d8432cd9aa5172909b389 Mon Sep 17 00:00:00 2001 From: North Date: Sat, 21 Jul 2012 11:32:45 +0300 Subject: [PATCH] [LGN] Added generated extended cards --- .../mage/sets/legions/AkromaAngelOfWrath.java | 54 +++++++++++++++++++ .../src/mage/sets/legions/EnormousBaloth.java | 52 ++++++++++++++++++ .../mage/sets/legions/FlamewaveInvoker.java | 54 +++++++++++++++++++ .../src/mage/sets/legions/FugitiveWizard.java | 52 ++++++++++++++++++ .../mage/sets/legions/StarlightInvoker.java | 54 +++++++++++++++++++ .../src/mage/sets/legions/WhiteKnight.java | 52 ++++++++++++++++++ .../src/mage/sets/legions/WindbornMuse.java | 52 ++++++++++++++++++ 7 files changed, 370 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/legions/AkromaAngelOfWrath.java create mode 100644 Mage.Sets/src/mage/sets/legions/EnormousBaloth.java create mode 100644 Mage.Sets/src/mage/sets/legions/FlamewaveInvoker.java create mode 100644 Mage.Sets/src/mage/sets/legions/FugitiveWizard.java create mode 100644 Mage.Sets/src/mage/sets/legions/StarlightInvoker.java create mode 100644 Mage.Sets/src/mage/sets/legions/WhiteKnight.java create mode 100644 Mage.Sets/src/mage/sets/legions/WindbornMuse.java diff --git a/Mage.Sets/src/mage/sets/legions/AkromaAngelOfWrath.java b/Mage.Sets/src/mage/sets/legions/AkromaAngelOfWrath.java new file mode 100644 index 0000000000..a0d1ad91e2 --- /dev/null +++ b/Mage.Sets/src/mage/sets/legions/AkromaAngelOfWrath.java @@ -0,0 +1,54 @@ +/* + * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, are + * permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this list of + * conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, this list + * of conditions and the following disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * The views and conclusions contained in the software and documentation are those of the + * authors and should not be interpreted as representing official policies, either expressed + * or implied, of BetaSteward_at_googlemail.com. + */ +package mage.sets.legions; + +import java.util.UUID; +import mage.Constants.Rarity; + +/** + * + * @author North + */ +public class AkromaAngelOfWrath extends mage.sets.timeshifted.AkromaAngelOfWrath { + + public AkromaAngelOfWrath(UUID ownerId) { + super(ownerId); + this.cardNumber = 1; + this.expansionSetCode = "LGN"; + this.rarity = Rarity.RARE; + } + + public AkromaAngelOfWrath(final AkromaAngelOfWrath card) { + super(card); + } + + @Override + public AkromaAngelOfWrath copy() { + return new AkromaAngelOfWrath(this); + } +} diff --git a/Mage.Sets/src/mage/sets/legions/EnormousBaloth.java b/Mage.Sets/src/mage/sets/legions/EnormousBaloth.java new file mode 100644 index 0000000000..3dfcd434fd --- /dev/null +++ b/Mage.Sets/src/mage/sets/legions/EnormousBaloth.java @@ -0,0 +1,52 @@ +/* + * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, are + * permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this list of + * conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, this list + * of conditions and the following disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * The views and conclusions contained in the software and documentation are those of the + * authors and should not be interpreted as representing official policies, either expressed + * or implied, of BetaSteward_at_googlemail.com. + */ +package mage.sets.legions; + +import java.util.UUID; + +/** + * + * @author North + */ +public class EnormousBaloth extends mage.sets.magic2010.EnormousBaloth { + + public EnormousBaloth(UUID ownerId) { + super(ownerId); + this.cardNumber = 125; + this.expansionSetCode = "LGN"; + } + + public EnormousBaloth(final EnormousBaloth card) { + super(card); + } + + @Override + public EnormousBaloth copy() { + return new EnormousBaloth(this); + } +} diff --git a/Mage.Sets/src/mage/sets/legions/FlamewaveInvoker.java b/Mage.Sets/src/mage/sets/legions/FlamewaveInvoker.java new file mode 100644 index 0000000000..eaac6b5256 --- /dev/null +++ b/Mage.Sets/src/mage/sets/legions/FlamewaveInvoker.java @@ -0,0 +1,54 @@ +/* + * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, are + * permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this list of + * conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, this list + * of conditions and the following disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * The views and conclusions contained in the software and documentation are those of the + * authors and should not be interpreted as representing official policies, either expressed + * or implied, of BetaSteward_at_googlemail.com. + */ +package mage.sets.legions; + +import java.util.UUID; +import mage.Constants.Rarity; + +/** + * + * @author North + */ +public class FlamewaveInvoker extends mage.sets.tenth.FlamewaveInvoker { + + public FlamewaveInvoker(UUID ownerId) { + super(ownerId); + this.cardNumber = 92; + this.expansionSetCode = "LGN"; + this.rarity = Rarity.COMMON; + } + + public FlamewaveInvoker(final FlamewaveInvoker card) { + super(card); + } + + @Override + public FlamewaveInvoker copy() { + return new FlamewaveInvoker(this); + } +} diff --git a/Mage.Sets/src/mage/sets/legions/FugitiveWizard.java b/Mage.Sets/src/mage/sets/legions/FugitiveWizard.java new file mode 100644 index 0000000000..674f0100ad --- /dev/null +++ b/Mage.Sets/src/mage/sets/legions/FugitiveWizard.java @@ -0,0 +1,52 @@ +/* + * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, are + * permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this list of + * conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, this list + * of conditions and the following disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * The views and conclusions contained in the software and documentation are those of the + * authors and should not be interpreted as representing official policies, either expressed + * or implied, of BetaSteward_at_googlemail.com. + */ +package mage.sets.legions; + +import java.util.UUID; + +/** + * + * @author North + */ +public class FugitiveWizard extends mage.sets.tenth.FugitiveWizard { + + public FugitiveWizard(UUID ownerId) { + super(ownerId); + this.cardNumber = 38; + this.expansionSetCode = "LGN"; + } + + public FugitiveWizard(final FugitiveWizard card) { + super(card); + } + + @Override + public FugitiveWizard copy() { + return new FugitiveWizard(this); + } +} diff --git a/Mage.Sets/src/mage/sets/legions/StarlightInvoker.java b/Mage.Sets/src/mage/sets/legions/StarlightInvoker.java new file mode 100644 index 0000000000..7a7b42def3 --- /dev/null +++ b/Mage.Sets/src/mage/sets/legions/StarlightInvoker.java @@ -0,0 +1,54 @@ +/* + * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, are + * permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this list of + * conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, this list + * of conditions and the following disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * The views and conclusions contained in the software and documentation are those of the + * authors and should not be interpreted as representing official policies, either expressed + * or implied, of BetaSteward_at_googlemail.com. + */ +package mage.sets.legions; + +import java.util.UUID; +import mage.Constants.Rarity; + +/** + * + * @author North + */ +public class StarlightInvoker extends mage.sets.tenth.StarlightInvoker { + + public StarlightInvoker(UUID ownerId) { + super(ownerId); + this.cardNumber = 20; + this.expansionSetCode = "LGN"; + this.rarity = Rarity.COMMON; + } + + public StarlightInvoker(final StarlightInvoker card) { + super(card); + } + + @Override + public StarlightInvoker copy() { + return new StarlightInvoker(this); + } +} diff --git a/Mage.Sets/src/mage/sets/legions/WhiteKnight.java b/Mage.Sets/src/mage/sets/legions/WhiteKnight.java new file mode 100644 index 0000000000..c4b00ab41d --- /dev/null +++ b/Mage.Sets/src/mage/sets/legions/WhiteKnight.java @@ -0,0 +1,52 @@ +/* + * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, are + * permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this list of + * conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, this list + * of conditions and the following disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * The views and conclusions contained in the software and documentation are those of the + * authors and should not be interpreted as representing official policies, either expressed + * or implied, of BetaSteward_at_googlemail.com. + */ +package mage.sets.legions; + +import java.util.UUID; + +/** + * + * @author North + */ +public class WhiteKnight extends mage.sets.magic2010.WhiteKnight { + + public WhiteKnight(UUID ownerId) { + super(ownerId); + this.cardNumber = 27; + this.expansionSetCode = "LGN"; + } + + public WhiteKnight(final WhiteKnight card) { + super(card); + } + + @Override + public WhiteKnight copy() { + return new WhiteKnight(this); + } +} diff --git a/Mage.Sets/src/mage/sets/legions/WindbornMuse.java b/Mage.Sets/src/mage/sets/legions/WindbornMuse.java new file mode 100644 index 0000000000..09119ef00b --- /dev/null +++ b/Mage.Sets/src/mage/sets/legions/WindbornMuse.java @@ -0,0 +1,52 @@ +/* + * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, are + * permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this list of + * conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, this list + * of conditions and the following disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * The views and conclusions contained in the software and documentation are those of the + * authors and should not be interpreted as representing official policies, either expressed + * or implied, of BetaSteward_at_googlemail.com. + */ +package mage.sets.legions; + +import java.util.UUID; + +/** + * + * @author North + */ +public class WindbornMuse extends mage.sets.tenth.WindbornMuse { + + public WindbornMuse(UUID ownerId) { + super(ownerId); + this.cardNumber = 28; + this.expansionSetCode = "LGN"; + } + + public WindbornMuse(final WindbornMuse card) { + super(card); + } + + @Override + public WindbornMuse copy() { + return new WindbornMuse(this); + } +}