From 06d14c4388368c20c25d394a982a162d13c896f9 Mon Sep 17 00:00:00 2001 From: fwannmacher Date: Wed, 20 Jul 2016 14:32:01 -0300 Subject: [PATCH] - Fixed Issue #1994: Added missing cards --- .../{UrzasMine.java => UrzasMine1.java} | 10 ++-- .../src/mage/sets/chronicles/UrzasMine2.java | 51 +++++++++++++++++++ .../src/mage/sets/chronicles/UrzasMine3.java | 51 +++++++++++++++++++ .../src/mage/sets/chronicles/UrzasMine4.java | 51 +++++++++++++++++++ ...sPowerPlant.java => UrzasPowerPlant1.java} | 10 ++-- .../sets/chronicles/UrzasPowerPlant2.java | 51 +++++++++++++++++++ .../sets/chronicles/UrzasPowerPlant3.java | 51 +++++++++++++++++++ .../sets/chronicles/UrzasPowerPlant4.java | 51 +++++++++++++++++++ .../{UrzasTower.java => UrzasTower1.java} | 10 ++-- .../src/mage/sets/chronicles/UrzasTower2.java | 51 +++++++++++++++++++ .../src/mage/sets/chronicles/UrzasTower3.java | 51 +++++++++++++++++++ .../src/mage/sets/chronicles/UrzasTower4.java | 51 +++++++++++++++++++ 12 files changed, 474 insertions(+), 15 deletions(-) rename Mage.Sets/src/mage/sets/chronicles/{UrzasMine.java => UrzasMine1.java} (89%) create mode 100644 Mage.Sets/src/mage/sets/chronicles/UrzasMine2.java create mode 100644 Mage.Sets/src/mage/sets/chronicles/UrzasMine3.java create mode 100644 Mage.Sets/src/mage/sets/chronicles/UrzasMine4.java rename Mage.Sets/src/mage/sets/chronicles/{UrzasPowerPlant.java => UrzasPowerPlant1.java} (88%) create mode 100644 Mage.Sets/src/mage/sets/chronicles/UrzasPowerPlant2.java create mode 100644 Mage.Sets/src/mage/sets/chronicles/UrzasPowerPlant3.java create mode 100644 Mage.Sets/src/mage/sets/chronicles/UrzasPowerPlant4.java rename Mage.Sets/src/mage/sets/chronicles/{UrzasTower.java => UrzasTower1.java} (89%) create mode 100644 Mage.Sets/src/mage/sets/chronicles/UrzasTower2.java create mode 100644 Mage.Sets/src/mage/sets/chronicles/UrzasTower3.java create mode 100644 Mage.Sets/src/mage/sets/chronicles/UrzasTower4.java diff --git a/Mage.Sets/src/mage/sets/chronicles/UrzasMine.java b/Mage.Sets/src/mage/sets/chronicles/UrzasMine1.java similarity index 89% rename from Mage.Sets/src/mage/sets/chronicles/UrzasMine.java rename to Mage.Sets/src/mage/sets/chronicles/UrzasMine1.java index 075a63e7b7..1fb9939f7c 100644 --- a/Mage.Sets/src/mage/sets/chronicles/UrzasMine.java +++ b/Mage.Sets/src/mage/sets/chronicles/UrzasMine1.java @@ -34,21 +34,21 @@ import mage.constants.Rarity; * * @author LevelX2 */ -public class UrzasMine extends mage.sets.fifthedition.UrzasMine { +public class UrzasMine1 extends mage.sets.fifthedition.UrzasMine { - public UrzasMine(UUID ownerId) { + public UrzasMine1(UUID ownerId) { super(ownerId); this.cardNumber = 94; this.expansionSetCode = "CHR"; this.rarity = Rarity.UNCOMMON; } - public UrzasMine(final UrzasMine card) { + public UrzasMine1(final UrzasMine1 card) { super(card); } @Override - public UrzasMine copy() { - return new UrzasMine(this); + public UrzasMine1 copy() { + return new UrzasMine1(this); } } diff --git a/Mage.Sets/src/mage/sets/chronicles/UrzasMine2.java b/Mage.Sets/src/mage/sets/chronicles/UrzasMine2.java new file mode 100644 index 0000000000..011580e8f4 --- /dev/null +++ b/Mage.Sets/src/mage/sets/chronicles/UrzasMine2.java @@ -0,0 +1,51 @@ +/* + * 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.chronicles; + +import java.util.UUID; + +/** + * + * @author fwannmacher + */ +public class UrzasMine2 extends UrzasMine1 { + + public UrzasMine2(UUID ownerId) { + super(ownerId); + this.cardNumber = 95; + } + + public UrzasMine2(final UrzasMine2 card) { + super(card); + } + + @Override + public UrzasMine2 copy() { + return new UrzasMine2(this); + } +} diff --git a/Mage.Sets/src/mage/sets/chronicles/UrzasMine3.java b/Mage.Sets/src/mage/sets/chronicles/UrzasMine3.java new file mode 100644 index 0000000000..0cfda86ad3 --- /dev/null +++ b/Mage.Sets/src/mage/sets/chronicles/UrzasMine3.java @@ -0,0 +1,51 @@ +/* + * 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.chronicles; + +import java.util.UUID; + +/** + * + * @author fwannmacher + */ +public class UrzasMine3 extends UrzasMine1 { + + public UrzasMine3(UUID ownerId) { + super(ownerId); + this.cardNumber = 96; + } + + public UrzasMine3(final UrzasMine3 card) { + super(card); + } + + @Override + public UrzasMine3 copy() { + return new UrzasMine3(this); + } +} diff --git a/Mage.Sets/src/mage/sets/chronicles/UrzasMine4.java b/Mage.Sets/src/mage/sets/chronicles/UrzasMine4.java new file mode 100644 index 0000000000..9ced5a5cf4 --- /dev/null +++ b/Mage.Sets/src/mage/sets/chronicles/UrzasMine4.java @@ -0,0 +1,51 @@ +/* + * 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.chronicles; + +import java.util.UUID; + +/** + * + * @author fwannmacher + */ +public class UrzasMine4 extends UrzasMine1 { + + public UrzasMine4(UUID ownerId) { + super(ownerId); + this.cardNumber = 97; + } + + public UrzasMine4(final UrzasMine4 card) { + super(card); + } + + @Override + public UrzasMine4 copy() { + return new UrzasMine4(this); + } +} diff --git a/Mage.Sets/src/mage/sets/chronicles/UrzasPowerPlant.java b/Mage.Sets/src/mage/sets/chronicles/UrzasPowerPlant1.java similarity index 88% rename from Mage.Sets/src/mage/sets/chronicles/UrzasPowerPlant.java rename to Mage.Sets/src/mage/sets/chronicles/UrzasPowerPlant1.java index 3ee8f2e232..c0e648aecc 100644 --- a/Mage.Sets/src/mage/sets/chronicles/UrzasPowerPlant.java +++ b/Mage.Sets/src/mage/sets/chronicles/UrzasPowerPlant1.java @@ -34,21 +34,21 @@ import mage.constants.Rarity; * * @author LevelX2 */ -public class UrzasPowerPlant extends mage.sets.fifthedition.UrzasPowerPlant { +public class UrzasPowerPlant1 extends mage.sets.fifthedition.UrzasPowerPlant { - public UrzasPowerPlant(UUID ownerId) { + public UrzasPowerPlant1(UUID ownerId) { super(ownerId); this.cardNumber = 98; this.expansionSetCode = "CHR"; this.rarity = Rarity.UNCOMMON; } - public UrzasPowerPlant(final UrzasPowerPlant card) { + public UrzasPowerPlant1(final UrzasPowerPlant1 card) { super(card); } @Override - public UrzasPowerPlant copy() { - return new UrzasPowerPlant(this); + public UrzasPowerPlant1 copy() { + return new UrzasPowerPlant1(this); } } diff --git a/Mage.Sets/src/mage/sets/chronicles/UrzasPowerPlant2.java b/Mage.Sets/src/mage/sets/chronicles/UrzasPowerPlant2.java new file mode 100644 index 0000000000..b0f1d2ed1a --- /dev/null +++ b/Mage.Sets/src/mage/sets/chronicles/UrzasPowerPlant2.java @@ -0,0 +1,51 @@ +/* + * 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.chronicles; + +import java.util.UUID; + +/** + * + * @author fwannmacher + */ +public class UrzasPowerPlant2 extends UrzasPowerPlant1 { + + public UrzasPowerPlant2(UUID ownerId) { + super(ownerId); + this.cardNumber = 99; + } + + public UrzasPowerPlant2(final UrzasPowerPlant2 card) { + super(card); + } + + @Override + public UrzasPowerPlant2 copy() { + return new UrzasPowerPlant2(this); + } +} diff --git a/Mage.Sets/src/mage/sets/chronicles/UrzasPowerPlant3.java b/Mage.Sets/src/mage/sets/chronicles/UrzasPowerPlant3.java new file mode 100644 index 0000000000..7e646edbf7 --- /dev/null +++ b/Mage.Sets/src/mage/sets/chronicles/UrzasPowerPlant3.java @@ -0,0 +1,51 @@ +/* + * 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.chronicles; + +import java.util.UUID; + +/** + * + * @author fwannmacher + */ +public class UrzasPowerPlant3 extends UrzasPowerPlant1 { + + public UrzasPowerPlant3(UUID ownerId) { + super(ownerId); + this.cardNumber = 100; + } + + public UrzasPowerPlant3(final UrzasPowerPlant3 card) { + super(card); + } + + @Override + public UrzasPowerPlant3 copy() { + return new UrzasPowerPlant3(this); + } +} diff --git a/Mage.Sets/src/mage/sets/chronicles/UrzasPowerPlant4.java b/Mage.Sets/src/mage/sets/chronicles/UrzasPowerPlant4.java new file mode 100644 index 0000000000..e584a914b9 --- /dev/null +++ b/Mage.Sets/src/mage/sets/chronicles/UrzasPowerPlant4.java @@ -0,0 +1,51 @@ +/* + * 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.chronicles; + +import java.util.UUID; + +/** + * + * @author fwannmacher + */ +public class UrzasPowerPlant4 extends UrzasPowerPlant1 { + + public UrzasPowerPlant4(UUID ownerId) { + super(ownerId); + this.cardNumber = 101; + } + + public UrzasPowerPlant4(final UrzasPowerPlant4 card) { + super(card); + } + + @Override + public UrzasPowerPlant4 copy() { + return new UrzasPowerPlant4(this); + } +} diff --git a/Mage.Sets/src/mage/sets/chronicles/UrzasTower.java b/Mage.Sets/src/mage/sets/chronicles/UrzasTower1.java similarity index 89% rename from Mage.Sets/src/mage/sets/chronicles/UrzasTower.java rename to Mage.Sets/src/mage/sets/chronicles/UrzasTower1.java index 285ffe9386..2eeb23f356 100644 --- a/Mage.Sets/src/mage/sets/chronicles/UrzasTower.java +++ b/Mage.Sets/src/mage/sets/chronicles/UrzasTower1.java @@ -34,21 +34,21 @@ import mage.constants.Rarity; * * @author LevelX2 */ -public class UrzasTower extends mage.sets.fifthedition.UrzasTower { +public class UrzasTower1 extends mage.sets.fifthedition.UrzasTower { - public UrzasTower(UUID ownerId) { + public UrzasTower1(UUID ownerId) { super(ownerId); this.cardNumber = 102; this.expansionSetCode = "CHR"; this.rarity = Rarity.UNCOMMON; } - public UrzasTower(final UrzasTower card) { + public UrzasTower1(final UrzasTower1 card) { super(card); } @Override - public UrzasTower copy() { - return new UrzasTower(this); + public UrzasTower1 copy() { + return new UrzasTower1(this); } } diff --git a/Mage.Sets/src/mage/sets/chronicles/UrzasTower2.java b/Mage.Sets/src/mage/sets/chronicles/UrzasTower2.java new file mode 100644 index 0000000000..dbe7d0d253 --- /dev/null +++ b/Mage.Sets/src/mage/sets/chronicles/UrzasTower2.java @@ -0,0 +1,51 @@ +/* + * 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.chronicles; + +import java.util.UUID; + +/** + * + * @author fwannmacher + */ +public class UrzasTower2 extends UrzasTower1 { + + public UrzasTower2(UUID ownerId) { + super(ownerId); + this.cardNumber = 103; + } + + public UrzasTower2(final UrzasTower2 card) { + super(card); + } + + @Override + public UrzasTower2 copy() { + return new UrzasTower2(this); + } +} diff --git a/Mage.Sets/src/mage/sets/chronicles/UrzasTower3.java b/Mage.Sets/src/mage/sets/chronicles/UrzasTower3.java new file mode 100644 index 0000000000..388a289dfa --- /dev/null +++ b/Mage.Sets/src/mage/sets/chronicles/UrzasTower3.java @@ -0,0 +1,51 @@ +/* + * 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.chronicles; + +import java.util.UUID; + +/** + * + * @author fwannmacher + */ +public class UrzasTower3 extends UrzasTower1 { + + public UrzasTower3(UUID ownerId) { + super(ownerId); + this.cardNumber = 104; + } + + public UrzasTower3(final UrzasTower3 card) { + super(card); + } + + @Override + public UrzasTower3 copy() { + return new UrzasTower3(this); + } +} diff --git a/Mage.Sets/src/mage/sets/chronicles/UrzasTower4.java b/Mage.Sets/src/mage/sets/chronicles/UrzasTower4.java new file mode 100644 index 0000000000..1643aadcc9 --- /dev/null +++ b/Mage.Sets/src/mage/sets/chronicles/UrzasTower4.java @@ -0,0 +1,51 @@ +/* + * 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.chronicles; + +import java.util.UUID; + +/** + * + * @author fwannmacher + */ +public class UrzasTower4 extends UrzasTower1 { + + public UrzasTower4(UUID ownerId) { + super(ownerId); + this.cardNumber = 105; + } + + public UrzasTower4(final UrzasTower4 card) { + super(card); + } + + @Override + public UrzasTower4 copy() { + return new UrzasTower4(this); + } +}