From 804f123a836b44395e2b2edb29b12aff7262e423 Mon Sep 17 00:00:00 2001 From: Plopman Date: Sun, 6 Jan 2013 15:48:45 +0100 Subject: [PATCH] [LEA][LEB][2ED][3ED]Added Circle of Protection --- .../limitedalpha/CircleOfProtectionBlue.java | 52 +++++++++++++++++++ .../limitedalpha/CircleOfProtectionGreen.java | 52 +++++++++++++++++++ .../limitedalpha/CircleOfProtectionRed.java | 52 +++++++++++++++++++ .../limitedalpha/CircleOfProtectionWhite.java | 52 +++++++++++++++++++ .../limitedbeta/CircleOfProtectionBlack.java | 52 +++++++++++++++++++ .../limitedbeta/CircleOfProtectionBlue.java | 52 +++++++++++++++++++ .../limitedbeta/CircleOfProtectionGreen.java | 52 +++++++++++++++++++ .../limitedbeta/CircleOfProtectionRed.java | 52 +++++++++++++++++++ .../limitedbeta/CircleOfProtectionWhite.java | 52 +++++++++++++++++++ .../CircleOfProtectionBlack.java | 52 +++++++++++++++++++ .../CircleOfProtectionBlue.java | 52 +++++++++++++++++++ .../CircleOfProtectionGreen.java | 52 +++++++++++++++++++ .../revisededition/CircleOfProtectionRed.java | 52 +++++++++++++++++++ .../CircleOfProtectionWhite.java | 52 +++++++++++++++++++ .../CircleOfProtectionBlack.java | 52 +++++++++++++++++++ .../CircleOfProtectionBlue.java | 52 +++++++++++++++++++ .../CircleOfProtectionGreen.java | 52 +++++++++++++++++++ .../CircleOfProtectionRed.java | 52 +++++++++++++++++++ .../CircleOfProtectionWhite.java | 52 +++++++++++++++++++ 19 files changed, 988 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/limitedalpha/CircleOfProtectionBlue.java create mode 100644 Mage.Sets/src/mage/sets/limitedalpha/CircleOfProtectionGreen.java create mode 100644 Mage.Sets/src/mage/sets/limitedalpha/CircleOfProtectionRed.java create mode 100644 Mage.Sets/src/mage/sets/limitedalpha/CircleOfProtectionWhite.java create mode 100644 Mage.Sets/src/mage/sets/limitedbeta/CircleOfProtectionBlack.java create mode 100644 Mage.Sets/src/mage/sets/limitedbeta/CircleOfProtectionBlue.java create mode 100644 Mage.Sets/src/mage/sets/limitedbeta/CircleOfProtectionGreen.java create mode 100644 Mage.Sets/src/mage/sets/limitedbeta/CircleOfProtectionRed.java create mode 100644 Mage.Sets/src/mage/sets/limitedbeta/CircleOfProtectionWhite.java create mode 100644 Mage.Sets/src/mage/sets/revisededition/CircleOfProtectionBlack.java create mode 100644 Mage.Sets/src/mage/sets/revisededition/CircleOfProtectionBlue.java create mode 100644 Mage.Sets/src/mage/sets/revisededition/CircleOfProtectionGreen.java create mode 100644 Mage.Sets/src/mage/sets/revisededition/CircleOfProtectionRed.java create mode 100644 Mage.Sets/src/mage/sets/revisededition/CircleOfProtectionWhite.java create mode 100644 Mage.Sets/src/mage/sets/unlimitededition/CircleOfProtectionBlack.java create mode 100644 Mage.Sets/src/mage/sets/unlimitededition/CircleOfProtectionBlue.java create mode 100644 Mage.Sets/src/mage/sets/unlimitededition/CircleOfProtectionGreen.java create mode 100644 Mage.Sets/src/mage/sets/unlimitededition/CircleOfProtectionRed.java create mode 100644 Mage.Sets/src/mage/sets/unlimitededition/CircleOfProtectionWhite.java diff --git a/Mage.Sets/src/mage/sets/limitedalpha/CircleOfProtectionBlue.java b/Mage.Sets/src/mage/sets/limitedalpha/CircleOfProtectionBlue.java new file mode 100644 index 00000000000..71a624b2c23 --- /dev/null +++ b/Mage.Sets/src/mage/sets/limitedalpha/CircleOfProtectionBlue.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.limitedalpha; + +import java.util.UUID; + +/** + * + * @author Plopman + */ +public class CircleOfProtectionBlue extends mage.sets.iceage.CircleOfProtectionBlue { + + public CircleOfProtectionBlue(UUID ownerId) { + super(ownerId); + this.cardNumber = 194; + this.expansionSetCode = "LEA"; + } + + public CircleOfProtectionBlue(final CircleOfProtectionBlue card) { + super(card); + } + + @Override + public CircleOfProtectionBlue copy() { + return new CircleOfProtectionBlue(this); + } +} diff --git a/Mage.Sets/src/mage/sets/limitedalpha/CircleOfProtectionGreen.java b/Mage.Sets/src/mage/sets/limitedalpha/CircleOfProtectionGreen.java new file mode 100644 index 00000000000..72039bcfbc4 --- /dev/null +++ b/Mage.Sets/src/mage/sets/limitedalpha/CircleOfProtectionGreen.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.limitedalpha; + +import java.util.UUID; + +/** + * + * @author Plopman + */ +public class CircleOfProtectionGreen extends mage.sets.iceage.CircleOfProtectionGreen { + + public CircleOfProtectionGreen(UUID ownerId) { + super(ownerId); + this.cardNumber = 195; + this.expansionSetCode = "LEA"; + } + + public CircleOfProtectionGreen(final CircleOfProtectionGreen card) { + super(card); + } + + @Override + public CircleOfProtectionGreen copy() { + return new CircleOfProtectionGreen(this); + } +} diff --git a/Mage.Sets/src/mage/sets/limitedalpha/CircleOfProtectionRed.java b/Mage.Sets/src/mage/sets/limitedalpha/CircleOfProtectionRed.java new file mode 100644 index 00000000000..f26e74b7161 --- /dev/null +++ b/Mage.Sets/src/mage/sets/limitedalpha/CircleOfProtectionRed.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.limitedalpha; + +import java.util.UUID; + +/** + * + * @author Plopman + */ +public class CircleOfProtectionRed extends mage.sets.iceage.CircleOfProtectionRed { + + public CircleOfProtectionRed(UUID ownerId) { + super(ownerId); + this.cardNumber = 196; + this.expansionSetCode = "LEA"; + } + + public CircleOfProtectionRed(final CircleOfProtectionRed card) { + super(card); + } + + @Override + public CircleOfProtectionRed copy() { + return new CircleOfProtectionRed(this); + } +} diff --git a/Mage.Sets/src/mage/sets/limitedalpha/CircleOfProtectionWhite.java b/Mage.Sets/src/mage/sets/limitedalpha/CircleOfProtectionWhite.java new file mode 100644 index 00000000000..db15a9b8ffd --- /dev/null +++ b/Mage.Sets/src/mage/sets/limitedalpha/CircleOfProtectionWhite.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.limitedalpha; + +import java.util.UUID; + +/** + * + * @author Plopman + */ +public class CircleOfProtectionWhite extends mage.sets.iceage.CircleOfProtectionWhite { + + public CircleOfProtectionWhite(UUID ownerId) { + super(ownerId); + this.cardNumber = 197; + this.expansionSetCode = "LEA"; + } + + public CircleOfProtectionWhite(final CircleOfProtectionWhite card) { + super(card); + } + + @Override + public CircleOfProtectionWhite copy() { + return new CircleOfProtectionWhite(this); + } +} diff --git a/Mage.Sets/src/mage/sets/limitedbeta/CircleOfProtectionBlack.java b/Mage.Sets/src/mage/sets/limitedbeta/CircleOfProtectionBlack.java new file mode 100644 index 00000000000..5aa9d84965b --- /dev/null +++ b/Mage.Sets/src/mage/sets/limitedbeta/CircleOfProtectionBlack.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.limitedbeta; + +import java.util.UUID; + +/** + * + * @author Plopman + */ +public class CircleOfProtectionBlack extends mage.sets.iceage.CircleOfProtectionBlack { + + public CircleOfProtectionBlack(UUID ownerId) { + super(ownerId); + this.cardNumber = 195; + this.expansionSetCode = "LEB"; + } + + public CircleOfProtectionBlack(final CircleOfProtectionBlack card) { + super(card); + } + + @Override + public CircleOfProtectionBlack copy() { + return new CircleOfProtectionBlack(this); + } +} diff --git a/Mage.Sets/src/mage/sets/limitedbeta/CircleOfProtectionBlue.java b/Mage.Sets/src/mage/sets/limitedbeta/CircleOfProtectionBlue.java new file mode 100644 index 00000000000..d25ef337362 --- /dev/null +++ b/Mage.Sets/src/mage/sets/limitedbeta/CircleOfProtectionBlue.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.limitedbeta; + +import java.util.UUID; + +/** + * + * @author Plopman + */ +public class CircleOfProtectionBlue extends mage.sets.iceage.CircleOfProtectionBlue { + + public CircleOfProtectionBlue(UUID ownerId) { + super(ownerId); + this.cardNumber = 196; + this.expansionSetCode = "LEB"; + } + + public CircleOfProtectionBlue(final CircleOfProtectionBlue card) { + super(card); + } + + @Override + public CircleOfProtectionBlue copy() { + return new CircleOfProtectionBlue(this); + } +} diff --git a/Mage.Sets/src/mage/sets/limitedbeta/CircleOfProtectionGreen.java b/Mage.Sets/src/mage/sets/limitedbeta/CircleOfProtectionGreen.java new file mode 100644 index 00000000000..adbdf9ffe21 --- /dev/null +++ b/Mage.Sets/src/mage/sets/limitedbeta/CircleOfProtectionGreen.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.limitedbeta; + +import java.util.UUID; + +/** + * + * @author Plopman + */ +public class CircleOfProtectionGreen extends mage.sets.iceage.CircleOfProtectionGreen { + + public CircleOfProtectionGreen(UUID ownerId) { + super(ownerId); + this.cardNumber = 197; + this.expansionSetCode = "LEB"; + } + + public CircleOfProtectionGreen(final CircleOfProtectionGreen card) { + super(card); + } + + @Override + public CircleOfProtectionGreen copy() { + return new CircleOfProtectionGreen(this); + } +} diff --git a/Mage.Sets/src/mage/sets/limitedbeta/CircleOfProtectionRed.java b/Mage.Sets/src/mage/sets/limitedbeta/CircleOfProtectionRed.java new file mode 100644 index 00000000000..eb4fceaf8df --- /dev/null +++ b/Mage.Sets/src/mage/sets/limitedbeta/CircleOfProtectionRed.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.limitedbeta; + +import java.util.UUID; + +/** + * + * @author Plopman + */ +public class CircleOfProtectionRed extends mage.sets.iceage.CircleOfProtectionRed { + + public CircleOfProtectionRed(UUID ownerId) { + super(ownerId); + this.cardNumber = 198; + this.expansionSetCode = "LEB"; + } + + public CircleOfProtectionRed(final CircleOfProtectionRed card) { + super(card); + } + + @Override + public CircleOfProtectionRed copy() { + return new CircleOfProtectionRed(this); + } +} diff --git a/Mage.Sets/src/mage/sets/limitedbeta/CircleOfProtectionWhite.java b/Mage.Sets/src/mage/sets/limitedbeta/CircleOfProtectionWhite.java new file mode 100644 index 00000000000..4ac2804c0f7 --- /dev/null +++ b/Mage.Sets/src/mage/sets/limitedbeta/CircleOfProtectionWhite.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.limitedbeta; + +import java.util.UUID; + +/** + * + * @author Plopman + */ +public class CircleOfProtectionWhite extends mage.sets.iceage.CircleOfProtectionWhite { + + public CircleOfProtectionWhite(UUID ownerId) { + super(ownerId); + this.cardNumber = 199; + this.expansionSetCode = "LEB"; + } + + public CircleOfProtectionWhite(final CircleOfProtectionWhite card) { + super(card); + } + + @Override + public CircleOfProtectionWhite copy() { + return new CircleOfProtectionWhite(this); + } +} diff --git a/Mage.Sets/src/mage/sets/revisededition/CircleOfProtectionBlack.java b/Mage.Sets/src/mage/sets/revisededition/CircleOfProtectionBlack.java new file mode 100644 index 00000000000..9ee9cb5565b --- /dev/null +++ b/Mage.Sets/src/mage/sets/revisededition/CircleOfProtectionBlack.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.revisededition; + +import java.util.UUID; + +/** + * + * @author Plopman + */ +public class CircleOfProtectionBlack extends mage.sets.iceage.CircleOfProtectionBlack { + + public CircleOfProtectionBlack(UUID ownerId) { + super(ownerId); + this.cardNumber = 193; + this.expansionSetCode = "3ED"; + } + + public CircleOfProtectionBlack(final CircleOfProtectionBlack card) { + super(card); + } + + @Override + public CircleOfProtectionBlack copy() { + return new CircleOfProtectionBlack(this); + } +} diff --git a/Mage.Sets/src/mage/sets/revisededition/CircleOfProtectionBlue.java b/Mage.Sets/src/mage/sets/revisededition/CircleOfProtectionBlue.java new file mode 100644 index 00000000000..026d8768d02 --- /dev/null +++ b/Mage.Sets/src/mage/sets/revisededition/CircleOfProtectionBlue.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.revisededition; + +import java.util.UUID; + +/** + * + * @author Plopman + */ +public class CircleOfProtectionBlue extends mage.sets.iceage.CircleOfProtectionBlue { + + public CircleOfProtectionBlue(UUID ownerId) { + super(ownerId); + this.cardNumber = 194; + this.expansionSetCode = "3ED"; + } + + public CircleOfProtectionBlue(final CircleOfProtectionBlue card) { + super(card); + } + + @Override + public CircleOfProtectionBlue copy() { + return new CircleOfProtectionBlue(this); + } +} diff --git a/Mage.Sets/src/mage/sets/revisededition/CircleOfProtectionGreen.java b/Mage.Sets/src/mage/sets/revisededition/CircleOfProtectionGreen.java new file mode 100644 index 00000000000..bd5bc90fbd2 --- /dev/null +++ b/Mage.Sets/src/mage/sets/revisededition/CircleOfProtectionGreen.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.revisededition; + +import java.util.UUID; + +/** + * + * @author Plopman + */ +public class CircleOfProtectionGreen extends mage.sets.iceage.CircleOfProtectionGreen { + + public CircleOfProtectionGreen(UUID ownerId) { + super(ownerId); + this.cardNumber = 195; + this.expansionSetCode = "3ED"; + } + + public CircleOfProtectionGreen(final CircleOfProtectionGreen card) { + super(card); + } + + @Override + public CircleOfProtectionGreen copy() { + return new CircleOfProtectionGreen(this); + } +} diff --git a/Mage.Sets/src/mage/sets/revisededition/CircleOfProtectionRed.java b/Mage.Sets/src/mage/sets/revisededition/CircleOfProtectionRed.java new file mode 100644 index 00000000000..594406fe312 --- /dev/null +++ b/Mage.Sets/src/mage/sets/revisededition/CircleOfProtectionRed.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.revisededition; + +import java.util.UUID; + +/** + * + * @author Plopman + */ +public class CircleOfProtectionRed extends mage.sets.iceage.CircleOfProtectionRed { + + public CircleOfProtectionRed(UUID ownerId) { + super(ownerId); + this.cardNumber = 196; + this.expansionSetCode = "3ED"; + } + + public CircleOfProtectionRed(final CircleOfProtectionRed card) { + super(card); + } + + @Override + public CircleOfProtectionRed copy() { + return new CircleOfProtectionRed(this); + } +} diff --git a/Mage.Sets/src/mage/sets/revisededition/CircleOfProtectionWhite.java b/Mage.Sets/src/mage/sets/revisededition/CircleOfProtectionWhite.java new file mode 100644 index 00000000000..cf495cd2959 --- /dev/null +++ b/Mage.Sets/src/mage/sets/revisededition/CircleOfProtectionWhite.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.revisededition; + +import java.util.UUID; + +/** + * + * @author Plopman + */ +public class CircleOfProtectionWhite extends mage.sets.iceage.CircleOfProtectionWhite { + + public CircleOfProtectionWhite(UUID ownerId) { + super(ownerId); + this.cardNumber = 197; + this.expansionSetCode = "3ED"; + } + + public CircleOfProtectionWhite(final CircleOfProtectionWhite card) { + super(card); + } + + @Override + public CircleOfProtectionWhite copy() { + return new CircleOfProtectionWhite(this); + } +} diff --git a/Mage.Sets/src/mage/sets/unlimitededition/CircleOfProtectionBlack.java b/Mage.Sets/src/mage/sets/unlimitededition/CircleOfProtectionBlack.java new file mode 100644 index 00000000000..fe2a5bbe50f --- /dev/null +++ b/Mage.Sets/src/mage/sets/unlimitededition/CircleOfProtectionBlack.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.unlimitededition; + +import java.util.UUID; + +/** + * + * @author Plopman + */ +public class CircleOfProtectionBlack extends mage.sets.iceage.CircleOfProtectionBlack { + + public CircleOfProtectionBlack(UUID ownerId) { + super(ownerId); + this.cardNumber = 194; + this.expansionSetCode = "2ED"; + } + + public CircleOfProtectionBlack(final CircleOfProtectionBlack card) { + super(card); + } + + @Override + public CircleOfProtectionBlack copy() { + return new CircleOfProtectionBlack(this); + } +} diff --git a/Mage.Sets/src/mage/sets/unlimitededition/CircleOfProtectionBlue.java b/Mage.Sets/src/mage/sets/unlimitededition/CircleOfProtectionBlue.java new file mode 100644 index 00000000000..be224155ce3 --- /dev/null +++ b/Mage.Sets/src/mage/sets/unlimitededition/CircleOfProtectionBlue.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.unlimitededition; + +import java.util.UUID; + +/** + * + * @author Plopman + */ +public class CircleOfProtectionBlue extends mage.sets.iceage.CircleOfProtectionBlue { + + public CircleOfProtectionBlue(UUID ownerId) { + super(ownerId); + this.cardNumber = 195; + this.expansionSetCode = "2ED"; + } + + public CircleOfProtectionBlue(final CircleOfProtectionBlue card) { + super(card); + } + + @Override + public CircleOfProtectionBlue copy() { + return new CircleOfProtectionBlue(this); + } +} diff --git a/Mage.Sets/src/mage/sets/unlimitededition/CircleOfProtectionGreen.java b/Mage.Sets/src/mage/sets/unlimitededition/CircleOfProtectionGreen.java new file mode 100644 index 00000000000..8f6e592ae31 --- /dev/null +++ b/Mage.Sets/src/mage/sets/unlimitededition/CircleOfProtectionGreen.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.unlimitededition; + +import java.util.UUID; + +/** + * + * @author Plopman + */ +public class CircleOfProtectionGreen extends mage.sets.iceage.CircleOfProtectionGreen { + + public CircleOfProtectionGreen(UUID ownerId) { + super(ownerId); + this.cardNumber = 196; + this.expansionSetCode = "2ED"; + } + + public CircleOfProtectionGreen(final CircleOfProtectionGreen card) { + super(card); + } + + @Override + public CircleOfProtectionGreen copy() { + return new CircleOfProtectionGreen(this); + } +} diff --git a/Mage.Sets/src/mage/sets/unlimitededition/CircleOfProtectionRed.java b/Mage.Sets/src/mage/sets/unlimitededition/CircleOfProtectionRed.java new file mode 100644 index 00000000000..45ba9adb7e7 --- /dev/null +++ b/Mage.Sets/src/mage/sets/unlimitededition/CircleOfProtectionRed.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.unlimitededition; + +import java.util.UUID; + +/** + * + * @author Plopman + */ +public class CircleOfProtectionRed extends mage.sets.iceage.CircleOfProtectionRed { + + public CircleOfProtectionRed(UUID ownerId) { + super(ownerId); + this.cardNumber = 197; + this.expansionSetCode = "2ED"; + } + + public CircleOfProtectionRed(final CircleOfProtectionRed card) { + super(card); + } + + @Override + public CircleOfProtectionRed copy() { + return new CircleOfProtectionRed(this); + } +} diff --git a/Mage.Sets/src/mage/sets/unlimitededition/CircleOfProtectionWhite.java b/Mage.Sets/src/mage/sets/unlimitededition/CircleOfProtectionWhite.java new file mode 100644 index 00000000000..20434e37db9 --- /dev/null +++ b/Mage.Sets/src/mage/sets/unlimitededition/CircleOfProtectionWhite.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.unlimitededition; + +import java.util.UUID; + +/** + * + * @author Plopman + */ +public class CircleOfProtectionWhite extends mage.sets.iceage.CircleOfProtectionWhite { + + public CircleOfProtectionWhite(UUID ownerId) { + super(ownerId); + this.cardNumber = 198; + this.expansionSetCode = "2ED"; + } + + public CircleOfProtectionWhite(final CircleOfProtectionWhite card) { + super(card); + } + + @Override + public CircleOfProtectionWhite copy() { + return new CircleOfProtectionWhite(this); + } +}