Merge branch 'master' into cmake

This commit is contained in:
xawotihs
2025-04-22 20:37:50 +02:00
275 changed files with 298456 additions and 54638 deletions
+38
View File
@@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''
---
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]
**Additional context**
Add any other context about the problem here.
+10
View File
@@ -0,0 +1,10 @@
---
name: Custom issue template
about: Describe this issue template's purpose here.
title: ''
labels: ''
assignees: ''
---
+20
View File
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.
+3
View File
@@ -4,3 +4,6 @@
[submodule "thirdparty/SDL2"] [submodule "thirdparty/SDL2"]
path = thirdparty/SDL2 path = thirdparty/SDL2
url = https://github.com/libsdl-org/SDL url = https://github.com/libsdl-org/SDL
[submodule "docs/wiki"]
path = docs/wiki
url = https://github.com/WagicProject/wagic.wiki
+6 -56
View File
@@ -39,7 +39,6 @@ cache:
- android-ndk-r9 - android-ndk-r9
before_install: before_install:
<<<<<<< HEAD
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then - if [ "$TRAVIS_OS_NAME" == "linux" ]; then
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu trusty universe" && sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu trusty universe" &&
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu trusty main" && sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu trusty main" &&
@@ -59,51 +58,19 @@ before_install:
pwd && pwd &&
ls; ls;
fi fi
=======
- export BUILD_PSP=YES
- export BUILD_ANDROID=YES
- export BUILD_Qt=YES
- export BUILD_MAC=NO
# Only building on Mac when not handling pull request
# - if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
# export BUILD_MAC=YES;
# fi
- sudo apt-get update -qq
>>>>>>> master
# Building for PSP here # Building for PSP here
- if [ "$BUILD_TYPE" == "PSP" ]; then - if [ "$BUILD_TYPE" == "PSP" ]; then
export PSPDEV="$TRAVIS_BUILD_DIR/opt/pspsdk" && export PSPDEV="$TRAVIS_BUILD_DIR/opt/pspsdk" &&
export PSPSDK="$PSPDEV/psp/sdk" && export PSPSDK="$PSPDEV/psp/sdk" &&
export PATH="$PATH:$PSPDEV/bin:$PSPSDK/bin" && export PATH="$PATH:$PSPDEV/bin:$PSPSDK/bin" &&
<<<<<<< HEAD
wget -O sdk.lzma https://sourceforge.net/projects/minpspw/files/SDK%20%2B%20devpak/pspsdk%200.11.2/minpspw_0.11.2-amd64.tar.lzma/download; wget -O sdk.lzma https://sourceforge.net/projects/minpspw/files/SDK%20%2B%20devpak/pspsdk%200.11.2/minpspw_0.11.2-amd64.tar.lzma/download;
fi fi
# Building for Android here # Building for Android here
- if [ "$BUILD_TYPE" == "ANDROID" ]; then - if [ "$BUILD_TYPE" == "ANDROID" ]; then
export ANDROID="/usr/local/android-sdk-linux/tools/android" && export ANDROID="/usr/local/android-sdk-linux/tools/android" &&
export PATH=$PATH:"/usr/local/android-sdk-linux/tools" && export PATH=$PATH:"/usr/local/android-sdk-linux/tools" &&
wget http://dl.google.com/android/ndk/android-ndk-r9-linux-x86_64.tar.bz2 -nv && wget https://dl.google.com/android/repository/android-ndk-r22-linux-x86_64.zip -nv &&
wget https://bitbucket.org/ewing/sdl_androidcmake/get/4e9e88c03f04.zip -nv; wget https://bitbucket.org/ewing/sdl_androidcmake/get/4e9e88c03f04.zip -nv;
=======
wget --no-check-certificate -O sdk.lzma http://downloads.sourceforge.net/project/minpspw/SDK%20%2B%20devpak/pspsdk%200.11.2/minpspw_0.11.2-amd64.tar.lzma;
fi
# Building for Qt here
- if [ "$BUILD_Qt" == "YES" ]; then
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu xenial universe" &&
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu xenial main" &&
sudo apt-get -qq update &&
sudo apt-get -qq install qt5-qmake qtbase5-dev qtdeclarative5-dev qttools5-dev qtmultimedia5-dev libqt5opengl5 libqt5opengl5-dev pulseaudio libpulse-dev &&
export QMAKE="qmake -qt=qt5";
fi
# Building for Android here
- if [ "$BUILD_ANDROID" == "YES" ]; then
export ANDROID="android-sdk-linux/tools/android" &&
if [ `uname -m` = x86_64 ]; then
sudo dpkg --add-architecture i386 && sudo apt-get update &&
sudo apt-get install -qq --force-yes libgd2-xpm-dev libc6-i386 lib32stdc++6 lib32gcc1 lib32ncurses5 lib32z1 jq ant; fi &&
wget https://dl.google.com/android/repository/android-ndk-r22-linux-x86_64.zip -nv &&
wget http://dl.google.com/android/android-sdk_r24.4.1-linux.tgz -nv;
>>>>>>> master
fi fi
# Building for Qt here # Building for Qt here
- if [ "$BUILD_TYPE" == "Qt" ] && [ "$TRAVIS_OS_NAME" == "osx" ]; then - if [ "$BUILD_TYPE" == "Qt" ] && [ "$TRAVIS_OS_NAME" == "osx" ]; then
@@ -111,7 +78,10 @@ before_install:
export QMAKE="qmake -qt=qt5"; export QMAKE="qmake -qt=qt5";
fi fi
- if [ "$BUILD_TYPE" == "Qt" ] && [ "$TRAVIS_OS_NAME" == "linux" ]; then - if [ "$BUILD_TYPE" == "Qt" ] && [ "$TRAVIS_OS_NAME" == "linux" ]; then
sudo apt-get install -qq qt5-qmake qtbase5-dev qtdeclarative5-dev qttools5-dev qtmultimedia5-dev pulseaudio libpulse-dev && sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu xenial universe" &&
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu xenial main" &&
sudo apt-get -qq update &&
sudo apt-get -qq install qt5-qmake qtbase5-dev qtdeclarative5-dev qttools5-dev qtmultimedia5-dev libqt5opengl5 libqt5opengl5-dev pulseaudio libpulse-dev &&
export QMAKE="qmake -qt=qt5"; export QMAKE="qmake -qt=qt5";
fi fi
# Building for SDL here # Building for SDL here
@@ -124,7 +94,6 @@ before_install:
fi fi
install: install:
<<<<<<< HEAD
- | - |
if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
if [[ -z "$(ls -A ${DEPS_DIR}/cmake/bin)" ]]; then if [[ -z "$(ls -A ${DEPS_DIR}/cmake/bin)" ]]; then
@@ -164,27 +133,7 @@ env:
- secure: "X5dTQfofqAutnXxmu11Ep2MQ5QYnMN8m0AITRtwymhEF2UclcOudI1+skPtuhAGbWQnSO+lhunV3cvMfw2/Ml3k/VDz6VdFSKFrzAu7ja1VLJfcxr7chi0s8q30pVBb66tGydjIBac3B+RQyqgmZQW1frbRrhC/kPFQ6wPWOJdQ=" - secure: "X5dTQfofqAutnXxmu11Ep2MQ5QYnMN8m0AITRtwymhEF2UclcOudI1+skPtuhAGbWQnSO+lhunV3cvMfw2/Ml3k/VDz6VdFSKFrzAu7ja1VLJfcxr7chi0s8q30pVBb66tGydjIBac3B+RQyqgmZQW1frbRrhC/kPFQ6wPWOJdQ="
- secure: "T97NUPnxCpVZ/c5HH0zfo0FO3DPSRMSmze58ubW5EUTZOjAMtEt+OFdsrNZvUTCugUj2M1agtonZbAbczpaAL+lgZcHDgXgWMkfO0pMnsWX1yyCNqMuE/iTMpJr/xsLQeyWlftWjJLsseQU45abZsd1XVmda/G+ZhrDLF1y55SA=" - secure: "T97NUPnxCpVZ/c5HH0zfo0FO3DPSRMSmze58ubW5EUTZOjAMtEt+OFdsrNZvUTCugUj2M1agtonZbAbczpaAL+lgZcHDgXgWMkfO0pMnsWX1yyCNqMuE/iTMpJr/xsLQeyWlftWjJLsseQU45abZsd1XVmda/G+ZhrDLF1y55SA="
=======
- if [ "$BUILD_PSP" == "YES" ]; then
tar -x --xz -f sdk.lzma;
fi
- if [ "$BUILD_ANDROID" == "YES" ]; then
unzip android-ndk-r22-linux-x86_64.zip &&
tar -zxf android-sdk_r24.4.1-linux.tgz &&
$ANDROID list sdk --extended -a &&
echo yes | $ANDROID update sdk -a -t tools,platform-tools,build-tools-23.0.1,android-23 --no-ui --force --no-https;
sudo apt-get install openjdk-8-jdk;
export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64;
export PATH=$JAVA_HOME/bin:$PATH;
fi
- sudo pip install --upgrade pip
- sudo pip install setuptools-rust
- sudo pip install pyOpenSSL
- sudo pip install pyjavaproperties
- sudo pip install github3.py
- sudo pip install cpp-coveralls
>>>>>>> master
script: "tools/travis-script.sh" script: "tools/travis-script.sh"
after_success: after_success:
@@ -207,3 +156,4 @@ after_success:
- if [ "$TRAVIS_OS_NAME" == "osx" ] && [ "$BUILD_TYPE" == "Emscripten" ]; then - if [ "$TRAVIS_OS_NAME" == "osx" ] && [ "$BUILD_TYPE" == "Emscripten" ]; then
./tools/deploy-emscripten.sh; ./tools/deploy-emscripten.sh;
fi fi
Binary file not shown.
@@ -0,0 +1,10 @@
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
<assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level='asInvoker' uiAccess='false' />
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
Binary file not shown.
Binary file not shown.
Binary file not shown.
+25 -8
View File
@@ -1,5 +1,4 @@
#Wagic the Homebrew # Wagic the Homebrew
[![Build Status](https://travis-ci.org/WagicProject/wagic.png?branch=master)](https://travis-ci.com/WagicProject/wagic) [![Build Status](https://travis-ci.org/WagicProject/wagic.png?branch=master)](https://travis-ci.com/WagicProject/wagic)
[![Build status](https://ci.appveyor.com/api/projects/status/7j4fbr6m62aqej59/branch/master)](https://ci.appveyor.com/project/xawotihs/wagic/branch/master) [![Build status](https://ci.appveyor.com/api/projects/status/7j4fbr6m62aqej59/branch/master)](https://ci.appveyor.com/project/xawotihs/wagic/branch/master)
@@ -7,22 +6,40 @@
## Description ## Description
Wagic, the Homebrew, is a C++ game engine that allows to play card games against an AI on **Wagic, the Homebrew** is a C++ game engine that allows to play card games against an AI on:
- Android (phones and tablets) - Android (phones and tablets)
- iOS (iPhone/iPad) - iOS (iPhone/iPad)
- Sony PSP - Sony PSP
- Windows desktops - Windows desktops
- MacOS - MacOS
- Linux and derivated like Maemo or Meego - Linux and derivatives like Maemo or Meego
It is highly customizable and allows the player to tweak the rules / create their own cards, their own themes, etc... It is highly customizable and allows the player to tweak the rules, create their own cards, their own themes, etc...
#### [Download from GitHub Releases!](https://github.com/WagicProject/wagic/releases)
![Screenshot of shop from wololo.net](docs/img/shop.jpg)
Info, downloads, discussions and more at http://wololo.net/forum/index.php ### Documentation
![alt text](http://wololo.net/wagic/wp-content/uploads/2009/10/shop.jpg "Screenshot") Info, downloads, discussions and more at http://wololo.net/forum/index.php (archived as of 16 Nov 2022).
Chat with the community on the [**Wagic - MTG Game** Discord](https://discord.com/invite/JHK5pVaK5p) (Feb 2023).
Developer information from the [Wagic Wiki](https://github.com/WagicProject/wagic/wiki) is also included in the [wagic/docs/](docs) folder.
### Sample round play-through video ### Sample round play-through video
[![IMAGE ALT TEXT HERE](http://img.youtube.com/vi/WUFSAPZuDIk/0.jpg)](http://www.youtube.com/watch?v=WUFSAPZuDIk)
[![Wagic, The Homebrew sample playthrough](docs/img/Wagic%2C%20The%20Homebrew%20sample%20playthrough.jpg)](http://www.youtube.com/watch?v=WUFSAPZuDIk)
*Wagic, The Homebrew sample playthrough on YouTube by Rolz73, 6 Feb 2014*
## Sister projects
- [WagicSyntaxPlugin
](https://github.com/Vitty85/WagicSyntaxPlugin), a Wagic developer tool by Vitty85 for [Notepad++](https://notepad-plus-plus.org/downloads/)
- [Forge](https://www.slightlymagic.net/forum/viewforum.php?f=26), a Java-based game engine similar to Wagic ([Source](https://github.com/Card-Forge/forge/))
- [XMage](http://xmage.today/), a Java-based online multiplayer digital CCG ([Source](https://github.com/magefree/mage))
+2 -2
View File
@@ -23,8 +23,8 @@ environment:
# scripts that run after cloning repository # scripts that run after cloning repository
install: install:
- ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py') - powershell -Command "& {(new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py')}"
- "C:/Python27/python.exe C:/get-pip.py" - powershell -Command "& {C:/Python27/python.exe C:/get-pip.py}"
- "C:/Python27/Scripts/pip.exe install pyjavaproperties" - "C:/Python27/Scripts/pip.exe install pyjavaproperties"
- "C:/Python27/Scripts/pip.exe install github3.py" - "C:/Python27/Scripts/pip.exe install github3.py"
- git submodule update --init --recursive - git submodule update --init --recursive
Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Submodule
+1
Submodule docs/wiki added at 0244ca1874
+1 -1
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?> <?xml version="1.0" encoding="utf-8" standalone="no"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="0231" android:versionCode="0240"
android:installLocation="preferExternal" android:installLocation="preferExternal"
android:versionName="@string/app_version" android:versionName="@string/app_version"
package="net.wagic.app"> package="net.wagic.app">
+4 -1
View File
@@ -1,6 +1,9 @@
APP_PROJECT_PATH := $(call my-dir)/.. APP_PROJECT_PATH := $(call my-dir)/..
APP_CPPFLAGS += -frtti -fexceptions APP_CPPFLAGS += -frtti -fexceptions
APP_ABI := armeabi-v7a APP_ABI := arm64-v8a
APP_PLATFORM := android-21
APP_CFLAGS += -march=armv8.1-a
APP_CPPFLAGS += -D__ARM_FEATURE_LSE=1
#APP_ABI := x86 # mainly for emulators #APP_ABI := x86 # mainly for emulators
APP_STL := c++_static APP_STL := c++_static
APP_MODULES := libpng libjpeg main SDL APP_MODULES := libpng libjpeg main SDL
Binary file not shown.
+1 -1
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<resources> <resources>
<string name="app_name">Wagic</string> <string name="app_name">Wagic</string>
<string name="app_version">0.23.1</string> <string name="app_version">0.20.0</string>
<string name="info_text">All Rights Reserved.</string> <string name="info_text">All Rights Reserved.</string>
</resources> </resources>
File diff suppressed because it is too large Load Diff
@@ -110,6 +110,7 @@ public class SDLActivity extends Activity implements OnKeyListener {
public static final String kSaveDataPathPreference = "StorageDataLocation"; public static final String kSaveDataPathPreference = "StorageDataLocation";
public static final String kWagicDataStorageOptionsKey = "dataStorageOptions"; public static final String kWagicDataStorageOptionsKey = "dataStorageOptions";
public static final int kStorageDataOptionsMenuId = 2000; public static final int kStorageDataOptionsMenuId = 2000;
public static final int kdownloadResOptionsMenuId = 4000;
public static final int kOtherOptionsMenuId = 3000; public static final int kOtherOptionsMenuId = 3000;
static { static {
@@ -170,6 +171,7 @@ public class SDLActivity extends Activity implements OnKeyListener {
MenuItem downloader; MenuItem downloader;
MenuItem about; MenuItem about;
MenuItem storage; MenuItem storage;
MenuItem resource;
// Handler for the messages // Handler for the messages
Handler commandHandler = new Handler() { Handler commandHandler = new Handler() {
@@ -951,6 +953,9 @@ public class SDLActivity extends Activity implements OnKeyListener {
about = menu.add(Menu.NONE, 4, 4, "About"); about = menu.add(Menu.NONE, 4, 4, "About");
storage = settingsMenu.add(kStorageDataOptionsMenuId, storage = settingsMenu.add(kStorageDataOptionsMenuId,
kStorageDataOptionsMenuId, Menu.NONE, "Storage Data Options"); kStorageDataOptionsMenuId, Menu.NONE, "Storage Data Options");
resource = settingsMenu.add(kdownloadResOptionsMenuId,
kdownloadResOptionsMenuId, Menu.NONE, "Download Core & Quit");
} }
@Override @Override
@@ -966,6 +971,10 @@ public class SDLActivity extends Activity implements OnKeyListener {
if (itemId == kStorageDataOptionsMenuId) { if (itemId == kStorageDataOptionsMenuId) {
displayStorageOptions(); displayStorageOptions();
} else if (itemId == kdownloadResOptionsMenuId) {
File oldRes = new File(getSystemStorageLocation() + RES_FILENAME);
oldRes.delete();
startDownload();
} else if (itemId == 2) { } else if (itemId == 2) {
importDeckOptions(); importDeckOptions();
} else if (itemId == 3) { } else if (itemId == 3) {
@@ -1000,7 +1009,7 @@ public class SDLActivity extends Activity implements OnKeyListener {
public void showSettingsSubMenu() { public void showSettingsSubMenu() {
AlertDialog.Builder builder = new AlertDialog.Builder(this); AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Settings Menu"); builder.setTitle("Settings Menu");
String[] choices = { "Storage Data Options" }; String[] choices = { "Storage Data Options", "Download Core & Quit" };
builder.setItems(choices, builder.setItems(choices,
new DialogInterface.OnClickListener() { new DialogInterface.OnClickListener() {
@Override @Override
@@ -1009,6 +1018,9 @@ public class SDLActivity extends Activity implements OnKeyListener {
case 0: case 0:
onOptionsItemSelected(storage); onOptionsItemSelected(storage);
break; break;
case 1:
onOptionsItemSelected(resource);
break;
} }
} }
}); });
@@ -1122,13 +1134,41 @@ public class SDLActivity extends Activity implements OnKeyListener {
prepareOptionMenu(null); prepareOptionMenu(null);
} }
public void forceResDownload(final File oldRes) {
AlertDialog.Builder resChooser = new AlertDialog.Builder(this);
final SDLActivity parent = this;
resChooser.setTitle("Do you want to download latest core file?");
resChooser.setPositiveButton("Yes",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
FrameLayout _videoLayout = new FrameLayout(parent);
setContentView(_videoLayout,
new LayoutParams(LayoutParams.FILL_PARENT,
LayoutParams.FILL_PARENT));
oldRes.delete();
startDownload();
}
});
resChooser.setNegativeButton("No",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
mainDisplay();
}
});
resChooser.create().show();
}
public void initializeGame() { public void initializeGame() {
String coreFileLocation = getSystemStorageLocation() + RES_FILENAME; String coreFileLocation = getSystemStorageLocation() + RES_FILENAME;
File file = new File(coreFileLocation); File file = new File(coreFileLocation);
if (file.exists()) { if (file.exists()) {
mainDisplay(); forceResDownload(file);
} else { } else {
FrameLayout _videoLayout = new FrameLayout(this); FrameLayout _videoLayout = new FrameLayout(this);
setContentView(_videoLayout, setContentView(_videoLayout,
File diff suppressed because it is too large Load Diff
+84 -26
View File
@@ -1,26 +1,84 @@
#NAME:The KOR #NAME:Tergrid Commander
#DESC:The Kor never stand down.Golem-Skin Gauntlets (MRD) *1 #DESC:The Tergrid Commander Deck
Plains (8ED) *4 #DESC:Refined for Wagic by Bob
Plains (8ED) *4 #HINT:castpriority(commander,*)
Bonesplitter (MRD) *2 Ancient Tomb (EXP) *1
Vulshok Battlegear (MRD) *1 Animate Dead (VMA) *1
Plains (MRD) *4 Arcane Signet (AFC) *1
Plains (MRD) *4 Archon of Cruelty (MH2) *1
Plains (MRD) *4 Barren Moor (C19) *1
Cranial Plating (5DN) *2 Blackblade Reforged (SS2) *1
Skyhunter Skirmisher (5DN) *2 Bojuka Bog (C19) *1
Paradise Mantle (5DN) *2 Braids, Cabal Minion (EMA) *1
Shuko (BOK) *2 Butcher of Malakir *1
Umezawa's Jitte (BOK) *2 Charcoal Diamond *1
Kor Duelist (ZEN) *2 Command Beacon (PZ1) *1
Spidersilk Net (ZEN) *1 Commander's Sphere (C19) *1
Bone Saw (CFX) *2 Corrupt *1
Armament Master (ZEN) *3 Crypt Ghast (GTC) *1
Lone Missionary (ROE) *2 Damnation (MM3) *1
Pennon Blade (ROE) *1 Dreadhorde Invasion (WAR) *1
Kor Line-Slinger (ROE) *2 Elvish Doomsayer *1
Kitesail Apprentice (WWK) *2 Fell Specter *1
Stoneforge Mystic (WWK) *2 Geier Reach Sanitarium (C19) *1
Accorder's Shield (SOM) *2 Gilded Lotus *1
Swords to Plowshares (EVT) *2 Grave Pact (CMD) *1
Kor Hookmaster (EVT) *2 Gray Merchant of Asphodel *1
Hedron Archive (C19) *1
Hymn to Tourach *1
Hypnotic Specter *1
Korlash, Heir to Blackblade *1
Leaden Myr *1
Lightning Greaves (AFC) *1
Liliana of the Dark Realms *1
Liliana, Dreadhorde General (WAR) *1
Liliana's Triumph (WAR) *1
Lotus Petal (MB1) *1
Megrim *1
Memory Jar (FVR) *1
Mind Stone (AFC) *1
Mortuary Mire *1
Mox Jet *1
Necrogen Mists (MRD) *1
Night's Whisper (EMA) *1
No Mercy (MP2) *1
Oppression (7ED) *1
Painful Quandary *1
Palladium Myr (MB1) *1
Phyrexian Arena (TD0) *1
Phyrexian Obliterator *1
Plaguecrafter (C19) *1
Pox (ME1) *1
Ravenous Chupacabra (MB1) *1
Reliquary Tower (M13) *1
Sangromancer (MBS) *1
Shadowspear (THB) *1
Sheoldred, Whispering One *1
Smallpox (M12) *1
Sol Ring (C19) *1
Solemn Simulacrum (TSR) *1
Soul Shatter (ZNR) *1
Steel Hellkite (C17) *1
Strip Mine (EXP) *1
Swamp (2XM) *4
Swamp (OTJ) *4
Swamp (MKM) *4
Swamp (WOE) *4
Swamp (LCI) *4
Swamp (DSK) *4
Swamp (BLB) *3
Sword of Feast and Famine (MPS) *1
Syr Konrad, the Grim *1
Temple of the False God *1
The Eldest Reborn *1
Thought Vessel (MB1) *1
Thoughtseize (2XM) *1
Thran Dynamo (C19) *1
Tinybones, Trinket Thief (JMP) *1
Tourach, Dread Cantor (MH2) *1
Urborg, Tomb of Yawgmoth (TSR) *1
Whip of Erebos (THS) *1
Witch of the Moors (JMP) *1
Witch's Cottage (ELD) *1
Worn Powerstone (PZ1) *1
#CMD:Tergrid, God of Fright (KHM) *1
+1 -1
View File
@@ -1,4 +1,4 @@
#NAME:Krenko's Hellrider #NAME:Hellrider
#DESC:Standard R Aggro #DESC:Standard R Aggro
#DESC:ISD-M13-RTR #DESC:ISD-M13-RTR
#HINT:combo hold(Hellrider|myhand)^until(creature|mybattlefield)^cast(Hellrider|myhand)^restriction{type(creature|mybattlefield)~morethan~2}^totalmananeeded({2}{R}{R}) #HINT:combo hold(Hellrider|myhand)^until(creature|mybattlefield)^cast(Hellrider|myhand)^restriction{type(creature|mybattlefield)~morethan~2}^totalmananeeded({2}{R}{R})
+81 -40
View File
@@ -1,40 +1,81 @@
#NAME:Wipe them out! #NAME:Belbe Commander
#DESC:Modern RBW Control #DESC:Deck by apparently (tappedout.net)
#HINT:castpriority(enchantment,sorcery,artifact,instant) #DESC:Refined for Wagic by Bob
#HINT:combo hold(Devour Flesh|myhand)^until(creature|opponentbattlefield)^cast(Devour Flesh|myhand)^totalmananeeded({1}{B}) #HINT:castpriority(commander,*)
#HINT:combo hold(Pyroclasm|myhand)^cast(Pyroclasm|myhand)^restriction{type(creature[toughness<=2]|opponentbattlefield)~morethan~1}~totalmananeeded({1}{R}) Ancient Stone Idol
#HINT:combo hold(Wrath of God|myhand)^cast(Wrath of God|myhand)^restriction{type(creature|opponentbattlefield)~morethan~1}^totalmananeeded({2}{W}{W}) Apex Devastator
#HINT:combo hold(Damnation|myhand)^cast(Damnation|myhand)^restriction{type(creature|opponentbattlefield)~morethan~1}^totalmananeeded({2}{B}{B}) Archetype of Endurance
#HINT:combo hold(Final Judgment|myhand)^cast(Final Judgment|myhand)^restriction{type(creature|opponentbattlefield)~morethan~1}^totalmananeeded({4}{W}{W}) Artisan of Kozilek
Bane of Bala Ged
#22 spells Beacon of Unrest
#8 2-cc Bellowing Tanglewurm
Devour Flesh * 4 Cabal Conditioning
Pyroclasm (M11) * 4 Caller of the Pack
#8 4-cc Colossus of Akros
Damnation * 4 Command Tower
Wrath of God (10E) * 4 Conduit of Ruin
#2 6-cc Copper Myr
Final Judgment * 2 Court of Ambition
#4 x-cc Cultivate
Black Sun's Zenith * 2 Dread Defiler
Rakdos's Return * 2 Eldrazi Conscription
Exsanguinate
#8 artifacts Farseek
Elixir of Immortality * 2 Fierce Empath
Staff of Nin * 4 Forest (4ED) *4
Venser's Journal * 2 Forest (NEO) *4
Forest (ONE) *4
#4 enchantments Forest (SNC) *4
Lightmine Field * 4 Garruk's Uprising
Gilanra, Caller of Wirewood
#26 lands God-Pharaoh's Statue
Plateau (ME4) * 4 Grave Betrayal
Badlands (ME4) * 4 Helm of the Host
Scrubland (ME4) * 4 Hooded Blightfang
Akoum Refuge * 4 Horizon Stone
Isolated Chapel * 4 In Garruk's Wake
Clifftop Retreat * 2 Josu Vess, Lich Knight
Urborg, Tomb of Yawgmoth * 1 Kodama's Reach (CMD)
Plains (CHK) * 2 Leaden Myr
Swamp (RTR) * 1 Leechridden Swamp
Lim-Dul's Hex
Loxodon Warhammer (10E)
Loyal Subordinate
Mardu Shadowspear
Mirror Shield
Night Market Lookout
Oblivion Sower
Pathrazer of Ulamog
Phyrexian Juggernaut
Phyrexian Triniform
Plague Spitter
Planar Bridge
Platinum Emperion
Polyraptor
Pulse Tracker
Rampant Growth
Return of the Wildspeaker
Sanctum of Stone Fangs
Sandstone Oracle
Sandwurm Convergence
Skull Storm
Skyclave Relic
Sol Ring
Staff of Nin
Swamp (ONE) *4
Swamp (NEO) *4
Swamp (SNC) *4
Swamp (4ED) *3
The Immortal Sun
Thornbow Archer
Thought Vessel
Three Visits
Thunderfoot Baloth
Torment of Hailfire
Ulamog's Crusher
Undergrowth Stadium
Urborg, Tomb of Yawgmoth
Vicious Conquistador
Yavimaya, Cradle of Growth
Zendikar Resurgent
#CMD:Belbe, Corrupted Observer (*) *1
+19 -27
View File
@@ -1,27 +1,19 @@
#NAME: Kai Buide 1999 #NAME:Budde's Ponza
#DESC: 1999 World Championship Deck #DESC:Deck by Kai Budde, 2003
#DESC: by Kai Buide Dwarven Blastminer *2
Mountain (*) *13 Rorix Bladewing *2
Voltaic Key (*) * 4 Siege-Gang Commander *3
Thran Dynamo (*) * 4 Hammer of Bogardan *2
Grim Monolith (*) * 4 Lay Waste *4
Fire Diamond (*) *4 Molten Rain *4
Mishra's Helix (*) *2 Pyrite Spellbomb *4
Worn Powerstone (*) *2 Spark Spray *3
City of Traitors (*) *4 Starstorm *4
Wildfire (*) *4 Stone Rain (8ED) *4
Masticore (*) *3 Talisman of Impulse *4
Ancient Tomb (*) *3 Mountain (8ED) *4
Karn, Silver Golem (*) *1 Mountain (7ED) *4
Covetous Dragon (*) *4 Mountain (MRD) *4
Earthquake (*) *4 Mountain (ONS) *4
Temporal Aperture (*) * 4 Mountain (ODY) *4
Forgotten Cave (ONS) *4
#SB: Mishra's Helix (*) *1
#SB: Spellshock (*) *4
#SB: Boil (*) *2
#SB: Phyrexian Processor (*) *1
#SB: Cursed Scroll (*) *4
#SB: Rack and Ruin (*) *2
#SB: Shattering Pulse (*) *2
+92 -30
View File
@@ -1,30 +1,92 @@
#NAME:Turbo Stasi #NAME:Bello Commander
#DESC:Black Summer 1996 #DESC:Bloomburrow Precon Deck
City of Brass (*) *4 #DESC:Refined for Wagic by Bob
Island (*) *13 #HINT:castpriority(commander,*)
Underground River (*) *4 #HINT:alwaysattackwith(creature[Elemental])
Boomerang (*) *4 Abrade (BLC) (*) * 1
Force of Will (*) *4 Arcane Signet (BLC) (*) * 1
Recall (*) *2 Beast Within (BLC) (*) * 1
Kismet (*) *2 Berserkers' Onslaught (BLC) (*) * 1
Land Tax (*) *1 Big Score (BLC) (*) * 1
Stasis (*) *4 Blasphemous Act (*) * 1
Despotic Scepter (*) *3 Bristling Backwoods (*) * 1
Feldon's Cane (*) *2 Burnished Hart (BLC) (*) * 1
Howling Mine (*) *4 Chaos Warp (*) * 1
Ivory Tower (*) *2 Cinder Glade (BLC) (*) * 1
Zuran Orb (*) *1 Command Tower (BLC) (*) * 1
Black Vise (*) *2 Copperline Gorge (BLC) (*) * 1
Counterspell (*) *4 Court of Embereth (*) * 1
Adarkar Wastes (*) *4 Cultivate (BLC) (*) * 1
Decimate (BLC) (*) * 1
#SB: Kismet (*) *1 Domri, Anarch of Bolas (BLC) (*) * 1
#SB: Wall of Air (*) *2 Esika's Chariot (BLC) (*) * 1
#SB: Arcane Denial (*) *4 Etali, Primal Storm (BLC) (*) * 1
#SB: Blue Elemental Blast (*) *2 Evercoat Ursine (BLC) (*) * 1
#SB: Disenchant (*) *2 Evolving Wilds (BLC) (*) * 1
#SB: Hydroblast (*) *2 Exotic Orchard (BLC) (*) * 1
#SB: Lodestone Bauble (*) *1 Explore (BLC) (*) * 1
#SB: Mana Short (*) *3 Fanatic of Rhonas (*) * 1
#SB: Swords to Plowshares (*) *1 Farseek (BLC) (*) * 1
#SB: Lim-Dul's Vault (*) *4 Fellwar Stone (BLC) (*) * 1
Forest (BLB) (*) * 10
Forest (MH3) (*) * 4
Forest (LCI) (*) * 2
Forgotten Cave (BLC) (*) * 1
Frontier Warmonger (*) * 1
Game Trail (BLC) (*) * 1
Garruk's Packleader (BLC) (*) * 1
Garruk's Uprising (BLC) (*) * 1
Ghalta, Primal Hunger (BLC) (*) * 1
Gilded Lotus (BLC) (*) * 1
Goblin Anarchomancer (*) * 1
Goreclaw, Terror of Qal Sisma (BLC) (*) * 1
Grumgully, the Generous (BLC) (*) * 1
Gruul Signet (BLC) (*) * 1
Gruul Turf (BLC) (*) * 1
Gruul War Chant (*() * 1
Harmonize (BLC) (*) * 1
Hedron Archive (BLC) (*) * 1
Kodama of the East Tree (BLC) (*) * 1
Kona, Rescue Beastie (*) * 1
Llanowar Loamspeaker (BLC) (*) * 1
Lotus Cobra (BLC) (*) * 1
Mind Stone (BLC) (*) * 1
Mossfire Valley (BLC) (*) * 1
Mosswort Bridge (BLC) (*) * 1
Mountain (BLB) (*) * 4
Mountain (MH3) (*) * 4
Nature's Will (*) * 1
Ohran Frostfang (*) * 1
Outpost Siege (BLC) (*) * 1
Path of Discovery (BLC) (*) * 1
Primeval Bounty (BLC) (*) * 1
Prosperous Bandit (BLC) (*) * 1
Rampaging Baloths (BLC) (*) * 1
Rampant Growth (BLC) (*) * 1
Reliquary Tower (BLC) (*) * 1
Rolling Hamsphere (BLC) (*) * 1
Rootbound Crag (BLC) (*) * 1
Rugged Highlands (*) * 1
Sakura-Tribe Elder (BLC) (*) * 1
Sheltered Thicket (BLC) (*) * 1
Sol Ring (BLC) (*) * 1
Spine of Ish Sah (BLC) (*) * 1
Starstorm (BLC) (*) * 1
Street Riot (*) * 1
Sunbird's Invocation (BLC) (*) * 1
Taiga (*) * 1
Talisman of Impulse (BLC) (*) * 1
Temple of Abandon (BLC) (*) * 1
Tendershoot Dryad (BLC) (*) * 1
Terramorphic Expanse (BLC) (*) * 1
The Immortal Sun (*) * 1
The Shattered States Era (*) * 1
Thickest in the Thicket (BLC) (*) * 1
Thought Vessel (BLC) (*) * 1
Thran Dynamo (BLC) (*) * 1
Tranquil Thicket (BLC) (*) * 1
Unnatural Growth (BLC) (*) * 1
Warstorm Surge (BLC) (*) * 1
Wildsear, Scouring Maw (BLC) (*) * 1
Wooded Ridgeline (BLC) (*) * 1
#CMD:Bello, Bard of the Brambles (*) * 1
+1 -1
View File
@@ -1,4 +1,4 @@
#NAME: The New Mutatants #NAME:Mutants
#DESC: The First Ikoria Mutation Deck #DESC: The First Ikoria Mutation Deck
Arboreal Grazer (*) *4 Arboreal Grazer (*) *4
Pollywog Symbiote (*) *3 Pollywog Symbiote (*) *3
+28 -93
View File
@@ -1,93 +1,28 @@
#NAME:Golgari ramp #NAME:Wipe Them Out!
#DESC:The first Commander Format Deck #DESC:Modern RBW Control
#HINT:castpriority(commander,*) #HINT:castpriority(creature,enchantment,sorcery,artifact)
Mardu Shadowspear (*) *1 #HINT:combo hold(Cruel Edict|myhand)^until(creature|opponentbattlefield)^cast(Cruel Edict|myhand)^totalmananeeded({1}{B})
Night Market Lookout (*) *1 #HINT:combo hold(Pyroclasm|myhand)^cast(Pyroclasm|myhand)^restriction{type(creature[toughness<=2]|opponentbattlefield)~morethan~1}~totalmananeeded({1}{R})
Pulse Tracker (*) *1 #HINT:combo hold(Wrath of God|myhand)^cast(Wrath of God|myhand)^restriction{type(creature|opponentbattlefield)~morethan~1}^totalmananeeded({2}{W}{W})
Thornbow Archer (*) *1 #HINT:combo hold(Damnation|myhand)^cast(Damnation|myhand)^restriction{type(creature|opponentbattlefield)~morethan~1}^totalmananeeded({2}{B}{B})
Vicious Conquistador (*) *1 #HINT:alwaysattackwith(Blightsteel Colossus)
Archers' Parapet (*) *1 Blightsteel Colossus * 2
Shepherd of Rot (*) *1 Cruel Edict (10E) * 4
Loyal Subordinate (*) *1 Pyroclasm *4
Crypt Ghast (*) *1 Damnation * 4
Rankle, Master of Pranks (*) *1 Wrath of God (10E) * 4
Spawn of Mayhem (*) *1 Black Sun's Zenith * 2
Twilight Prophet (*) *1 Rakdos's Return * 2
Conduit of Ruin (*) *1 Elixir of Immortality * 2
Duplicant (*) *1 Staff of Nin * 4
Oblivion Sower (*) *1 Venser's Journal * 2
Wurmcoil Engine (*) *1 Lightmine Field * 4
World Breaker (*) *1 Plateau (ME4) * 4
Platinum Emperion (*) *1 Badlands (ME4) * 4
Apex Devastator (*) *1 Scrubland (ME4) * 4
Blightsteel Colossus (*) *1 Akoum Refuge * 4
Ugin, the Ineffable (*) *1 Isolated Chapel * 4
Malakir Rebirth (*) *1 Clifftop Retreat * 2
Nature's Claim (*) *1 Urborg, Tomb of Yawgmoth * 1
Veil of Summer (*) *1 Plains (CHK) * 2
Vicious Rumors (*) *1 Swamp (RTR) * 1
Worldly Tutor (*) *1
Assassin's Trophy (*) *1
Damnable Pact (*) *1
Demonic Tutor (*) *1
Exsanguinate (*) *1
Farseek (*) *1
Heroic Intervention (*) *1
Rampant Growth (*) *1
Three Visits (*) *1
Torment of Hailfire (*) *1
Agadeem's Awakening (*) *1
Barrier Breach (*) *1
Beast Within (*) *1
Cultivate (*) *1
Grim Tutor (*) *1
Kodama's Reach (*) *1
Toxic Deluge (*) *1
Skyshroud Claim (*) *1
Return of the Wildspeaker (*) *1
Beseech the Queen (*) *1
Turntimber Symbiosis (*) *1
Decree of Pain (*) *1
In Garruk's Wake (*) *1
Sol Ring (*) *1
Arcane Signet (*) *1
Lightning Greaves (*) *1
Swiftfoot Boots (*) *1
Talisman of Resilience (*) *1
Thought Vessel (*) *1
God-Pharaoh's Statue (*) *1
Staff of Nin (*) *1
The Immortal Sun (*) *1
Ward of Bones (*) *1
Cryptolith Rite (*) *1
Sanctum of Stone Fangs (*) *1
Phyrexian Arena (*) *1
Retreat to Hagra (*) *1
Court of Ambition (*) *1
Eldrazi Conscription (*) *1
Sandwurm Convergence (*) *1
Ancient Tomb (*) *1
Blast Zone (*) *1
Bojuka Bog (*) *1
Cabal Coffers (*) *1
Castle Garenbrig (*) *1
Castle Locthwain (*) *1
Command Tower (*) *1
Crawling Barrens (*) *1
Forest (*) *7
Leechridden Swamp (*) *1
Llanowar Wastes (*) *1
Nurturing Peatland (*) *1
Overgrown Tomb (*) *1
Phyrexian Tower (*) *1
Prismatic Vista (*) *1
Reliquary Tower (*) *1
Sanctum of Ugin (*) *1
Swamp (*) *5
Twilight Mire (*) *1
Undergrowth Stadium (*) *1
Urborg, Tomb of Yawgmoth (*) *1
Verdant Catacombs (*) *1
War Room (*) *1
Woodland Cemetery (*) *1
#CMD:Belbe, Corrupted Observer (*) *1
+80 -88
View File
@@ -1,90 +1,82 @@
#NAME:Omnath Commander #NAME:Omnath Commander
#DESC:The Budget league Omnath Deck #DESC:Deck concept by HurricaneHands
#DESC:(tappedout.net)
#DESC:Refined for Wagic by Bob
#HINT:castpriority(commander,*) #HINT:castpriority(commander,*)
Smokebraider (*) *1 Ancient Greenwarden
Cloudkin Seer (*) *1 Avenger of Zendikar
Flickerwisp (*) *1 Azusa, Lost but Seeking
Kazandu Mammoth (*) *1 Blighted Woodland
Risen Reef (*) *1 Cinder Glade
Soulherder (*) *1 Circuitous Route
Springbloom Druid (*) *1 Command Tower
Angel of Finality (*) *1 Commander's Sphere
Archaeomancer (*) *1 Court of Bounty
Emeria Angel (*) *1 Courser of Kruphix
Felidar Guardian (*) *1 Crash of Rhino Beetles
Mina and Denn, Wildborn (*) *1 Crucible of Worlds
Slithermuse (*) *1 Cultivate
Acidic Slime (*) *1 Doubling Season
Cataclysmic Gearhulk (*) *1 Dragonmaster Outcast
Cavalier of Thorns (*) *1 Elvish Reclaimer
Mnemonic Wall (*) *1 Evolving Wilds
Mulldrifter (*) *1 Explore
Yorion, Sky Nomad (*) *1 Farseek
Multani, Yavimaya's Avatar (*) *1 Far Wanderings
Phylath, World Sculptor (*) *1 Feed the Clan
Rampaging Baloths (*) *1 Fiery Emancipation
Omnath, Locus of Rage (*) *1 Forest (ZEN) *4
Ephemerate (*) *1 Forest (ONE) *4
Gelatinous Genesis (*) *1 Forest (NEO) *4
Path to Exile (*) *1 Forest (SNC) *4
Spikefield Hazard (*) *1 Forest (M10) *4
Wildest Dreams (*) *1 Forest
Disdainful Stroke (*) *1 Gaea's Revenge
Growth Spiral (*) *1 Gruul Guildgate
Reap the Past (*) *1 Harrow
Sejiri Shelter (*) *1 Incandescent Soulstoke
Starstorm (*) *1 Khalni Heart Expedition
Eerie Interlude (*) *1 Liege of the Tangle
Far Wanderings (*) *1 Lotus Cobra
Ghostly Flicker (*) *1 Mina and Denn, Wildborn
Harrow (*) *1 Mountain (ONE) *4
Release to the Wind (*) *1 Mountain (NEO) *4
Roiling Regrowth (*) *1 Mountain *4
Silundi Vision (*) *1 Multani, Yavimaya's Avatar
Whirlwind Denial (*) *1 Myriad Landscape
Circuitous Route (*) *1 Naturalize (8ED)
Crush Contraband (*) *1 Nissa's Renewal
Fact or Fiction (*) *1 Nissa, Vastwood Seer
Summary Dismissal (*) *1 Nissa, Worldwaker
Sylvan Reclamation (*) *1 Nissa's Zendikon
Time Wipe (*) *1 Nyxbloom Ancient
Tragic Arrogance (*) *1 Phylath, World Sculpture
Urban Evolution (*) *1 Phytotitan
Austere Command (*) *1 Radha, Heart of Keld
Hour of Revelation (*) *1 Rampaging Baloths
Nissa's Renewal (*) *1 Rampant Growth
Sublime Epiphany (*) *1 Ranger's Path
Ondu Inversion (*) *1 Rhythm of the Wild
Khalni Heart Expedition (*) *1 Rites of Flourishing
Rites of Flourishing (*) *1 Roiling Regrowth
Court of Bounty (*) *1 Rootbound Crag
Felidar Retreat (*) *1 Rubblehulk
Retreat to Emeria (*) *1 Sarkhan's Unsealing
Wilderness Reclamation (*) *1 Scute Mob
Zendikar's Roil (*) *1 Scute Swarm
Blighted Woodland (*) *1 Second Harvest
Command Tower (*) *1 Skyshroud Claim
Evolving Wilds (*) *1 Sol Ring
Exotic Orchard (*) *1 Temple of Abandon
Field of Ruin (*) *1 Terramorphic Expanse
Forest (*) *7 Terror of the Peaks
Frontier Bivouac (*) *1 Thicket Crasher
Gruul Guildgate (*) *1 Tornado Elemental
Gruul Turf (*) *1 Undergrowth Champion
Island (*) *3 Vandalblast
Jungle Shrine (*) *1 Warstorm Surge
Krosan Verge (*) *1 Where Ancients Tread
Mountain (*) *4 Wooded Foothills
Myriad Landscape (*) *1 Zendikar Incarnate
Mystic Monastery (*) *1 Zendikar's Roil
Naya Panorama (*) *1 #CMD:Omnath, Locus of Rage (*) *1
Path of Ancestry (*) *1
Plains (*) *4
Scavenger Grounds (*) *1
Seaside Citadel (*) *1
Selesnya Guildgate (*) *1
Selesnya Sanctuary (*) *1
Simic Growth Chamber (*) *1
Simic Guildgate (*) *1
Terramorphic Expanse (*) *1
#CMD:Omnath, Locus of Creation (*) *1
+85 -101
View File
@@ -1,103 +1,87 @@
#NAME:Scion Of The Ur-Dragon #NAME:Lyra Commander
#DESC:The Scion Commander Deck #DESC:Deck by guitrunks01
#DESC:(archidekt.com)
#DESC:Refined for Wagic by Bob
#HINT:castpriority(commander,*) #HINT:castpriority(commander,*)
Aggravated Assault (*) * 1 #HINT:combo hold(Mass Calcify|myhand)^cast(Mass Calcify|myhand)^restriction{type(creature|opponentbattlefield)~morethan~2}^totalmananeeded({2}{W}{W})
Ancient Tomb (*) * 1 #HINT:combo hold(Blinding Light|myhand)^cast(Blinding Light|myhand)^restriction{type(creature|opponentbattlefield)~morethan~2}^totalmananeeded({3}{W}{W})
Arcane Signet (*) * 1 Always Watching (*) * 1
Arid Mesa (*) * 1 Akroma's Memorial (m13) (*) * 1
Atarka, World Render (*) * 1 Akroma, Angel of Wrath (c20) (*) * 1
Balefire Dragon (*) * 1 Angel of Finality (moc) (*) * 1
Bladewing the Risen (*) * 1 Angel of Invention (kld) (*) * 1
Blood Crypt (*) * 1 Angel of Jubilation (avr) (*) * 1
Bloom Tender (*) * 1 Angel of Serenity (c21) (*) * 1
Breeding Pool (*) * 1 Angel of the Dire Hour (plst) (*) * 1
Cascading Cataracts (*) * 1 Angel of the Ruins (c21) (*) * 1
Cavern of Souls (*) * 1 Angelic Accord (plst) (*) * 1
Chromatic Lantern (*) * 1 Angelic Arbiter (m11) (*) * 1
Chromatic Orrery (*) * 1 Angelic Field Marshal (*) * 1
Chrome Mox (*) * 1 Arcane Signet (blc) (*) * 1
Coalition Relic (*) * 1 Avacyn, Angel of Hope (cmm) (*) * 1
Command Beacon (*) * 1 Baneslayer Angel (m21) (*) * 1
Bishop of Wings (plst) (*) * 1
Blinding Light (*) * 1
Boon-Bringer Valkyrie (mom) (*) * 1
Burnished Hart (dsc) (*) * 1
Command Tower (*) * 1 Command Tower (*) * 1
Crux of Fate (*) * 1 Cosmos Elixir (khm) (*) * 1
Crystal Quarry (*) * 1 Court of Grace (*) * 1
Curiosity (*) * 1 Crush Contraband (scd) (*) * 1
Cyclonic Rift (*) * 1 Darksteel Citadel (c18) (*) * 1
Debtors' Knell (*) * 1 Divine Sacrament (*) * 1
Defense of the Heart (*) * 1 Emeria Shepherd (znc) (*) * 1
Demonic Tutor (*) * 1 Emeria, the Sky Ruin (plst) (*) * 1
Dragonlord Silumgar (*) * 1 Endless Atlas (cmm) (*) * 1
Drakuseth, Maw of Flames (*) * 1 Entreat the Angels (avr) (*) * 1
Faeburrow Elder (*) * 1 Firemane Commando (moc) (*) * 1
Farseek (*) * 1 Generous Gift (*) * 1
Fearsome Awakening (*) * 1 Ghostly Prison (*) * 1
Flooded Strand (*) * 1 Herald of War (mic) (*) * 1
Force of Will (*) * 1 Inspiring Overseer (blc) (*) * 1
Godless Shrine (*) * 1 Karmic Guide (ulg) (*) * 1
Greater Good (*) * 1 Lightning Greaves (m3c) (*) * 1
Grim Tutor (*) * 1 Linvala, Keeper of Silence (*) * 1
Hallowed Fountain (*) * 1 Luminarch Ascension (a25) (*) * 1
Haven of the Spirit Dragon (*) * 1 Marble Diamond (*) * 1
Hellkite Charger (*) * 1 Mass Calcify (m15) (*) * 1
Hellkite Tyrant (*) * 1 Minas Tirith (ltr) (*) * 1
Indatha Triome (*) * 1 Path to Exile (pf20) (*) * 1
Karrthus, Tyrant of Jund (*) * 1 Plains (bro) (*) * 4
Keiga, the Tide Star (*) * 1 Plains (woe) (*) * 4
Ketria Triome (*) * 1 Plains (dsk) (*) * 4
Kokusho, the Evening Star (*) * 1 Plains (lci) (*) * 4
Lightning Greaves (*) * 1 Plains (mkm) (*) * 4
Living Death (*) * 1 Plains (blb) (*) * 3
Lotus Petal (*) * 1 Platinum Angel (plst) (*) * 1
Malfegor (*) * 1 Pristine Talisman (*) * 1
Mana Confluence (*) * 1 Quicksilver Amulet (brr) (*) * 1
Mana Crypt (*) * 1 Radiant Fountain (*) * 1
Mana Drain (*) * 1 Rebuff the Wicked (tsr) (*) * 1
Marsh Flats (*) * 1 Revitalize (*) * 1
Misty Rainforest (*) * 1 Righteous Valkyrie (khm) (*) * 1
Moltensteel Dragon (*) * 1 Segovian Angel (plst) (*) * 1
Mox Amber (*) * 1 Sephara, Sky's Blade (cmm) (*) * 1
Mox Diamond (*) * 1 Seraph Sanctuary (*) * 1
Mox Opal (*) * 1 Serra Angel (*) * 1
Mox Tantalite (*) * 1 Serra Ascendant (*) * 1
Nicol Bolas (*) * 1 Serra Avenger (*) * 1
Niv-Mizzet, the Firemind (*) * 1 Serra the Benevolent (mh1) (*) * 1
Overgrown Tomb (*) * 1 Shadowspear (plst) (*) * 1
Path of Ancestry (*) * 1 Sigarda's Splendor (mid) (*) * 1
Polluted Delta (*) * 1 Silence (m14) (*) * 1
Prismatic Geoscope (*) * 1 Sol Ring (m3c) (*) * 1
Raugrin Triome (*) * 1 Solemn Simulacrum (dsc) (*) * 1
Sacred Foundry (*) * 1 Snow-Covered Plains (mh1) (*) * 4
Savage Ventmaw (*) * 1 Starnheim Aspirant (j22) (*) * 1
Savai Triome (*) * 1 Steel Seraph (bro) (*) * 1
Scalding Tarn (*) * 1 Swiftfoot Boots (blc) (*) * 1
Sensei's Divining Top (*) * 1 Swords to Plowshares (cns) (*) * 1
Silumgar, the Drifting Death (*) * 1 Test of Endurance (*) * 1
Skithiryx, the Blight Dragon (*) * 1 The Book of Exalted Deeds (afr) (*) * 1
Skyclave Relic (*) * 1 Thraben Watcher (mh2) (*) * 1
Skyshroud Claim (*) * 1 Thran Dynamo (uds) (*) * 1
Sneak Attack (*) * 1 Valkyrie Harbinger (j22) (*) * 1
Sol Ring (*) * 1 Worn Powerstone (*) * 1
Spoils of Victory (*) * 1 Youthful Valkyrie (fdn) (*) * 1
Steam Vents (*) * 1 #CMD:Lyra Dawnbringer (dmr) (*) * 1
Stomping Ground (*) * 1
Swiftfoot Boots (*) * 1
Sword of Feast and Famine (*) * 1
Sylvan Library (*) * 1
Temple Garden (*) * 1
Temur Ascendancy (*) * 1
Teneb, the Harvester (*) * 1
Terror of the Peaks (*) * 1
The Ur-Dragon (*) * 1
Three Visits (*) * 1
Unburial Rites (*) * 1
Utvara Hellkite (*) * 1
Vaevictis Asmadi, the Dire (*) * 1
Vampiric Tutor (*) * 1
Verdant Catacombs (*) * 1
Watery Grave (*) * 1
Wheel of Sun and Moon (*) * 1
Windswept Heath (*) * 1
Wooded Foothills (*) * 1
Yosei, the Morning Star (*) * 1
Zagoth Triome (*) * 1
#CMD:Scion of the Ur-Dragon (*) * 1
+23 -79
View File
@@ -1,79 +1,23 @@
#NAME:Phantom Premonition #NAME:Ashenmoor
#HINT:castpriority(commander,*) #DESC:Deck for Wagic by Bob
Angel of Finality (*) * 1 #HINT:combo hold(Demonic Tutor|myhand)^cast(Demonic Tutor|myhand) targeting(Ashenmoor Liege|mylibrary)^totalmananeeded({1}{B})
Angel of Serenity (*) * 1 #HINT:alwaysattackwith(Ashenmoor Gouger)
Arcane Artisan (*) * 1 #HINT:dontblockwith(Ashenmoor Liege)
Arcane Signet (*) * 1 Ashenmoor Gouger (*) * 4
Azorius Chancery (*) * 1 Ashenmoor Liege (*) * 4
Azorius Guildgate (*) * 1 Badlands (*) * 4
Azorius Signet (*) * 1 Demonic Tutor (CMM) (*) * 2
Banishing Light (*) * 1 Dragonskull Summit (*) * 4
Behold the Multiverse (*) * 1 Emberstrike Duo (*) * 4
Brago, King Eternal (*) * 1 Footlight Fiend (*) * 4
Burnished Hart (*) * 1 Glass of the Guildpact (*) * 4
Cleansing Nova (*) * 1 Goblin Outlander (*) * 2
Cloudblazer (*) * 1 Mountain (DSK) (*) * 4
Cloudgoat Ranger (*) * 1 Mountain (MKM) (*) * 2
Command Tower (*) * 1 Rakdos Cackler (*) * 4
Commander's Sphere (*) * 1 Rakdos Shred-Freak (*) * 4
Cosmic Intervention (*) * 1 Shivan Zombie (*) * 2
Cryptic Caves (*) * 1 Spike Jester (*) * 4
Curse of the Swine (*) * 1 Swamp (DSK) (*) * 4
Day of the Dragons (*) * 1 Swamp (MKM) (*) * 2
Eerie Interlude (*) * 1 Terminate (2X2) (*) * 2
Empyrean Eagle (*) * 1
Ethereal Valkyrie (*) * 1
Evangel of Heliod (*) * 1
Flickerwisp (*) * 1
Gates of Istfell (*) * 1
Geist-Honored Monk (*) * 1
Ghostly Flicker (*) * 1
Ghostly Prison (*) * 1
Glacial Floodplain (*) * 1
Goldnight Commander (*) * 1
Hero of Bretagard (*) * 1
Inspired Sphinx (*) * 1
Iron Verdict (*) * 1
Island (*) * 12
Kor Cartographer (*) * 1
Marble Diamond (*) * 1
Marshal's Anthem (*) * 1
Meandering River (*) * 1
Meteor Golem (*) * 1
Migratory Route (*) * 1
Mind Stone (*) * 1
Mist Raven (*) * 1
Mistmeadow Witch (*) * 1
Momentary Blink (*) * 1
Mulldrifter (*) * 1
Myriad Landscape (*) * 1
Niko Defies Destiny (*) * 1
Opal Palace (*) * 1
Plains (*) * 13
Ravenform (*) * 1
Replicating Ring (*) * 1
Restoration Angel (*) * 1
Return to Dust (*) * 1
Sage of the Beyond (*) * 1
Saw It Coming (*) * 1
Sea Gate Oracle (*) * 1
Sejiri Refuge (*) * 1
Sky Diamond (*) * 1
Sol Ring (*) * 1
Soulherder (*) * 1
Spectral Deluge (*) * 1
Stoic Farmer (*) * 1
Storm Herd (*) * 1
Sun Titan (*) * 1
Surtland Elementalist (*) * 1
Swiftfoot Boots (*) * 1
Synthetic Destiny (*) * 1
Tales of the Ancestors (*) * 1
Thunderclap Wyvern (*) * 1
Tranquil Cove (*) * 1
Vega, the Watcher (*) * 1
Wall of Omens (*) * 1
Warhorn Blast (*) * 1
Whirler Rogue (*) * 1
Windfall (*) * 1
#CMD:Ranar the Ever-Watchful (*) * 1
+22 -81
View File
@@ -1,81 +1,22 @@
#NAME:Draconic Rage #NAME:Goblin Spike
#DESC:The First D&D Deck #DESC:Deck for Wagic by Bob
#HINT:castpriority(commander,*) #HINT:castpriority(creature,sorcery)
Bogardan Hellkite (*) *1 #HINT:combo hold(Lava Spike|myhand)^cast(Lava Spike|myhand)^restriction{turn:5}^totalmananeeded({R})
Demanding Dragon (*) *1 #HINT:combo hold(Goblin War Strike|myhand)^cast(Goblin War Strike|myhand)^restriction{turn:7}^totalmananeeded({R})
Dragonmaster Outcast (*) *1 Foundry Street Denizen (*) * 4
Hoard-Smelter Dragon (*) *1 Goblin Chieftain (*) * 4
Opportunistic Dragon (*) *1 Goblin Lackey (*) * 4
Scourge of Valkas (*) *1 Goblin Piledriver (*) * 4
Shivan Hellkite (*) *1 Goblin Rabblemaster (*) * 4
Skyline Despot (*) *1 Goblin Ringleader (*) * 2
Skyship Stalker (*) *1 Goblin Warchief (*) * 2
Taurean Mauler (*) *1 Goblin War Strike (*) * 2
Terror of Mount Velus (*) *1 Lava Spike (*) * 4
Thunderbreak Regent (*) *1 Legion Loyalist (*) * 4
Chameleon Colossus (*) *1 Mountain (OTJ) (*) * 4
Atarka, World Render (*) *1 Mountain (BLB) (*) * 4
Earth-Cult Elemental (*) *1 Mountain (WOE) (*) * 4
Anger (*) *1 Mountain (DSK) (*) * 4
Dragonlord's Servant (*) *1 Mountain (LCI) (*) * 4
Savage Ventmaw (*) *1 Mountain (MKM) (*) * 2
Dragonspeaker Shaman (*) *1 Muxus, Goblin Grandee (*) * 4
Chain Reaction (*) *1
Rishkar's Expertise (*) *1
Shamanic Revelation (*) *1
Rile (*) *1
Cultivate (*) *1
Explore (*) *1
Rampant Growth (*) *1
Magmaquake (*) *1
Spit Flame (*) *1
Decree of Savagery (*) *1
Kindred Summons (*) *1
Return of the Wildspeaker (*) *1
Beast Within (*) *1
Return to Nature (*) *1
Dragon's Hoard (*) *1
Arcane Signet (*) *1
Commander's Sphere (*) *1
Gruul Signet (*) *1
Heirloom Blade (*) *1
Sol Ring (*) *1
Gratuitous Violence (*) *1
Outpost Siege (*) *1
Warstorm Surge (*) *1
Barbarian Class (*) *1
Colossal Majesty (*) *1
Garruk's Uprising (*) *1
Cinder Glade (*) *1
Crucible of the Spirit Dragon (*) *1
Exotic Orchard (*) *1
Game Trail (*) *1
Haven of the Spirit Dragon (*) *1
Mossfire Valley (*) *1
Mosswort Bridge (*) *1
Command Tower (*) *1
Desert (*) *1
Gruul Turf (*) *1
Path of Ancestry (*) *1
Mountain (*) *12
Forest (*) *15
Klauth, Unrivaled Ancient (*) *1
Berserker's Frenzy (*) *1
Chaos Dragon (*) *1
Maddening Hex (*) *1
Vengeful Ancestor (*) *1
Bag of Tricks (*) *1
Druid of Purification (*) *1
Indomitable Might (*) *1
Neverwinter Hydra (*) *1
Wild Endeavor (*) *1
Dragonborn Champion (*) *1
Klauth's Will (*) *1
Wulfgar of Icewind Dale (*) *1
Component Pouch (*) *1
Sword of Hours (*) *1
Underdark Rift (*) *1
#CMD:Vrondiss, Rage of Ancients (*) *1
#DNG:Tomb of Annihilation (*) *1
#DNG:Lost Mine of Phandelver (*) *1
#DNG:Dungeon of the Mad Mage (*) *1
+24 -85
View File
@@ -1,85 +1,24 @@
#NAME:Tergrid Commander #NAME:Kor Army
#DESC:The Tergrid Commander Deck #DESC:Deck by dr3amsnatcher
#HINT:castpriority(commander,*) #DESC:(tappedout.net). Refined
Mana Crypt (VMA) *1 #DESC:for Wagic by Bob
Necrogen Mists (MRD) *1 Argentum Armor (*) * 2
Animate Dead (VMA) *1 Armament Master (*) * 4
Recurring Nightmare (VMA) *1 Bladed Pinions (*) * 2
Mind Stone (AFC) *1 Bone Saw (*) * 4
Coldsteel Heart (CSP) *1 Captain's Claws (*) * 4
Steel Hellkite (C17) *1 Cranial Plating (*) * 2
Hedron Archive (C19) *1 Emeria, the Sky Ruin (*) * 1
Prismatic Vista (H1R) *1 Kabira Crossroads (*) * 2
Blackblade Reforged (SS2) *1 Kitesail Apprentice (*) * 4
Tevesh Szat, Doom of Fools (CMR) *1 Kor Duelist (*) * 4
Thespian's Stage (C19) *1 Oath of Gideon (*) * 2
Priest of Forgotten Gods (RNA) *1 Plains (ZEN) (*) * 4
Duplicant (PZ1) *1 Plains (BFZ) (*) * 4
Swamp (2XM) *19 Plains (M19) (*) * 4
Strip Mine (EXP) *1 Plains (ZNR) (*) * 4
Toxic Deluge (PZ1) *1 Plains (TMP) (*) * 2
Archon of Cruelty (MH2) *1 Stone Haven Outfitter (*) * 4
No Mercy (MP2) *1 Stone Haven Pilgrim (*) * 2
Whip of Erebos (THS) *1 Sword of Vengeance (*) * 3
Plaguecrafter (C19) *1 Zamriel, Seraph of Steel (*) * 2
Cabal Coffers (MH2) *1
Smallpox (M12) *1
Geier Reach Sanitarium (C19) *1
Pox (ME1) *1
Braids, Cabal Minion (EMA) *1
Vampiric Tutor (EMA) *1
Meteor Golem (C19) *1
Phyrexian Reclamation (JMP) *1
Damnation (MM3) *1
Mana Vault (PUMA) *1
Commander's Sphere (C19) *1
Liliana's Triumph (WAR) *1
Dream Devourer (KHM) *1
Homeward Path (PZ1) *1
Night's Whisper (EMA) *1
Grave Pact (CMD) *1
Bojuka Bog (C19) *1
Chain of Smog (ONS) *1
Village Rites (KHM) *1
Memory Jar (FVR) *1
Gonti, Lord of Luxury (MB1) *1
Tinybones, Trinket Thief (JMP) *1
Sol Ring (C19) *1
Dreadhorde Invasion (WAR) *1
Command Beacon (PZ1) *1
Solemn Simulacrum (TSR) *1
Barren Moor (C19) *1
Lotus Petal (MB1) *1
Oppression (7ED) *1
Shadowspear (THB) *1
Worn Powerstone (PZ1) *1
Arcane Signet (AFC) *1
Grim Monolith (ULG) *1
Lightning Greaves (AFC) *1
Dark Ritual (ME4) *1
Sanctum of Eternity (C19) *1
Tourach, Dread Cantor (MH2) *1
Ravenous Chupacabra (MB1) *1
Ancient Tomb (EXP) *1
Sword of Feast and Famine (MPS) *1
Witch of the Moors (JMP) *1
Thought Vessel (MB1) *1
Urborg, Tomb of Yawgmoth (TSR) *1
Thoughtseize (2XM) *1
Tyrite Sanctum (KHM) *1
Soul Shatter (ZNR) *1
Mox Diamond (FVR) *1
Thran Dynamo (C19) *1
Bloodstained Mire (ONS) *1
Sangromancer (MBS) *1
Phyrexian Arena (TD0) *1
Blast Zone (WAR) *1
Rune-Scarred Demon (MB1) *1
Demonic Tutor (MB1) *1
Polluted Delta (ONS) *1
Liliana, Dreadhorde General (WAR) *1
Cunning Rhetoric (C21) *1
Crypt Ghast (GTC) *1
Palladium Myr (MB1) *1
Myriad Landscape (C19) *1
#CMD:Tergrid, God of Fright (KHM) *1
+26 -87
View File
@@ -1,87 +1,26 @@
#NAME:Tatyova Commander #NAME:Shocking Minotaurs
#DESC:The Tatiyova Commander Deck #DESC:Deck for Wagic by Bob
#HINT:castpriority(commander,*) #HINT:combo hold(Raise Dead|myhand)^cast(Raise Dead|myhand)^restriction{type(creature[toughness>=2]|mygraveyard)~morethan~0}~totalmananeeded({B})
Mana Crypt (VMA) *1 Badlands (*) * 1
Allosaurus Shepherd (JMP) *1 Blackcleave Cliffs (*) * 2
Rimewood Falls (KHM) *1 Bloodrage Brawler (*) * 4
Explore (C19) *1 Dragonskull Summit (*) * 2
Rampant Growth (PRM) *1 Fanatic of Mogis (*) * 1
Commit // Memory (MB1) *1 Felhide Petrifier (*) * 2
Echoing Truth (C19) *1 Gnarled Scarhide (*) * 2
Mystic Sanctuary (ELD) *1 Kragma Warcaller (*) * 4
Ramunap Excavator (PRM) *1 Lightning Bolt (*) * 4
Prismatic Vista (H1R) *1 Mogis, God of Slaughter (*) * 2
Harmonize (PRM) *1 Moraug, Fury of Akoum (*) * 1
Summer Bloom (POR) *1 Mountain (DSK) (*) * 4
Mana Reflection (SHM) *1 Mountain (MKM) (*) * 3
Cyclonic Rift (MM3) *1 Mountain (WOE) (*) * 4
Upheaval (MH2) *1 Neheb, the Eternal (*) * 1
Wild Growth (AFC) *1 Neheb, the Worthy (*) * 3
Narset, Parter of Veils (WAR) *1 Rageblood Shaman (*) * 4
Timetwister (PRM) *1 Ragemonger (*) * 4
Thrasios, Triton Hero (PZ2) *1 Raise Dead (9ED) (*) * 2
Strip Mine (EXP) *1 Shock (*) * 2
Tropical Island (ME4) *1 Swamp (DSK) (*) * 4
Avenger of Zendikar (PRM) *1 Swamp (WOE) (*) * 2
Harrow (MB1) *1 Terminate (NCC) (*) * 2
Kodama's Reach (C17) *1
Fastbond (VMA) *1
Crucible of Worlds (PRM) *1
Force of Will (EMA) *1
Broken Bond (MB1) *1
Command Tower (C19) *1
Sylvan Scrying (MB1) *1
Mana Vault (PUMA) *1
Jolrael, Mwonvuli Recluse (M21) *1
Solemn Simulacrum (MB1) *1
Simic Signet (C15) *1
Reliquary Tower (C19) *1
Genesis Wave (IMA) *1
Khalni Garden (PZ1) *1
Cultivate (PZ1) *1
Yavimaya Elder (UDS) *1
Exploration (PRM) *1
Sol Ring (C19) *1
Koma, Cosmos Serpent (KHM) *1
Simic Growth Chamber (C19) *1
Command Beacon (PZ1) *1
Eternal Witness (PZ1) *1
Sylvan Library (PZ1) *1
Heroic Intervention (KLR) *1
Kinnan, Bonder Prodigy (IKO) *1
Lotus Cobra (PRM) *1
Island (UNH) *8
Archmage's Charm (H1R) *1
Dryad Arbor (TSR) *1
Finale of Devastation (WAR) *1
Arcane Signet (AFC) *1
Flooded Grove (EXP) *1
Crop Rotation (2XM) *1
Forest (2XM) *10
Lightning Greaves (AFC) *1
Scalding Tarn (MH2) *1
Ancient Tomb (EXP) *1
Sakura-Tribe Elder (MB1) *1
Seedborn Muse (C19) *1
Prophet of Kruphix (PRM) *1
Misty Rainforest (ZNE) *1
Natural Order (EMA) *1
Wayfarer's Bauble (C17) *1
Tyrite Sanctum (KHM) *1
Gaea's Cradle (USG) *1
Consecrated Sphinx (MBS) *1
Castle Vantress (ELD) *1
Mox Diamond (FVR) *1
Verdant Catacombs (MH2) *1
Primeval Titan (TSR) *1
Neoform (WAR) *1
Rampaging Baloths (C19) *1
Pongify (TSR) *1
Flooded Strand (EXP) *1
Nyxbloom Ancient (THB) *1
Nexus of Fate (M19) *1
Polluted Delta (ONS) *1
Birds of Paradise (PRM) *1
Courser of Kruphix (TSR) *1
Search for Tomorrow (MB1) *1
#CMD:Tatyova, Benthic Druid (DOM) *1
+27 -82
View File
@@ -1,82 +1,27 @@
#NAME:Ragavan Commander #NAME:Rising Panic
#DESC:The Ragavan Commander Deck #DESC: Deck for Wagic by Bob
#HINT:castpriority(commander,*) #HINT:castpriority(artifact,instant,enchantment)
Treasure Nabber (PZ2) *1 #HINT:combo hold(Rising Waters|myhand)^cast(Rising Waters|myhand)^restriction{type(Rising Waters|mybattlefield)~lessthan~1}^totalmananeeded({3}{U})
Dire Fleet Daredevil (AFC) *1 #HINT:combo hold(Dictate of Kruphix|myhand)^cast(Dictate of Kruphix|myhand)^restriction{type(Dictate of Kruphix|mybattlefield)~lessthan~1}^totalmananeeded({1}{U}{U})
Trash for Treasure (C16) *1 #HINT:combo hold(Frozen Aether|myhand)^cast(Frozen Aether|myhand)^restriction{type(Frozen Aether|mybattlefield)~lessthan~1}^totalmananeeded({3}{U})
Tome of Legends (ELD) *1 #HINT:combo hold(Propaganda|myhand)^cast(Propaganda|myhand)^restriction{type(Propaganda|mybattlefield)~lessthan~1}^totalmananeeded({2}{U})
Helm of the Host (DOM) *1 #HINT:combo hold(Overburden|myhand)^cast(Overburden|myhand)^restriction{type(Overburden|mybattlefield)~lessthan~1}^totalmananeeded({1}{U})
Coercive Recruiter (CMR) *1 #HINT:combo hold(Dream Tides|myhand)^cast(Dream Tides|myhand)^restriction{type(Dream Tides|mybattlefield)~lessthan~1}^totalmananeeded({1}{U})
World at War (ROE) *1 Anvil of Bogardan (*) * 2
Commander's Plate (CMR) *1 Black Vise (*) * 4
Neheb, the Eternal (AKR) *1 Dictate of Kruphix (*) * 3
Strike It Rich (MH2) *1 Dream Tides (*) * 3
Audacious Reshapers (C21) *1 Ebony Owl Netsuke (*) * 2
Shinka, the Bloodsoaked Keep (CHK) *1 Force of Will (*) * 4
Inventors' Fair (KLD) *1 Frozen Aether (*) * 3
Strip Mine (EXP) *1 Howling Mine (*) * 4
Embercleave (ELD) *1 Iron Maiden (*) * 2
Break Through the Line (FRF) *1 Island (4ED) (*) * 4
Valakut, the Molten Pinnacle (ZEN) *1 Island (M10) (*) * 4
Imperial Recruiter (ME2) *1 Island (ICE) (*) * 4
Tibalt's Trickery (KHM) *1 Island (M20) (*) * 4
Mogg Salvage (NMS) *1 Island (MIR) (*) * 4
Seize the Day (ODY) *1 Island (REV) (*) * 3
Mishra's Bauble (MB1) *1 Overburden (*) * 3
Hellkite Tyrant (GTC) *1 Propaganda (*) * 3
Goblin Engineer (MH1) *1 Rising Waters (*) * 4
Aggravated Assault (ONS) *1
Xorn (AFR) *1
Mana Vault (PUMA) *1
Magda, Brazen Outlaw (KHM) *1
Sensei's Divining Top (EMA) *1
Combat Celebrant (AKR) *1
Blood Moon (2XM) *1
Access Tunnel (STX) *1
Sword of Hearth and Home (MH2) *1
Mox Opal (2XM) *1
Treasure Vault (AFR) *1
Sword of Fire and Ice (2XM) *1
Urza's Saga (MH2) *1
Jeska's Will (CMR) *1
Sol Ring (C19) *1
Seize the Spoils (KHM) *1
Abrade (PLIST) *1
Fury of the Horde (CSP) *1
Valakut Awakening (ZNR) *1
Mountain (UNH) *20
Godo, Bandit Warlord (CHK) *1
Mox Amber (DOM) *2
Cursed Mirror (C21) *1
Price of Glory (ODY) *1
Spire of Industry (AER) *1
Vandalblast (AFC) *1
Ancient Tomb (ZNE) *1
Chaos Warp (AFC) *1
Mana Confluence (CMR) *1
Shatterskull Smashing (ZNR) *1
Grim Monolith (ULG) *1
Lightning Greaves (MB1) *1
Pirate's Pillage (RIX) *1
Shattering Spree (MB1) *1
Sword of Feast and Famine (MPS) *1
Goblin Welder (ULG) *1
War's Toll (BBD) *1
Wayfarer's Bauble (C17) *1
Cathedral of War (M13) *1
Sword of Light and Shadow (2XM) *1
Underworld Breach (THB) *1
Subira, Tulzidi Caravanner (M21) *1
Dockside Extortionist (C19) *1
Mox Diamond (FVR) *1
Bloodstained Mire (ONS) *1
Lightning Bolt (ME1) *1
City of Brass (ME4) *1
Goldspan Dragon (KHM) *1
Ruby Medallion (C14) *1
Sword of the Animist (AFC) *1
Grenzo, Havoc Raiser (PZ2) *2
Moraug, Fury of Akoum (ZNR) *1
Wheel of Fortune (VMA) *1
Port Razer (CMR) *1
#CMD:Ragavan, Nimble Pilferer (MH2) *1
+3 -4
View File
@@ -2,7 +2,6 @@
#DESC:Original Deck by ashby4 (tappedout.net), #DESC:Original Deck by ashby4 (tappedout.net),
#DESC:refined for Wagic by Bob #DESC:refined for Wagic by Bob
#HINT:castpriority(commander,*) #HINT:castpriority(commander,*)
Adarkar Wastes (*) * 1
Akroma's Will (*) * 1 Akroma's Will (*) * 1
Arcane Signet (*) * 1 Arcane Signet (*) * 1
Assault Formation (*) * 1 Assault Formation (*) * 1
@@ -22,10 +21,9 @@ Crashing Drawbridge (*) * 1
Dismantling Wave (*) * 1 Dismantling Wave (*) * 1
Drift of Phantasms (*) * 1 Drift of Phantasms (*) * 1
Dusk // Dawn (*) * 1 Dusk // Dawn (*) * 1
Edge of Autumn (*) * 1
Farseek (*) * 1 Farseek (*) * 1
Fell the Mighty (*) * 1 Fell the Mighty (*) * 1
Forest (*) * 6 Forest (*) * 4
Fortified Rampart (*) * 1 Fortified Rampart (*) * 1
Fortified Village (*) * 1 Fortified Village (*) * 1
Glacial Fortress (*) * 1 Glacial Fortress (*) * 1
@@ -38,6 +36,7 @@ Irrigated Farmland (*) * 1
Island (*) * 2 Island (*) * 2
Jeskai Barricade (*) * 1 Jeskai Barricade (*) * 1
Jungle Barrier (*) * 1 Jungle Barrier (*) * 1
Last March of the Ents (*) *1
Leyline of Vitality (*) * 1 Leyline of Vitality (*) * 1
Lightning Greaves (MPS) (*) * 1 Lightning Greaves (MPS) (*) * 1
Lumithread Field (*) * 1 Lumithread Field (*) * 1
@@ -48,7 +47,7 @@ Noetic Scales (*) * 1
Oathsworn Giant (*) * 1 Oathsworn Giant (*) * 1
Overgrown Battlement (*) * 1 Overgrown Battlement (*) * 1
Perimeter Captain (*) * 1 Perimeter Captain (*) * 1
Plains (*) * 5 Plains (*) * 4
Port Town (*) * 1 Port Town (*) * 1
Prairie Stream (*) * 1 Prairie Stream (*) * 1
Rejuvenating Springs (*) * 1 Rejuvenating Springs (*) * 1
+49 -1
View File
@@ -13,7 +13,6 @@ Boggart Shenanigans (*) * 1
Chancellor of the Forge (*) * 1 Chancellor of the Forge (*) * 1
Coat of Arms (*) * 1 Coat of Arms (*) * 1
Dragon Fodder (ALA) (*) * 1 Dragon Fodder (ALA) (*) * 1
Fervor (*) * 1
Flamekin Village (*) * 1 Flamekin Village (*) * 1
Foundry Street Denizen (*) * 1 Foundry Street Denizen (*) * 1
Goblin Assassin (*) * 1 Goblin Assassin (*) * 1
@@ -38,50 +37,99 @@ Goblin Warchief (*) * 1
Goblin Wardriver (*) * 1 Goblin Wardriver (*) * 1
Goblin War Drums (*) * 1 Goblin War Drums (*) * 1
Goblin Wizard (*) * 1 Goblin Wizard (*) * 1
Homeward Path (*) * 1 Homeward Path (*) * 1
Horde of Boggarts (*) * 1 Horde of Boggarts (*) * 1
Hordeling Outburst (*) * 1 Hordeling Outburst (*) * 1
Impact Tremors (*) * 1 Impact Tremors (*) * 1
Intimidator Initiate (*) * 1 Intimidator Initiate (*) * 1
Krenko's Enforcer (*) * 1 Krenko's Enforcer (*) * 1
Krenko's Command (*) * 1 Krenko's Command (*) * 1
Krenko, Tin Street Kingpin (*) * 1 Krenko, Tin Street Kingpin (*) * 1
Legion Loyalist (*) * 1 Legion Loyalist (*) * 1
Legion Warboss (*) * 1 Legion Warboss (*) * 1
Lightning Greaves (MRD) (*) * 1 Lightning Greaves (MRD) (*) * 1
Madblind Mountain (*) * 1 Madblind Mountain (*) * 1
Mask of Avacyn (*) * 1 Mask of Avacyn (*) * 1
Mob Justice (*) * 1 Mob Justice (*) * 1
Mogg Alarm (*) * 1 Mogg Alarm (*) * 1
Mogg Flunkies (*) * 1 Mogg Flunkies (*) * 1
Mogg Maniac (*) * 1 Mogg Maniac (*) * 1
Mogg Raider (*) * 1 Mogg Raider (*) * 1
Moggcatcher (*) * 1 Moggcatcher (*) * 1
Mons's Goblin Raiders (*) * 1 Mons's Goblin Raiders (*) * 1
Mountain (4ED) (*) * 4 Mountain (4ED) (*) * 4
Mountain (M10) (*) * 4 Mountain (M10) (*) * 4
Mountain (ICE) (*) * 4 Mountain (ICE) (*) * 4
Mountain (M20) (*) * 4 Mountain (M20) (*) * 4
Mountain (MIR) (*) * 4 Mountain (MIR) (*) * 4
Mountain (LEA) (*) * 3 Mountain (LEA) (*) * 3
Mountain (5ED) (*) * 3 Mountain (5ED) (*) * 3
Pashalik Mons (*) * 1 Pashalik Mons (*) * 1
Prophetic Ravings (*) * 1 Prophetic Ravings (*) * 1
Purphoros, God of the Forge (*) * 1 Purphoros, God of the Forge (*) * 1
Quest for the Goblin Lord (*) * 1 Quest for the Goblin Lord (*) * 1
Rising of the Day (*) * 1
Reckless Bushwhacker (*) * 1 Reckless Bushwhacker (*) * 1
Reckless One (*) * 1 Reckless One (*) * 1
Reliquary Tower (*) * 1 Reliquary Tower (*) * 1
Ruby Medallion (*) * 1 Ruby Medallion (*) * 1
Shared Animosity (*) * 1 Shared Animosity (*) * 1
Siege-Gang Commander (*) * 1 Siege-Gang Commander (*) * 1
Skirk Commando (*) * 1 Skirk Commando (*) * 1
Smash (*) * 1 Smash (*) * 1
Smoldering Spires (*) * 1 Smoldering Spires (*) * 1
Sol Ring (*) * 1 Sol Ring (*) * 1
Swiftfoot Boots (*) * 1 Swiftfoot Boots (*) * 1
Valakut, the Molten Pinnacle (*) * 1 Valakut, the Molten Pinnacle (*) * 1
Vandalblast (*) * 1 Vandalblast (*) * 1
Warren Instigator (*) * 1 Warren Instigator (*) * 1
Whispersilk Cloak (*) * 1 Whispersilk Cloak (*) * 1
#CMD:Krenko, Mob Boss (*) * 1 #CMD:Krenko, Mob Boss (*) * 1
+2 -2
View File
@@ -35,11 +35,9 @@ Exquisite Blood (*) * 1
Falkenrath Exterminator (*) * 1 Falkenrath Exterminator (*) * 1
Falkenrath Noble (*) * 1 Falkenrath Noble (*) * 1
Falkenrath Perforator (*) * 1 Falkenrath Perforator (*) * 1
Fervor (*) * 1
Gift of Estates (*) * 1 Gift of Estates (*) * 1
Gifted Aetherborn (*) * 1 Gifted Aetherborn (*) * 1
Godless Shrine (*) * 1 Godless Shrine (*) * 1
Guul Draz Assassin (*) * 1
Guul Draz Vampire (*) * 1 Guul Draz Vampire (*) * 1
Impact Tremors (*) * 1 Impact Tremors (*) * 1
Inspiring Vantage (*) * 1 Inspiring Vantage (*) * 1
@@ -50,6 +48,7 @@ Land Tax (*) * 1
Legion Lieutenant (*) * 1 Legion Lieutenant (*) * 1
Legion's Landing (*) * 1 Legion's Landing (*) * 1
Malakir Cullblade (*) * 1 Malakir Cullblade (*) * 1
Markov Baron (*) * 1
Martyr of Dusk (*) * 1 Martyr of Dusk (*) * 1
Mountain (*) * 1 Mountain (*) * 1
Necropolis Regent (*) * 1 Necropolis Regent (*) * 1
@@ -63,6 +62,7 @@ Plateau (*) * 1
Pulse Tracker (*) * 1 Pulse Tracker (*) * 1
Purphoros, God of the Forge (*) * 1 Purphoros, God of the Forge (*) * 1
Quag Vampires (*) * 1 Quag Vampires (*) * 1
Rising of the Day (*) * 1
Ruthless Cullblade (*) * 1 Ruthless Cullblade (*) * 1
Sacred Foundry (*) * 1 Sacred Foundry (*) * 1
Sanctum Seeker (*) * 1 Sanctum Seeker (*) * 1
+91
View File
@@ -0,0 +1,91 @@
#NAME:Sauron Commander
#DESC:Original deck by Josh
#DESC:Edmundson (tappedout.net)
#DESC:Refined for Wagic by Bob
#HINT:castpriority(commander,*)
Abrade (*) * 1
An Offer You Can't Refuse (*) * 1
Arcane Denial (*) * 1
Arcane Signet (*) * 1
Badlands (*) * 1
Bedevil (*) * 1
Big Score (*) * 1
Bone Miser (*) * 1
Callous Dismissal (*) * 1
Changeling Outcast (*) * 1
Chromatic Lantern (*) * 1
Command Tower (*) * 1
Commander's Sphere (*) * 1
Crumbling Necropolis (*) * 1
Dragonskull Summit (*) * 1
Dreadhorde Invasion (*) * 1
Drowned Catacomb (*) * 1
Eternal Skylord (*) * 1
Evolving Wilds (*) * 1
Exotic Orchard (*) * 1
Faithless Looting (*) * 1
Feed the Swarm (*) * 1
Fellwar Stone (*) * 1
Foray of Orcs (*) * 1
Gleaming Overseer (*) * 1
Gothmog, Morgul Lieutenant (*) * 1
Grishnakh, Brash Instigator (*) * 1
Haunted Ridge (*) * 1
Herald of Secret Streams (*) * 1
Honor the God-Pharaoh (*) * 1
Infernal Grasp (*) * 1
Inherited Envelope (*) * 1
Island (LTR) (*) * 4
Island (WOE) (*) * 1
Lazotep Chancellor (*) * 1
Lazotep Plating (*) * 1
March from the Black Gate (*) * 1
Mauhur, Uruk-hai Captain (*) * 1
Mindless Conscription (*) * 1
Mithril Coat (*) * 1
Mountain (LTR) (*) * 4
616930
619388
619389
619390
619391
619392
619393
619394
619395
Orcish Bowmasters (*) * 1
Orcish Siegemaster (*) * 1
Ringsight (*) * 1
Saruman the White (*) * 1
Saruman's Trickery (*) * 1
Saruman, the White Hand (*) * 1
Sauron, Lord of the Rings (*) * 1
Sauron, the Necromancer (*) * 1
Sheoldred, Whispering One (*) * 1
Shipwreck Marsh (*) * 1
Shivan Reef (*) * 1
Smoldering Marsh (*) * 1
Sol Ring (*) * 1
Stormcarved Coast (*) * 1
Sulfurous Springs (*) * 1
Sunken Hollow (*) * 1
Swamp (LTR) (*) * 4
Swamp (WOE) (*) * 4
Swamp (DSK) (*) * 3
Swarming of Moria (*) * 1
Talisman of Creativity (*) * 1
Talisman of Dominance (*) * 1
Talisman of Indulgence (*) * 1
Teferi's Ageless Insight (*) * 1
Temple of Epiphany (*) * 1
The Locust God (*) * 1
Thrill of Possibility (*) * 1
Ulamog, The Infinite Gyre (*) * 1
Underground River (*) * 1
Underground Sea (*) * 1
Vandalblast (*) * 1
Whispersilk Cloak (*) * 1
Widespread Brutality (*) * 1
Windfall (*) * 1
Witch-king, Bringer of Ruin (*) * 1
#CMD:Sauron, the Dark Lord (*) * 1
+26
View File
@@ -0,0 +1,26 @@
#NAME:Counter Attack
#DESC:Deck Concept by Vitty85
#DESC:Designed for Wagic by Bob
#HINT:castpriority(creature,*)
#HINT:combo hold(Time of Need|myhand)^cast(Time of Need|myhand) targeting(Shalai and Hallar|mylibrary)^restriction{type(Shalai and Hallar|mybattlefield)~lessthan~1}^totalmananeeded({1}{G})
#HINT:combo hold(Basri's Solidarity|myhand)^until(Shalai and Hallar|mybattlefield)^cast(Basri's Solidarity|myhand)^totalmananeeded({1}{W})
#HINT:alwaysattackwith(Kalonian Hydra)
Basri's Solidarity (*) * 4
Birds of Paradise (M12) (*) * 3
Cathars' Crusade (*) * 2
Clifftop Retreat (*) * 3
Essence Warden (*) * 3
Graypelt Refuge (*) * 4
Heliod, Sun-Crowned (*) * 3
Jetmir's Garden (*) * 4
Kazandu Refuge (*) * 2
Prosperous Innkeeper (*) * 2
Razorverge Thicket (*) * 4
Archangel of Thune (*) * 3
Rootbound Crag (*) * 2
Kalonian Hydra (*) * 4
Shalai and Hallar (*) * 4
Soul Warden (*) * 3
Sunpetal Grove (*) * 2
Time of Need (*) * 4
Windswept Heath (*) * 4
+27
View File
@@ -0,0 +1,27 @@
#NAME:Orcs of Mordor
#DESC:Designed for Wagic by Bob
Assault on Osgiliath (*) * 2
Dunland Crebain (*) * 2
Easterling Vanguard (*) * 2
Feed the Swarm (*) * 2
Foray of Orcs (*) * 4
Gothmog, Morgul Lieutenant (*) * 1
Grishnakh, Brash Instigator (*) * 1
March from the Black Gate (*) * 2
Mauhur, Uruk-hai Captain (*) * 2
Mordor Muster (*) * 2
Mountain (LTR) (*) * 4
Mountain (SNC) (*) * 4
Mountain (ONE) (*) * 4
Orcish Bowmasters (*) * 4
Olog-hai Crusher (*) * 2
Sauron, the Lidless Eye (*) * 1
Snarling Warg (*) * 2
Swamp (LTR) (*) * 4
Swamp (SNC) (*) * 4
Swamp (ONE) (*) * 4
Swamp (NEO) (*) * 2
Swarming of Moria (*) * 3
Ugluk of the White Hand (*) * 1
Witch-king, Bringer of Ruin (*) * 1
+95
View File
@@ -0,0 +1,95 @@
#NAME:Graaz Commander
#DESC:Deck concept thanks to punkeduard
#DESC:Original deck by vasarto77 (tappedout.net)
#DESC:Refined for Wagic by Bob
#HINT:castpriority(commander,creature,*)
#HINT:combo hold(All is Dust|myhand)^cast(All is Dust|myhand)^restriction{type(creature|opponentbattlefield)~morethan~2}^totalmananeeded({7})
Akroma's Memorial (*) * 1
All is Dust (*) * 1
Alloy Myr (*) * 1
Ancient Tomb (*) * 1
Arcbound Crusher (*) * 1
Ash Barrens (*) * 1
Bitterthorn, Nissa's Animus (*) * 1
Blinkmoth Urn (*) * 1
Bonded Construct (*) * 1
Captain's Claws (*) * 1
Chief of the Foundry (*) * 1
Coat of Arms (*) * 1
Commander's Plate (*) * 1
Copper Myr (*) * 1
Darksteel Citadel (*) * 1
Darksteel Forge (*) * 1
Darksteel Juggernaut (*) * 1
Dolmen Gate (*) * 1
Eldrazi Monument (*) * 1
Environmental Sciences (*) * 1
Etched Champion (*) * 1
Fellwar Stone (*) * 1
Field of the Dead (*) * 1
Flayer Husk (*) * 1
Forsaken Monument (*) * 1
Foundry of the Consuls (*) * 1
Gemini Engine (*) * 1
Gold Myr (*) * 1
Golem Foundry (*) * 1
Guildless Commons (*) * 1
Ichorclaw Myr (*) * 1
Iron Apprentice (*) * 1
Iron Myr (*) * 1
It That Betrays (*) * 1
Kozilek, Butcher of Truth (*) * 1
Leaden Myr (*) * 1
Mascot Exhibition (*) * 1
Memnite (*) * 1
Mishra's Self-Replicator (*) * 1
Monkey Cage (*) * 1
Mox Opal (*) * 1
Myr Battlesphere (*) * 1
Myr Retriever (*) * 1
Myr Turbine (*) * 1
Nettlecyst (*) * 1
Oketra's Monument (*) * 1
Ornithopter (*) * 1
Ornithopter of Paradise (*) * 1
Palladium Myr (*) * 1
Patchwork Automaton (*) * 1
Phyrexian Walker (*) * 1
Plague Myr (*) * 1
Pristine Talisman (*) * 1
Scavenger Grounds (*) * 1
Sea Gate Wreckage (*) * 1
Searchlight Companion (*) * 1
Shimmer Myr (*) * 1
Shrine of the Forsaken Gods (*) * 1
Signal Pest (*) * 1
Silver Myr (*) * 1
Skittering Cicada (*) * 1
Skittering Invasion (*) * 1
Sol Ring (*) * 1
Sparring Construct (*) * 1
Spawning Bed (*) * 1
Spawnsire of Ulamog (*) * 1
Steel Overseer (*) * 1
Stonecoil Serpent (*) * 1
Swiftfoot Boots (*) * 1
Temple of the False God (*) * 1
Thopter Assembly (*) * 1
Thought Vessel (*) * 1
Thran Dynamo (*) * 1
Universal Automaton (*) * 1
Unwinding Clock (*) * 1
Urza's Mine (*) * 1
Urza's Power Plant (*) * 1
Urza's Saga
Urza's Tower (*) * 1
Urza's Workshop (*) * 1
Void Winnower (*) * 1
Wastes (CMM) (*) * 4
Wastes (J22) (*) * 4
Wastes (OGW) (*) * 4
Wastes (TSR) (*) * 4
Worn Powerstone (*) * 1
Zhalfirin Void (*) * 1
#CMD:Graaz, Unstoppable Juggernaut (*) * 1
+96 -79
View File
@@ -1,79 +1,96 @@
#Black/White Deck 10E/RV #NAME:Tobias Commander
#NAME:The Hive #DESC:Tobias Andrion considers himself
#DESC:When the last living being #DESC:a master of strategy. Can you
#DESC:succumbs to the terrible blight #DESC:defeat him?
#DESC:the wasps will rise #DESC:
#DESC:stirring the barren air #DESC:Win Wagic duels to unlock
#DESC:with their hum. #DESC:more Commander opponents
#4x The hive #DESC:
135253 #DESC:Original deck idea by Goraghull
135253 #DESC:(mtggoldfish.com)
135253 #DESC:Built for Wagic by Bob
135253 #HINT:castpriority(commander,*)
#4x pestilence
1172 Acrobatic Maneuver (*) * 1
1172 Aethersnipe (*) * 1
1172 Alabaster Dragon (*) * 1
1172 Angelic Renewal (*) * 1
#4x Ancestor chosen Aqueous Form (*) * 1
130550 Archaeomancer (*) * 1
130550 Ash Barrens (*) * 1
130550 Azorius Guildgate (*) * 1
130550 Azorius Signet (*) * 1
#4x assassinate Blur (*) * 1
135194 Capsize (*) * 1
135194 Cloak of Mists (*) * 1
135194 Cloudshift (*) * 1
135194 Command Tower (*) * 1
#4x bottle gnomes Commander's Sphere (*) * 1
129495 Counterspell (*) * 1
129495 Deep Analysis (*) * 1
129495 Displace (*) * 1
129495 Drifting Meadow (*) * 1
#4x Drudge skelettons Enlightened Maniac (*) * 1
129529 Ephemerate (*) * 1
129529 Essence Flux (*) * 1
129529 Fellwar Stone (*) * 1
129529 Flicker of Fate (*) * 1
#4x Glorious Anthem Forge of Heroes (*) * 1
129572 Forsake the Worldly (*) * 1
129572 Ghostly Flicker (*) * 1
129572 Icewind Stalwart (*) * 1
129572 Idyllic Beachfront (*) * 1
#4x Paladin en Vec Inspiring Overseer (*) * 1
129668 Island (*) * 4
129668 Island (WOE) (*) * 4
129668 Island (LCI) (*) * 4
129668 Journey to Nowhere (*) * 1
#2 x Deathmark Kor Cartographer (*) * 1
129910 Late to Dinner (*) * 1
129910 Lonely Sandbar (*) * 1
#2x Demistify Lose Focus (*) * 1
129524 Man-o'-War (*) * 1
129524 Meandering River (*) * 1
#12 swamps Mind Stone (*) * 1
129754 Mist Raven (*) * 1
129756 Mnemonic Wall (*) * 1
129755 Momentary Blink (*) * 1
129757 Muse Drake (*) * 1
129754 Negate (M12) (*) * 1
129756 Oblivion Ring (*) * 1
129755 Opal Palace (*) * 1
129757 Palace Sentinels (*) * 1
129754 Pegasus Guardian (*) * 1
129756 Plains (*) * 4
129755 Plains (WOE) (*) * 4
129757 Plains (LCI) (*) * 4
#12x plains Plains (OTJ) (*) * 1
129680 Ponder (M12) (*) * 1
129681 Pondering Mage (*) * 1
129682 Preordain (*) * 1
129683 Protective Bubble (*) * 1
129680 Remote Isle (*) * 1
129681 Revoke Existence (*) * 1
129682 Salvager of Secrets (*) * 1
129683 Scrivener (*) * 1
129680 Scrollshift (*) * 1
129681 Sea Gate Oracle (*) * 1
129682 Sensor Splicer (*) * 1
129683 Settle Beyond Reality (*) * 1
Skyscanner (*) * 1
Soul Warden (*) * 1
Soul of Migration (*) * 1
Spirited Companion (*) * 1
Stonehorn Dignitary (*) * 1
Suture Priest (*) * 1
Swords to Plowshares (*) * 1
Teferi's Time Twist (*) * 1
Temporal Fissure (*) * 1
The Modern Age (*) * 1
Thought Vessel (*) * 1
Tranquil Cove (*) * 1
Turn to Mist (*) * 1
Vedalken Dismisser (RAV) (*) * 1
Whirlpool Rider (*) * 1
Whispersilk Cloak (*) * 1
#CMD:Tobias Andrion (*) * 1
+92
View File
@@ -0,0 +1,92 @@
#NAME:Shalai-Hallar Commander
#DESC:Deck concept thanks to Vitty85
#DESC:Original deck by gabao (tappedout.net)
#DESC:Refined for Wagic by Bob
#HINT:castpriority(commander,creature,*)
#HINT:dontattackwith(Birds of Paradise)
#HINT:dontblockwith(Birds of Paradise)
#HINT:alwaysattackwith(Kalonian Hydra)
Abzan Battle Priest (*) * 1
Abzan Falconer (*) * 1
Ajani's Pridemate (M11) (*) * 1
All Will Be One (*) * 1
Arcane Signet (*) * 1
Arwen, Weaver of Hope (*) * 1
Basri's Solidarity (*) * 1
Birds of Paradise (*) * 1
Botanical Brawler (*) * 1
Branching Evolution (*) * 1
Bretagard Stronghold (*) * 1
Canopy Vista (*) * 1
Cathars' Crusade (*) * 1
Cinder Glade (*) * 1
Command Tower (*) * 1
Conclave Mentor (*) * 1
Cultivate (*) * 1
Death's Presence (*) * 1
Defiler of Vigor (*) * 1
Dusk Legion Duelist (*) * 1
Enduring Scalelord (*) * 1
Evolution Sage (*) * 1
Evolving Wilds (*) * 1
Exotic Orchard (*) * 1
Farseek (*) * 1
Felidar Retreat (*) * 1
Forest (LTR) (*) * 4
Forest (CMM) (*) * 4
Fortified Village (*) * 1
Game Trail (*) * 1
Goblin Anarchomancer (*) * 1
Good-Fortune Unicorn (*) * 1
Grumgully, the Generous (*) * 1
Gyre Sage (*) * 1
Halana and Alena, Partners (*) * 1
Hardened Scales (*) * 1
Heliod, Sun-Crowned (*) * 1
Hydra's Growth (*) * 1
Incubation Druid (*) * 1
Inspiring Call (*) * 1
Invigorating Surge (*) * 1
Ivy Lane Denizen (*) * 1
Kalonian Hydra (*) * 1
Kami of Whispered Hopes (*) * 1
Keen Sense (*) * 1
Kodama's Reach (CMM) (*) * 1
Krenko, Tin Street Kingpin (*) * 1
Krosan Grip (*) * 1
Krosan Verge (*) * 1
Lifelink (*) * 1
Loyal Guardian (*) * 1
Managorger Hydra (*) * 1
Master Chef (*) * 1
Mayael's Aria (*) * 1
Mikaeus, the Lunarch (*) * 1
Mountain (LTR) (*) * 4
Mountain (CMM) (*) * 4
Nature's Lore (*) * 1
Ozolith, the Shattered Spire (*) * 1
Path to Exile (*) * 1
Plains (LTR) (*) * 4
Plains (CMM) (*) * 4
Pledge of Unity (*) * 1
Rampant Growth (*) * 1
Renata, Called to the Hunt (*) * 1
Resourceful Defense (*) * 1
Rhythm of the Wild (*) * 1
Shalai, Voice of Plenty (*) * 1
Sol Ring (*) * 1
Solidarity of Heroes (*) * 1
Sungrass Prairie (*) * 1
Surge of Salvation (*) * 1
Sword of Truth and Justice (*) * 1
Swords to Plowshares (*) * 1
Take Up the Shield (*) * 1
Taurean Mauler (*) * 1
Temple of the False God (*) * 1
Terramorphic Expanse (*) * 1
Together Forever (*) * 1
Trelasarra, Moon Dancer (*) * 1
Twinblade Paladin (*) * 1
Visions of Dominance (*) * 1
Wildwood Scourge (*) * 1
#CMD:Shalai and Hallar (*) * 1
+89
View File
@@ -0,0 +1,89 @@
#NAME:Vial Smasher Commander
#DESC:Original deck by GrwingErbw (tappedout.net)
#DESC:Refined for Wagic by Bob
#HINT:castpriority(commander,*)
#HINT:dontattackwith(Vial Smasher the Fierce)
#HINT:dontblockwith(Vial Smasher the Fierce)
Abrade (*) * 1
Angrath, the Flame-Chained (*) * 1
Archfiend of Despair (*) * 1
Badlands (*) * 1
Banefire (M19) (*) * 1
Baneful Omen (*) * 1
Bituminous Blast (C16) (*) * 1
Black Market (*) * 1
Blasphemous Act (*) * 1
Bojuka Bog (*) * 1
Brash Taunter (*) * 1
Breath of Malfegor (*) * 1
Charmbreaker Devils (*) * 1
Cinder Barrens (*) * 1
City on Fire (*) * 1
Command Tower (*) * 1
Curtains' Call (*) * 1
Decree of Pain (*) * 1
Doom Blade (*) * 1
Dragonskull Summit (*) * 1
Dreadbore (*) * 1
Everlasting Torment (*) * 1
Expedition Map (*) * 1
Exsanguinate (*) * 1
Falkenrath Noble (*) * 1
Fiery Confluence (*) * 1
Fiery Emancipation (*) * 1
Fire Diamond (*) * 1
Font of Mythos (CON) (*) * 1
Foreboding Ruins (*) * 1
Go for the Throat (*) * 1
Gratuitous Violence (*) * 1
Gray Merchant of Asphodel (*) * 1
Guttersnipe (*) * 1
Hero's Downfall (*) * 1
Howling Mine (*) * 1
In Garruk's Wake (*) * 1
Indulgent Tormentor (*) * 1
Kaervek the Merciless (*) * 1
Kederekt Parasite (*) * 1
Lightning Reaver (*) * 1
Malfegor (*) * 1
Mogis, God of Slaughter (*) * 1
Mountain (MKM) (*) * 4
Mountain (WOE) (*) * 4
Mountain (LCI) (*) * 4
Mountain (LTR) (*) * 1
Murder (*) * 1
Neheb, the Eternal (*) * 1
Painful Quandary (*) * 1
Phyrexian Arena (*) * 1
Polluted Bonds (*) * 1
Rakdos Carnarium (*) * 1
Rakdos Guildgate (*) * 1
Rakdos Signet (*) * 1
Rakdos's Return (*) * 1
Rakdos, Lord of Riots (*) * 1
Sheoldred, the Apocalypse (*) * 1
Sin Prodder (*) * 1
Skull Rend (*) * 1
Smoldering Marsh (*) * 1
Sol Ring (*) * 1
Solemn Simulacrum (*) * 1
Star of Extinction (*) * 1
Starstorm (*) * 1
Swamp (MKM) (*) * 4
Swamp (WOE) (*) * 4
Swamp (LCI) (*) * 4
Swamp (LTR) (*) * 1
Temple of Malice (*) * 1
Temple of the False God (*) * 1
Temporal Extortion (*) * 1
Terminate (CMD) (*) * 1
Thought Vessel (*) * 1
Torment of Hailfire (*) * 1
Tragic Slip (*) * 1
Twilight Prophet (*) * 1
Unlicenced Disintergration (*) * 1
Vicious Shadows (*) * 1
Volcanic Vision (*) * 1
Waste Not (*) * 1
Wound Reflection (*) * 1
#CMD:Vial Smasher the Fierce (*) * 1
+25
View File
@@ -0,0 +1,25 @@
#NAME:Draw and Die!
#DESC:Deck concept by ChocolateLightning
#DESC:(tappedout.net), refined for
#DESC:Wagic by Bob
#HINT:dontattackwith(Fate Unraveler)
#HINT:dontblockwith(Fate Unraveler)
Dictate of Kruphix (*) * 3
Dismal Backwater (*) * 2
Drowned Catacomb (*) * 4
Fate Unraveler (*) * 4
Fog Bank (*) * 2
Forced Fruition (*) * 2
Howling Mine (*) * 4
Island (MIR) (*) * 4
Island (ICE) (*) * 4
Liliana's Caress (*) * 2
Master of the Feast (*) * 4
Ob Nixilis, the Hate-Twisted (*) * 3
Peer into the Abyss (*) * 1
Teferi's Puzzle Box (*) * 2
Shield Sphere (*) * 3
Swamp (ZEN) (*) * 4
Swamp (4ED) (*) * 4
Underworld Dreams (*) * 4
Underground Sea (*) * 4
+29
View File
@@ -0,0 +1,29 @@
#NAME:Cut Off One Head...
#DESC:Deck concept by Prospekt
#DESC:(tappedout.net), refined for
#DESC:Wagic by Bob
#HINT:dontattackwith(Birds of Paradise)
#HINT:dontblockwith(Birds of Paradise)
#HINT:dontattackwith(Karametra's Acolyte)
#HINT:alwaysattackwith(Kalonian Hydra)
#HINT:combo hold(Alpha Authority|myhand)^until(creature[-Hydra]|mybattlefield)^cast(Alpha Authority|myhand) targeting(creature[-Hydra]|mybattlefield)^restriction{type(Alpha Authority|mybattlefield)~lessthan~1}^totalmananeeded({1}{G})
#HINT:combo hold(Canopy Cover|myhand)^until(creature[-Hydra]|mybattlefield)^cast(Canopy Cover|myhand) targeting(creature[-Hydra]|mybattlefield)^restriction{type(Canopy Cover|mybattlefield)~lessthan~1}^totalmananeeded({1}{G})
Alpha Authority * 2
Birds of Paradise * 4
Beast Within * 3
Canopy Cover * 2
Cultivate * 4
Forest (MIR) * 4
Forest (ICE) * 4
Forest (4ED) * 4
Forest (5ED) * 4
Forest (7ED) * 4
Forest (RAV) * 2
Kalonian Hydra * 2
Karametra's Acolyte * 2
Khalni Hydra * 4
Managorger Hydra * 4
Mistcutter Hydra * 3
Primordial Hydra * 4
Solidarity of Heroes * 2
Voracious Hydra * 2
+31
View File
@@ -0,0 +1,31 @@
#NAME:Nazgul
#DESC:Deck for Wagic by Bob
#HINT:combo hold(Sam's Desperate Rescue|myhand)^cast(Sam's Desperate Rescue|myhand) targeting(Nazgul|mygraveyard)^totalmananeeded({B})
#HINT:combo hold(Demonic Tutor|myhand)^cast(Demonic Tutor|myhand) targeting(Nazgul|mylibrary)^totalmananeeded({1}{B})
Bog Wraith (*) * 4
Claim the Precious (*) * 3
Demonic Tutor (*) * 2
Forced Adaptation (*) * 2
Forest (LTR) (*) * 4
Forest (WOE) (*) * 3
Hardened Scales (*) * 4
Inherited Envelope (*) * 3
Ringwraiths (*) * 2
Sam's Desperate Rescue (*) * 2
Sheoldred, Whispering One (*) * 1
Smeagol, Helpful Guide (*) * 2
Swamp (DSK) (*) * 4
Swamp (LTR) (*) * 4
Swamp (WOE) (*) * 3
The Black Breath (*) * 2
Urborg, Tomb of Yawgmoth (LTC) (*) * 2
Woodland Cemetery (LTC) * 4
616930
619388
619389
619390
619391
619392
619393
619394
619395
+34 -34
View File
@@ -1,60 +1,60 @@
#Plain white deck #NAME:Kithkin
#NAME:Justice #DESC:Led by the Cenn,
#DESC:Defending law with an army #DESC:united by the thoughtweft,
#DESC:of zealous followers, #DESC:challenge just one
#DESC:every criminal shall be punished #DESC:champion of Goldmeadow,
#DESC:with the wrath of the just. #DESC:and you will face
#4x Crusade,{W}{W}, Enchantment, all white creatures +1/+1 #DESC:the entire cla-chan!
1341
1341
1341
1341
#4x Swords to Plowshares, {W} Remove target creature from game, controller gains life = strength
1367
1367
1367
1367
#4x Glorious Anthem, {1}{W}{W}, Enchantment, Creatures you control get +1/+1 #4x Glorious Anthem, {1}{W}{W}, Enchantment, Creatures you control get +1/+1
129572 129572
129572 129572
129572 129572
129572 129572
#4x Paladin en-Vec, {1}{W}{W}, Creature - Human Knight,2/2, first strike protection from red and black #4x Wizened Cenn,{W}{W}, Creature - Kithkin Cleric,2/2, other kithin get +1/+1
129668
129668
129668
129668
#4x Knight of Meadowgrain,{W}{W}, Creature-Kithin Knight,2/2,first strike,lifelink
139715
139715
139715
139715
#4x Wizened Cenn,{W}{W}, Creature - Kithin Cleric,2/2, other kithin get +1/+1
139716 139716
139716 139716
139716 139716
139716 139716
#4x Zealous Guardian,{WU}, Creature - Kithin Soldier,1/1,flash #4x Zealous Guardian,{WU}, Creature - Kithkin Soldier,1/1,flash
142028 142028
142028 142028
142028 142028
142028 142028
#4x Ballynock Cohort,{2}{W},Creature - Kithin Soldier,2/2,First strike, get +1/+1 aslongas you control another white creature #4x Ballynock Cohort,{2}{W},Creature - Kithkin Soldier,2/2,First strike, get +1/+1 aslongas you control another white creature
142045 142045
142045 142045
142045 142045
142045 142045
#2x Armored Ascension,{3}{W},Enchant creature, +1/+1 for each plains and flying #4x Armored Ascension,{3}{W},Enchant creature, +1/+1 for each plains and flying
146041 146041
146041 146041
#2x Oversoul of Dusk,{WG}{WG}{WG}{WG}{WG},5/5, Creature - Spirit avatar, protection from blue,red and black 146041
146735 146041
146735 #4x Thistledown Liege,{1}{WU}{WU}{WU}, 1/3, creature - Kithkin Knight, give +1/+1 to blue and white creature you control
#4x Thistledown Liege,{1}{WU}{WU}{WU}, 1/3, creature - Kithin Knight, give +1/+1 to blue and white creature you control
147409 147409
147409 147409
147409 147409
147409 147409
#4x Kihtkin Shielddare, {1}{W},1/1 creature - Kithkin soldier, {t}{W}:target blocking creature gets +2/+2
158238
158238
158238
158238
#4x Goldmeadow Harrier, {W},1/1 creature - Kithkin soldier,{W}:tap target creature
139397
139397
139397
139397
#4x Field Marshall, {1}{W}{W}, 2/2 creature - Human soldier, Other Soldier creatures get +1/+1 and have first strike
135258
135258
135258
135258
#4x Mobilization, {2}{W}, enchantment, Soldier creatures have vigilance, {2}{W}:Put a 1/1 white Soldier creature token into play
129716
129716
129716
129716
#20x Plains (10E) #20x Plains (10E)
129683 129683
129683 129683
+90 -78
View File
@@ -1,78 +1,90 @@
#NAME:Kithkin #NAME:Atarka Commander
#DESC:Led by the Cenn, #DESC:Atarka's dragons bring death
#DESC:united by the thoughtweft, #DESC:from the air. Can you defeat
#DESC:challenge just one #DESC:her?
#DESC:champion of Goldmeadow, #DESC:
#DESC:and you will face #DESC:Win Wagic duels to unlock
#DESC:the entire cla-chan! #DESC:more Commander opponents
#4x Glorious Anthem, {1}{W}{W}, Enchantment, Creatures you control get +1/+1 #DESC:
129572 #DESC:Draconic Destruction
129572 #DESC:Precon deck, 2022
129572 #DESC:Refined for Wagic by Bob
129572 #HINT:castpriority(commander,*)
#4x Wizened Cenn,{W}{W}, Creature - Kithkin Cleric,2/2, other kithin get +1/+1 Akoum Hellkite (*) * 1
139716 Arcane Signet (*) * 1
139716 Atarka Monument (*) * 1
139716 Beast Within (*) * 1
139716 Bower Passage (*) * 1
#4x Zealous Guardian,{WU}, Creature - Kithkin Soldier,1/1,flash Bristling Backwoods (*) * 1
142028 Chain Reaction (*) * 1
142028 Cinder Glade (*) * 1
142028 Command Tower (*) * 1
142028 Commander's Sphere (*) * 1
#4x Ballynock Cohort,{2}{W},Creature - Kithkin Soldier,2/2,First strike, get +1/+1 aslongas you control another white creature Crucible of Fire (ALA) (*) * 1
142045 Cultivate (*) * 1
142045 Demanding Dragon (*) * 1
142045 Draconic Disciple (*) * 1
142045 Dragon Mage (*) * 1
#4x Armored Ascension,{3}{W},Enchant creature, +1/+1 for each plains and flying Dragon Tempest (*) * 1
146041 Dragon's Hoard (*) * 1
146041 Dragonkin Berserker (*) * 1
146041 Dragonlord's Servant (*) * 1
146041 Dragonmaster Outcast (*) * 1
#4x Thistledown Liege,{1}{WU}{WU}{WU}, 1/3, creature - Kithkin Knight, give +1/+1 to blue and white creature you control Dragonspeaker Shaman (*) * 1
147409 Drakuseth, Maw of Flames (*) * 1
147409 Drumhunter (*) * 1
147409 Elemental Bond (*) * 1
147409 Fervor (*) * 1
#4x Kihtkin Shielddare, {1}{W},1/1 creature - Kithkin soldier, {t}{W}:target blocking creature gets +2/+2 Flameblast Dragon (ALA) (*) * 1
158238 Foe-Razer Regent (*) * 1
158238 Forest (BLB) (*) * 4
158238 Forest (MKM) (*) * 4
158238 Forest (LCI) (*) * 4
#4x Goldmeadow Harrier, {W},1/1 creature - Kithkin soldier,{W}:tap target creature Furnace Whelp (10E) (*) * 1
139397 Game Trail (*) * 1
139397 Garruk's Uprising (*) * 1
139397 Harbinger of the Hunt (*) * 1
139397 Harmonize (*) * 1
#4x Field Marshall, {1}{W}{W}, 2/2 creature - Human soldier, Other Soldier creatures get +1/+1 and have first strike Hoard-Smelter Dragon (*) * 1
135258 Hunter's Insight (*) * 1
135258 Hunter's Prowess (*) * 1
135258 Kazandu Refuge (*) * 1
135258 Kodama's Reach (CHK) (*) * 1
#4x Mobilization, {2}{W}, enchantment, Soldier creatures have vigilance, {2}{W}:Put a 1/1 white Soldier creature token into play Lathliss, Dragon Queen (*) * 1
129716 Lightning Bolt (*) * 1
129716 Llanowar Elves (*) * 1
129716 Magmaquake (C14) (*) * 1
129716 Mordant Dragon (*) * 1
#20x Plains (10E) Mountain (BLB) (*) * 4
129683 Mountain (MKM) (*) * 4
129683 Mountain (LCI) (*) * 4
129683 Mountain (WOE) (*) * 4
129683 Mountain (LTR) (*) * 2
129683 Primal Might (*) * 1
129683 Rapacious Dragon (*) * 1
129683 Return to Nature (*) * 1
129683 Rugged Highlands (*) * 1
129683 Runehorn Hellkite (*) * 1
129683 Sakura-Tribe Elder (*) * 1
129683 Sarkhan, the Dragonspeaker (*) * 1
129683 Savage Ventmaw (*) * 1
129683 Scourge of Valkas (*) * 1
129683 Shamanic Revelation (*) * 1
129683 Shivan Devastator (*) * 1
129683 Shivan Oasis (*) * 1
129683 Sol Ring (*) * 1
129683 Spit Flame (*) * 1
129683 Steel Hellkite (*) * 1
129683 Sweltering Suns (*) * 1
Swiftfoot Boots (*) * 1
Talisman of Impulse (*) * 1
Temple of Abandon (*) * 1
Thunderbreak Regent (*) * 1
Thundermaw Hellkite (*) * 1
Timber Gorge (*) * 1
Tyrant's Familiar (*) * 1
Unleash Fury (*) * 1
Vandalblast (*) * 1
Verix Bladewing (*) * 1
Wooded Ridgeline (*) * 1
#CMD:Atarka, World Render (*) * 1
+1 -1
View File
@@ -1,4 +1,4 @@
#NAME:Jihad #NAME:Armored Ascent
#DESC:They may look weak #DESC:They may look weak
#DESC:and barely present, #DESC:and barely present,
#DESC:but if you let them grow #DESC:but if you let them grow
+96 -55
View File
@@ -1,55 +1,96 @@
#NAME:Kobold Overlord #NAME:Ragavan Commander
#DESC:"You may think we are weak #DESC:Ragavan's pirates steal both
#DESC: But we are many #DESC:treasure and your spells!
#DESC: And sometimes we can hire #DESC:Can you defeat him?
#DESC: A powerful mercenary!" #DESC:
#DESC:Win Wagic duels to unlock
# Cards considered, but not included: #DESC:more Commander opponents
# Orcish Oriflamme - would match the deck's focus of #DESC:
# strengthening the creatures, but is too expensive. Perhaps add #DESC:The Ragavan Commander Deck
# it when mana acceleration is possible for this deck. #DESC:Refined for Wagic by Bob
#HINT:castpriority(commander,*)
# Cards removed from he deck: Abrade (PLIST) *1
# 3 x Bravado (USG) (ID 5848) Academy Manufactor *1
# The card's name and illustration don't really fit the "kobold" Access Tunnel (STX) *1
# theme, but the effect (strength through numbers) definitely Aggravated Assault (ONS) *1
# does. Ancient Copper Dragon *1
# Removed because the AI casts it on its opponent's creatures. Ancient Tomb (ZNE) *1
Arcane Signet *1
# 4 x Brightstone Ritual (ONS) (ID 39846) Blood Moon (2XM) *1
# for mana acceleration Bloodstained Mire (ONS) *1
# Removed because the AI doesn't use the mana. Break Through the Line (FRF) *1
# Also ... only works with goblins. Duh. *blush* Breeches, Brazen Plunderer *1
Captain Lannery Storm *1
# Land(s) Cathedral of War (M13) *1
Kher Keep (TSP) * 2 # produces kobold tokens Chromatic Lantern *1
Mountain (ONS) * 20 City of Brass (ME4) *1
Coercive Recruiter (CMR) *1
# Creature(s) Combat Celebrant (AKR) *1
Battle Squadron (MMQ) * 2 Commander's Plate (CMR) *1
Crimson Kobolds (ME3) * 4 Cursed Mirror (C21) *1
Crookshank Kobolds (ME1) * 4 Dire Fleet Daredevil (AFC) *1
Keldon Warlord (5ED) * 2 Dockside Extortionist (C19) *1
# Doesn't fit the theme too well (would a Keldon Warlord really Dwarven Mine *1
# work as a mercenary for a Kobold Overlord?), but without it Embercleave (ELD) *1
# the deck would be too weak, and a deck full of weak Fellwar Stone *1
# creatures is exactly the environment where a Keldon Warlord Fury of the Horde (CSP) *1
# thrives. Goblin Engineer (MH1) *1
Goblin Tunneler *1
Kobold Drill Sergeant (ME3) * 4 Godo, Bandit Warlord (CHK) *1
Kobold Overlord (ME3) * 4 Goldspan Dragon (KHM) *1
Kobold Taskmaster (ME3) * 4 Grenzo, Havoc Raiser (PZ2) *1
Kobolds of Kher Keep (ME3) * 4 Hellkite Tyrant (GTC) *1
Helm of the Host (DOM) *1
# Artifact(s) Imperial Recruiter (ME2) *1
Howling Mine (7ED) * 4 Inventors' Fair (KLD) *1
Slate of Ancestry (ONS) * 2 Lightning Bolt (ME1) *1
#To draw more cards (check whether the AI overuses it and Lightning Greaves (MB1) *1
#decks itself out) Magda, Brazen Outlaw (KHM) *1
Mana Confluence *1
# Sorcery(s) Mishra's Bauble (MB1) *1
Mob Justice (*) * 3 Mogg Salvage (NMS) *1
Wheel of Fortune (VMA) * 1 Moraug, Fury of Akoum (ZNR) *1
#To get a new hand (hopefully) full of cheap kobolds once the Mountain (UNH) *4
#previous hand has been used up. Only 1 because it's Mountain (WOE) *4
#restricted. Mountain (LCI) *4
Mountain (MKM) *4
Mountain (BLB) *4
Mox Amber (DOM) *1
Mox Diamond (FVR) *1
Mox Opal (2XM) *1
Neheb, the Eternal (AKR) *1
Passionate Archaeologist *1
Pirate's Pillage (RIX) *1
Port Razer (CMR) *1
Price of Glory (ODY) *1
Reckless Fireweaver *1
Seize the Day (ODY) *1
Seize the Spoils (KHM) *1
Shatter *1
Shinka, the Bloodsoaked Keep (CHK) *1
Sol Ring (C19) *1
Spire of Industry (AER) *1
Stolen Strategy *1
Strike It Rich (MH2) *1
Strip Mine (EXP) *1
Sword of Feast and Famine (MPS) *1
Sword of Fire and Ice (2XM) *1
Sword of Hearth and Home (MH2) *1
Sword of Light and Shadow (2XM) *1
Sword of the Animist (AFC) *1
Thran Dynamo *1
Tome of Legends (ELD) *1
Trash for Treasure (C16) *1
Treasure Nabber (PZ2) *1
Treasure Vault (AFR) *1
Underworld Breach (THB) *1
Urza's Saga (MH2) *1
Valakut Awakening (ZNR) *1
Valakut, the Molten Pinnacle (ZEN) *1
Vandalblast (AFC) *1
War's Toll (BBD) *1
Wayfarer's Bauble (C17) *1
Wheel of Fortune (VMA) *1
World at War (ROE) *1
Xorn (AFR) *1
#CMD:Ragavan, Nimble Pilferer (MH2) *1
+92 -49
View File
@@ -1,49 +1,92 @@
#NAME:Ashenmoor Cohort #NAME:Tatyova Commander
# #DESC:The Tatyova Commander Deck
#DESC: How does it feel #DESC:Refined for Wagic by Bob
#DESC: to be dead #HINT:castpriority(commander,*)
#DESC: I hear you ask? #HINT:combo hold(Finale of Devastation|myhand)^cast(Finale of Devastation|myhand) targeting(Worldspine Wurm|mylibrary)~totalmananeeded({11}{G}{G})
#DESC: #HINT:combo hold(Genesis Wave|myhand)^cast(Genesis Wave|myhand)~totalmananeeded({5}{G}{G}{G})
#DESC: It hurts. Arcane Signet (AFC) *1
#DESC: It burns. Avenger of Zendikar (PRM) *1
#DESC: Azusa, Lost but Seeking *1
#DESC: It makes you ... Birds of Paradise (PRM) *1
#DESC: ... want to come back. Broken Bond (MB1) *1
Castle Vantress (ELD) *1
Ashenmoor Cohort (SHM) *2 # lots of Cinder creatures Command Beacon (PZ1) *1
Ashenmoor Gouger (SHM) *3 Command Tower (C19) *1
Corrosive Mentor (SHM) *3 Consecrated Sphinx (MBS) *1
Crowd of Cinders (SHM) *4 Courser of Kruphix (TSR) *1
Smoldering Butcher (EVE) *4 Crop Rotation (2XM) *1
Emberstrike Duo (SHM) *3 # gets pumped by red or black spells Crucible of Worlds (PRM) *1
Nyxathid (CFX) *2 Cultivate (PZ1) *1
Sickle Ripper (SHM) *3 Cyclonic Rift (MM3) *1
Spiteflame Witch (SHM) *2 Decanter of Endless Water *1
Soul Snuffers (EVE) *2 # dangerous for the AI Dryad Arbor (TSR) *1
Echoing Truth (C19) *1
Scar (SHM) *4 # cheap red/black damage spell Eternal Witness (PZ1) *1
Haunted Crossroads (MRQ) *2 # compensates for Soul Snuffers Exploration (PRM) *1
Raise Dead (RV) *2 # compensates for Soul Snuffers Explore (C19) *1
Finale of Devastation (WAR) *1
Flooded Grove (EXP) *1
Swamp (10E) *24 Flooded Strand (EXP) *1
Force of Will (EMA) *1
Forest (2XM) *4
# Cards considered, but not included: Forest (BLB) *4
# Cinderbones: Expensive and weak in this deck Forest (OTJ) *3
# Sootstoke Kindler - AI can't choose target well Gaea's Cradle (USG) *1
# Fulminator Mage - most lands of player will be basic for a while Genesis Wave (IMA) *1
# Midnight Covenant - buggy in 0.8.1 Harmonize (PRM) *1
Harrow (MB1) *1
# Cards removed from the deck: Hinterland Harbor *1
# none Island (UNH) *4
Island (OTJ) *4
# Notes: Island (BLB) *1
# The Soul Snuffers may have to be removed since the AI often Khalni Garden (PZ1) *1
# hurts itself with them. Kinnan, Bonder Prodigy (IKO) *1
# Kodama's Reach (C17) *1
# This is a pure black deck, it doesn't explore most of the Koma, Cosmos Serpent (KHM) *1
# potential red/black synergies. I'd like to do that as well, but Lightning Greaves (AFC) *1
# I'd want the Ashenmoor Liege as a central card in that deck, and Lotus Cobra (PRM) *1
# that card isn't implemented yet. Hence, the deck is black and Mana Reflection (SHM) *1
# the central creature is a black creature. Misty Rainforest (ZNE) *1
Multani, Yavimaya's Avatar *1
Mystic Sanctuary (ELD) *1
Narset, Parter of Veils (WAR) *1
Nexus of Fate (M19) *1
Nyxbloom Ancient (THB) *1
Oran-Rief Hydra *1
Polluted Delta (ONS) *1
Pongify (TSR) *1
Primeval Titan (TSR) *1
Prismatic Vista (H1R) *1
Prophet of Kruphix (PRM) *1
Rampaging Baloths (C19) *1
Rampant Growth (PRM) *1
Ramunap Excavator (PRM) *1
Reliquary Tower (C19) *1
Rimewood Falls (KHM) *1
Ruin Crab *1
Sakura-Tribe Elder (MB1) *1
Scalding Tarn (MH2) *1
Search for Tomorrow (MB1) *1
Seedborn Muse (C19) *1
Simic Growth Chamber (C19) *1
Simic Signet (C15) *1
Sol Ring (C19) *1
Solemn Simulacrum (MB1) *1
Sporemound *1
Strip Mine (EXP) *1
Summer Bloom (POR) *1
Sylvan Scrying (MB1) *1
Tangled Islet *1
Thran Dynamo *1
Thrasios, Triton Hero (PZ2) *1
Timetwister (PRM) *1
Tropical Island (ME4) *1
Tyrite Sanctum (KHM) *1
Upheaval (MH2) *1
Verdant Catacombs (MH2) *1
Wayfarer's Bauble (C17) *1
Wild Growth (AFC) *1
Worldspine Wurm *1
Yavimaya Elder (UDS) *1
Zendikar's Roil *1
#CMD:Tatyova, Benthic Druid (DOM) *1
+95 -22
View File
@@ -1,22 +1,95 @@
#NAME:Wild Cats #NAME:Brimaz Commander
#DESC:Ferocious predators #DESC:Brimaz draws power from his
#DESC:descend from the mountains, #DESC:cat army. Can you defeat him?
#DESC:lured down #DESC:
#DESC:by the sweet smell #DESC:Win Wagic duels to unlock
#DESC:of your fighters' cold sweat. #DESC:more Commander opponents
Sabretooth Tiger (ICE) * 4 # #DESC:
Raging Cougar (POR) * 4 # #DESC:Original deck idea by Rowdy1705
Canyon Wildcat (TMP) * 4 # #DESC:(mtggoldfish.com)
Giant Strength (TMP) * 4 # #DESC:Built for Wagic by Bob
Guma (USG) * 4 # #HINT:castpriority(commander,*)
Reflexes (USG) * 2 # Ajani's Influence (*) * 1
Wild Jhovall (MRQ) * 4 # Ajani's Mantra (*) * 1
Scarred Puma (INV) * 4 # Ajani's Sunstriker (*) * 1
Maniacal Rage (INV) * 4 # Ajani's Welcome (*) * 1
Brute Force (PLC) * 2 # Alms Collector (*) * 1
Mountain (10E) * 4 # Animal Sanctuary (*) * 1
Mountain (10E) * 4 # Arcane Signet (*) * 1
Mountain (10E) * 4 # Authority of the Consuls (*) * 1
Mountain (10E) * 4 # Basri's Acolyte (*) * 1
Mountain (M10) * 4 # Blade of the Sixth Pride (TSR) (*) * 1
Mountain (M10) * 4 # Blessing of the Nephilim (*) * 1
Disenchant (BRO) (*) * 1
Drifting Meadow (*) * 1
Enlightened Ascetic (*) * 1
Felidar Cub (*) * 1
Garrison Cat (*) * 1
Gift of Estates (*) * 1
Graceful Cat (*) * 1
Guardian Lions (*) * 1
Healer of the Pride (*) * 1
Heirloom Blade (*) * 1
Idyllic Grange (*) * 1
Intangible Virtue (*) * 1
Ironpaw Aspirant (*) * 1
Jedit's Dragoons (TSP) (*) * 1
Jhovall Queen (*) * 1
Kabira Crossroads (*) * 1
Kemba, Kha Enduring (*) * 1
Kemba, Kha Regent (*) * 1
King of the Pride (*) * 1
Land Tax (CMM) (*) * 1
Leonin Abunas (*) * 1
Leonin Battlemage (*) * 1
Leonin Iconoclast (*) * 1
Leonin Lightbringer (*) * 1
Leonin Scimitar (MRD) (*) * 1
Leonin Skyhunter (MRD) (*) * 1
Leonin Snarecaster (*) * 1
Leonin Vanguard (*) * 1
Lightning Greaves (MRD) (*) * 1
Loxodon Warhammer (MRD) (*) * 1
Maned Serval (*) * 1
Mask of Memory (*) * 1
Mass Calcify (M15) (*) * 1
Mesa Lynx (*) * 1
Minas Tirith (*) * 1
New Benalia (*) * 1
Oblivion Ring (*) * 1
Oreskos Sun Guide (*) * 1
Path of Ancestry (*) * 1
Path to Exile (*) * 1
Plains (ONE) (*) * 4
Plains (MOM) (*) * 4
Plains (WOE) (*) * 4
Plains (LCI) (*) * 4
Plains (MKM) (*) * 4
Plains (OTJ) (*) * 3
Pride Guardian (*) * 1
Ravnica at War (*) * 1
Regal Caracal (*) * 1
Reliquary Tower (*) * 1
Sacred Cat (*) * 1
Sanctuary Cat (DKA) (*) * 1
Savannah Lions (*) * 1
Savannah Sage (*) * 1
Secluded Steppe (*) * 1
Short Sword (*) * 1
Sigarda's Aid (*) * 1
Skullclamp (*) * 1
Skyhunter Cub (MRD) (*) * 1
Skyhunter Patrol (MRD) (*) * 1
Skyhunter Prowler (*) * 1
Skyhunter Skirmisher (10E) (*) * 1
Sol Ring (*) * 1
Steelshaper's Gift (*) * 1
Steppe Lynx (*) * 1
Swiftfoot Boots (*) * 1
Sword of Vengeance (*) * 1
Sword of the Animist (*) * 1
Swords to Plowshares (*) * 1
Trained Caracal (*) * 1
White Sun's Zenith (*) * 1
Zarichi Tiger (*) * 1
#CMD:Brimaz, King of Oreskos (*) * 1
+1 -1
View File
@@ -1,4 +1,4 @@
#NAME:No Bushwhacked #NAME:Bushwhacked
#DESC:"Attack! Heal! Attack! Heal! #DESC:"Attack! Heal! Attack! Heal!
#DESC: And again and again and again. #DESC: And again and again and again.
#DESC: Oh, how I miss my days #DESC: Oh, how I miss my days
+2 -2
View File
@@ -1,5 +1,5 @@
#NAME:Plane of the Apes #NAME:Planet of the Apes
#DESC:A plane where apes #DESC:A planet where apes
#DESC:evolved from men? #DESC:evolved from men?
#DESC:There's got to be an answer! #DESC:There's got to be an answer!
Tree Monkey (P02) *4 Tree Monkey (P02) *4
+83 -15
View File
@@ -1,15 +1,83 @@
#NAME:Shocking M'taurs #NAME:Ranar Commander
#DESC:The bright flash #DESC:Kaldheim Commander Deck
#DESC: of the opening attacks #DESC:Phantom Premonition
#DESC:is followed by the deafening thunder #HINT:castpriority(commander,*)
#DESC: of a multitude of hooves #HINT:dontattackwith(Ranar the Ever-Watchful)
Hurloon Minotaur (RV) * 4 # #HINT:dontblockwith(Ranar the Ever-Watchful)
Anaba Spirit Crafter (HML) * 4 # Angel of Finality (*) * 1
Talruum Minotaur (MIR) * 4 # Angel of Serenity (*) * 1
Minotaur Warrior (POR) * 4 # Arcane Artisan (*) * 1
Raging Minotaur (POR) * 4 # Arcane Signet (*) * 1
Mountain (10E) *24 # Azorius Chancery (*) * 1
Anaba Bodyguard (10E) * 4 # Azorius Guildgate (*) * 1
Burst Lightning (ZEN) * 4 # Azorius Signet (*) * 1
Canyon Minotaur (M10) * 4 # Banishing Light (*) * 1
Lightning Bolt (M10) * 4 # Behold the Multiverse (*) * 1
Brago, King Eternal (*) * 1
Burnished Hart (*) * 1
Cleansing Nova (*) * 1
Cloudblazer (*) * 1
Cloudgoat Ranger (*) * 1
Command Tower (*) * 1
Commander's Sphere (*) * 1
Cosmic Intervention (*) * 1
Cryptic Caves (*) * 1
Curse of the Swine (*) * 1
Day of the Dragons (*) * 1
Eerie Interlude (*) * 1
Empyrean Eagle (*) * 1
Ethereal Valkyrie (*) * 1
Evangel of Heliod (*) * 1
Flickerwisp (*) * 1
Gates of Istfell (*) * 1
Geist-Honored Monk (*) * 1
Ghostly Flicker (*) * 1
Ghostly Prison (*) * 1
Glacial Floodplain (*) * 1
Goldnight Commander (*) * 1
Hero of Bretagard (*) * 1
Inspired Sphinx (*) * 1
Iron Verdict (*) * 1
Island (*) * 12
Kor Cartographer (*) * 1
Marble Diamond (*) * 1
Marshal's Anthem (*) * 1
Meandering River (*) * 1
Meteor Golem (*) * 1
Migratory Route (*) * 1
Mind Stone (*) * 1
Mist Raven (*) * 1
Mistmeadow Witch (*) * 1
Momentary Blink (*) * 1
Mulldrifter (*) * 1
Myriad Landscape (*) * 1
Niko Defies Destiny (*) * 1
Opal Palace (*) * 1
Plains (*) * 13
Ravenform (*) * 1
Replicating Ring (*) * 1
Restoration Angel (*) * 1
Return to Dust (*) * 1
Sage of the Beyond (*) * 1
Saw It Coming (*) * 1
Sea Gate Oracle (*) * 1
Sejiri Refuge (*) * 1
Sky Diamond (*) * 1
Sol Ring (*) * 1
Soulherder (*) * 1
Spectral Deluge (*) * 1
Stoic Farmer (*) * 1
Storm Herd (*) * 1
Sun Titan (*) * 1
Surtland Elementalist (*) * 1
Swiftfoot Boots (*) * 1
Synthetic Destiny (*) * 1
Tales of the Ancestors (*) * 1
Thunderclap Wyvern (*) * 1
Tranquil Cove (*) * 1
Vega, the Watcher (*) * 1
Wall of Omens (*) * 1
Warhorn Blast (*) * 1
Whirler Rogue (*) * 1
Windfall (*) * 1
#CMD:Ranar the Ever-Watchful (*) * 1
+83 -26
View File
@@ -1,26 +1,83 @@
#NAME:Goblin Spike #NAME:Vrondiss Commander
#DESC:"Huh? Waddarya yellin, mage? #DESC:Forgotten Realms Commander Deck
#DESC: Can't understand ya #DESC:Draconic Rage
#DESC: with all that spell firing #HINT:castpriority(commander,*)
#DESC: going on! #HINT:alwaysattackwith(creature[Dragon Spirit])
#DESC: Wait, lemme read your lips. Bogardan Hellkite (*) *1
#DESC: 'Get ... get ... aw... awhat?" Demanding Dragon (*) *1
#DESC: Dragonmaster Outcast (*) *1
#DESC: (last words of a goblin warrior, Hoard-Smelter Dragon (*) *1
#DESC: moments before being incinerated) Opportunistic Dragon (*) *1
Goblin Balloon Brigade (RV) * 3 # Scourge of Valkas (*) *1
Goblin Soothsayer (MIR) * 4 # Shivan Hellkite (*) *1
Mob Justice (STH) * 4 # Skyline Despot (*) *1
Goblin Sledder (ONS) * 4 # Skyship Stalker (*) *1
Goblin Pyromancer (ONS) * 1 # Taurean Mauler (*) *1
Lava Spike (CHK) * 3 # Terror of Mount Velus (*) *1
Goblin King (10E) * 1 # Thunderbreak Regent (*) *1
Mountain (10E) *19 # Chameleon Colossus (*) *1
Shock (10E) * 3 # Atarka, World Render (*) *1
Fists of the Anvil (10E) * 4 # Earth-Cult Elemental (*) *1
Mogg Fanatic (10E) * 3 # Anger (*) *1
Rockslide Elemental (ALA) * 1 # Dragonlord's Servant (*) *1
Raging Goblin (M10) * 4 # Savage Ventmaw (*) *1
Lightning Bolt (M10) * 4 # Dragonspeaker Shaman (*) *1
Blaze (10E) * 2 # Chain Reaction (*) *1
Rishkar's Expertise (*) *1
Shamanic Revelation (*) *1
Rile (*) *1
Cultivate (*) *1
Explore (*) *1
Rampant Growth (*) *1
Magmaquake (*) *1
Spit Flame (*) *1
Decree of Savagery (*) *1
Kindred Summons (*) *1
Return of the Wildspeaker (*) *1
Beast Within (*) *1
Return to Nature (*) *1
Dragon's Hoard (*) *1
Arcane Signet (*) *1
Commander's Sphere (*) *1
Gruul Signet (*) *1
Heirloom Blade (*) *1
Sol Ring (*) *1
Gratuitous Violence (*) *1
Outpost Siege (*) *1
Warstorm Surge (*) *1
Barbarian Class (*) *1
Colossal Majesty (*) *1
Garruk's Uprising (*) *1
Cinder Glade (*) *1
Crucible of the Spirit Dragon (*) *1
Exotic Orchard (*) *1
Game Trail (*) *1
Haven of the Spirit Dragon (*) *1
Mossfire Valley (*) *1
Mosswort Bridge (*) *1
Command Tower (*) *1
Desert (*) *1
Gruul Turf (*) *1
Path of Ancestry (*) *1
Mountain (*) *12
Forest (*) *15
Klauth, Unrivaled Ancient (*) *1
Berserker's Frenzy (*) *1
Chaos Dragon (*) *1
Maddening Hex (*) *1
Vengeful Ancestor (*) *1
Bag of Tricks (*) *1
Druid of Purification (*) *1
Indomitable Might (*) *1
Neverwinter Hydra (*) *1
Wild Endeavor (*) *1
Dragonborn Champion (*) *1
Klauth's Will (*) *1
Wulfgar of Icewind Dale (*) *1
Component Pouch (*) *1
Sword of Hours (*) *1
Underdark Rift (*) *1
#CMD:Vrondiss, Rage of Ancients (*) *1
#DNG:Tomb of Annihilation (*) *1
#DNG:Lost Mine of Phandelver (*) *1
#DNG:Dungeon of the Mad Mage (*) *1
+3 -1
View File
@@ -10,7 +10,7 @@ def createResZipFile(filename):
rename = False rename = False
if not os.path.isfile('settings/options.txt'): if not os.path.isfile('settings/options.txt'):
os.rename('settings/options.orig.txt', 'settings/options.txt') os.rename('settings/options.orig.txt', 'settings/options.txt')
remame = True rename = True
if not os.path.isfile('player/options.txt'): if not os.path.isfile('player/options.txt'):
os.rename('player/options.orig.txt', 'player/options.txt') os.rename('player/options.orig.txt', 'player/options.txt')
rename = True rename = True
@@ -49,6 +49,7 @@ def createStandardResFile(filename):
if not filename: if not filename:
filename = getFilename() + '.zip' filename = getFilename() + '.zip'
createResZipFile( filename ) createResZipFile( filename )
#print('Created Resource Package for Standard Distribution: {0}'.format(filename), file=sys.stderr)
print >> sys.stderr, 'Created Resource Package for Standard Distribution: {0}'.format( filename) print >> sys.stderr, 'Created Resource Package for Standard Distribution: {0}'.format( filename)
def createIosResFile(filename): def createIosResFile(filename):
@@ -61,6 +62,7 @@ def createIosResFile(filename):
zip_file.write("../../iOS/Res/rules/modrules.xml", "rules/modrules.xml", zipfile.ZIP_STORED) zip_file.write("../../iOS/Res/rules/modrules.xml", "rules/modrules.xml", zipfile.ZIP_STORED)
zip_file.close() zip_file.close()
#print('Created Resource Package for Standard Distribution: {0}'.format(filename), file=sys.stderr)
print >> sys.stderr, 'Created Resource Package for iOS Distribution: {0}'.format( filename) print >> sys.stderr, 'Created Resource Package for iOS Distribution: {0}'.format( filename)
Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

@@ -5,15 +5,6 @@ mana={R}{R}
type=Enchantment type=Enchantment
[/card] [/card]
[card] [card]
name=Stone Giant
text={T}: Target creature you control with toughness less than Stone Giant's power gains flying until end of turn. Destroy that creature at the beginning of the next end step.
mana={2}{R}{R}
type=Creature
subtype=Giant
power=3
toughness=4
[/card]
[card]
name=Drain Power name=Drain Power
text=Target player activates a mana ability of each land he or she controls. Then put all mana from that player's mana pool into yours. text=Target player activates a mana ability of each land he or she controls. Then put all mana from that player's mana pool into yours.
mana={U}{U} mana={U}{U}
@@ -0,0 +1,199 @@
[card]
name=Skullbriar, the Walking Grave
text=Haste -- Whenever Skullbriar, the Walking Grave deals combat damage to a player, put a +1/+1 counter on it. -- Counters remain on Skullbriar as it moves to any zone other than a player's hand or library.
mana={B}{G}
type=Legendary Creature
subtype=Zombie Elemental
power=1
toughness=1
[/card]
[card]
name=Necrotic Ooze
text=As long as Necrotic Ooze is on the battlefield, it has all activated abilities of all creature cards in all graveyards.
mana={2}{B}{B}
type=Creature
subtype=Ooze
power=4
toughness=3
[/card]
[card]
name=Leonin Arbiter
text=Players can't search libraries. Any player may pay {2} for that player to ignore this effect until end of turn.
mana={1}{W}
type=Creature
subtype=Cat Cleric
power=2
toughness=2
[/card]
[card]
name=The Mimeoplasm
text=As The Mimeoplasm enters the battlefield, you may exile two creature cards from graveyards. If you do, it enters the battlefield as a copy of one of those cards with a number of additional +1/+1 counters on it equal to the power of the other card.
mana={2}{G}{U}{B}
type=Legendary Creature
subtype=Ooze
power=0
toughness=0
[/card]
[card]
name=Mizzix of the Izmagnus
text=Whenever you cast an instant or sorcery spell with converted mana cost greater than the number of experience counters you have, you get an experience counter. -- Instant and sorcery spells you cast cost {1} less to cast for each experience counter you have.
mana={2}{U}{R}
type=Legendary Creature
subtype=Goblin Wizard
power=2
toughness=2
[/card]
[card]
name=Thrumming Stone
text=Spells you cast have ripple 4. (Whenever you cast a spell, you may reveal the top four cards of your library. You may cast any revealed cards with the same name as the spell without paying their mana costs. Put the rest on the bottom of your library.)
mana={5}
type=Legendary Artifact
[/card]
[card]
name=Oona's Prowler
abilities=flying
text=Flying -- Discard a card: Oona's Prowler gets -2/-0 until end of turn. Any player may activate this ability.
mana={1}{B}
type=Creature
subtype=Faerie Rogue
power=3
toughness=1
[/card]
[card]
name=Ob Nixilis, Unshackled
abilities=flying,trample
text=Flying, trample -- Whenever an opponent searches his or her library, that player sacrifices a creature and loses 10 life. -- Whenever another creature dies, put a +1/+1 counter on Ob Nixilis, Unshackled.
mana={4}{B}{B}
type=Legendary Creature
subtype=Demon
power=4
toughness=4
[/card]
[card]
name=Panharmonicon
text=If an artifact or creature entering the battlefield causes a triggered ability of a permanent you control to trigger, that ability triggers an additional time.
mana={4}
type=Artifact
[/card]
[card]
name=Thrumming Stone
text=Spells you cast have ripple 4. (Whenever you cast a spell, you may reveal the top four cards of your library. You may cast any revealed cards with the same name as the spell without paying their mana costs. Put the rest on the bottom of your library.)
mana={5}
type=Legendary Artifact
[/card]
[card]
name=Panharmonicon
text=If an artifact or creature entering the battlefield causes a triggered ability of a permanent you control to trigger, that ability triggers an additional time.
mana={4}
type=Artifact
[/card]
[card]
name=Oona's Prowler
abilities=flying
text=Flying -- Discard a card: Oona's Prowler gets -2/-0 until end of turn. Any player may activate this ability.
mana={1}{B}
type=Creature
subtype=Faerie Rogue
power=3
toughness=1
[/card]
[card]
name=Dromoka's Command
text=Choose two -- Prevent all damage target instant or sorcery spell would deal this turn. -- Target player sacrifices an enchantment. -- Put a +1/+1 counter on target creature. -- Target creature you control fights target creature you don't control.
mana={G}{W}
type=Instant
[/card]
[card]
name=Necrotic Ooze
text=As long as Necrotic Ooze is on the battlefield, it has all activated abilities of all creature cards in all graveyards.
mana={2}{B}{B}
type=Creature
subtype=Ooze
power=4
toughness=3
[/card]
[card]
name=Ob Nixilis, Unshackled
abilities=flying,trample
text=Flying, trample -- Whenever an opponent searches his or her library, that player sacrifices a creature and loses 10 life. -- Whenever another creature dies, put a +1/+1 counter on Ob Nixilis, Unshackled.
mana={4}{B}{B}
type=Legendary Creature
subtype=Demon
power=4
toughness=4
[/card]
[card]
name=Skullbriar, the Walking Grave
text=Haste -- Whenever Skullbriar, the Walking Grave deals combat damage to a player, put a +1/+1 counter on it. -- Counters remain on Skullbriar as it moves to any zone other than a player's hand or library.
mana={B}{G}
type=Legendary Creature
subtype=Zombie Elemental
power=1
toughness=1
[/card]
[card]
name=Leonin Arbiter
text=Players can't search libraries. Any player may pay {2} for that player to ignore this effect until end of turn.
mana={1}{W}
type=Creature
subtype=Cat Cleric
power=2
toughness=2
[/card]
[card]
name=Gifts Ungiven
text=Search your library for four cards with different names and reveal them. Target opponent chooses two of those cards. Put the chosen cards into your graveyard and the rest into your hand. Then shuffle your library.
mana={3}{U}
type=Instant
[/card]
[card]
name=The Mimeoplasm
text=As The Mimeoplasm enters the battlefield, you may exile two creature cards from graveyards. If you do, it enters the battlefield as a copy of one of those cards with a number of additional +1/+1 counters on it equal to the power of the other card.
mana={2}{G}{U}{B}
type=Legendary Creature
subtype=Ooze
power=0
toughness=0
[/card]
[card]
name=Panharmonicon
text=If an artifact or creature entering the battlefield causes a triggered ability of a permanent you control to trigger, that ability triggers an additional time.
mana={4}
type=Artifact
[/card]
[card]
name=Gifts Ungiven
text=Search your library for four cards with different names and reveal them. Target opponent chooses two of those cards. Put the chosen cards into your graveyard and the rest into your hand. Then shuffle your library.
mana={3}{U}
type=Instant
[/card]
[card]
name=Mizzix of the Izmagnus
text=Whenever you cast an instant or sorcery spell with converted mana cost greater than the number of experience counters you have, you get an experience counter. -- Instant and sorcery spells you cast cost {1} less to cast for each experience counter you have.
mana={2}{U}{R}
type=Legendary Creature
subtype=Goblin Wizard
power=2
toughness=2
[/card]
[card]
name=The Mimeoplasm
text=As The Mimeoplasm enters the battlefield, you may exile two creature cards from graveyards. If you do, it enters the battlefield as a copy of one of those cards with a number of additional +1/+1 counters on it equal to the power of the other card.
mana={2}{G}{U}{B}
type=Legendary Creature
subtype=Ooze
power=0
toughness=0
[/card]
[card]
name=Gifts Ungiven
text=Search your library for four cards with different names and reveal them. Target opponent chooses two of those cards. Put the chosen cards into your graveyard and the rest into your hand. Then shuffle your library.
mana={3}{U}
type=Instant
[/card]
[card]
name=Dromoka's Command
text=Choose two -- Prevent all damage target instant or sorcery spell would deal this turn. -- Target player sacrifices an enchantment. -- Put a +1/+1 counter on target creature. -- Target creature you control fights target creature you don't control.
mana={G}{W}
type=Instant
[/card]
@@ -1,13 +1,4 @@
[card] [card]
name=Stone Giant
text={T}: Target creature you control with toughness less than Stone Giant's power gains flying until end of turn. Destroy that creature at the beginning of the next end step.
mana={2}{R}{R}
type=Creature
subtype=Giant
power=3
toughness=4
[/card]
[card]
name=Tempest Efreet name=Tempest Efreet
text=Remove Tempest Efreet from your deck before playing if you're not playing for ante. -- {T}, Sacrifice Tempest Efreet: Target opponent may pay 10 life. If that player doesn't, he or she reveals a card at random from his or her hand. Exchange ownership of the revealed card and Tempest Efreet. Put the revealed card into your hand and Tempest Efreet from anywhere into that player's graveyard. text=Remove Tempest Efreet from your deck before playing if you're not playing for ante. -- {T}, Sacrifice Tempest Efreet: Target opponent may pay 10 life. If that player doesn't, he or she reveals a card at random from his or her hand. Exchange ownership of the revealed card and Tempest Efreet. Put the revealed card into your hand and Tempest Efreet from anywhere into that player's graveyard.
mana={1}{R}{R}{R} mana={1}{R}{R}{R}
@@ -174,15 +174,6 @@ power=1
toughness=1 toughness=1
[/card] [/card]
[card] [card]
name=Stone Giant
text={T}: Target creature you control with toughness less than Stone Giant's power gains flying until end of turn. Destroy that creature at the beginning of the next end step.
mana={2}{R}{R}
type=Creature
subtype=Giant
power=3
toughness=4
[/card]
[card]
name=Deflection name=Deflection
text=Change the target of target spell with a single target. text=Change the target of target spell with a single target.
mana={3}{U} mana={3}{U}
@@ -11,15 +11,6 @@ mana={2}{U}{B}{R}
type=Sorcery type=Sorcery
[/card] [/card]
[card] [card]
name=Winding Constrictor
text=If one or more counters would be placed on an artifact or creature you control, that many plus one of each of those kinds of counters are placed on that permanent instead. -- If you would get one or more counters, you get that many plus one of each of those kinds of counters instead.
mana={B}{G}
type=Creature
subtype=Snake
power=2
toughness=3
[/card]
[card]
name=Crackdown Construct name=Crackdown Construct
text=Whenever you activate an ability of an artifact or creature that isn't a mana ability, Crackdown Construct gets +1/+1 until end of turn. text=Whenever you activate an ability of an artifact or creature that isn't a mana ability, Crackdown Construct gets +1/+1 until end of turn.
mana={4} mana={4}
@@ -1,14 +1,4 @@
[card] [card]
name=Mogis, God of Slaughter
abilities=indestructible
text=Indestructible -- As long as your devotion to black and red is less than seven, Mogis isn't a creature. -- At the beginning of each opponent's upkeep, Mogis deals 2 damage to that player unless he or she sacrifices a creature.
mana={2}{B}{R}
type=Legendary Enchantment Creature
subtype=God
power=7
toughness=5
[/card]
[card]
name=Acolyte's Reward name=Acolyte's Reward
text=Prevent the next X damage that would be dealt to target creature this turn, where X is your devotion to white. If damage is prevented this way, Acolyte's Reward deals that much damage to target creature or player. (Each {W} in the mana costs of permanents you control counts toward your devotion to white.) text=Prevent the next X damage that would be dealt to target creature this turn, where X is your devotion to white. If damage is prevented this way, Acolyte's Reward deals that much damage to target creature or player. (Each {W} in the mana costs of permanents you control counts toward your devotion to white.)
mana={1}{W} mana={1}{W}
@@ -0,0 +1,64 @@
[card]
name=Wire Surgeons
abilities=fear
text=Fear (This creature can't be blocked except by artifact creatures and/or black creatures.) -- Each artifact creature card in your graveyard has encore. Its encore cost is equal to its mana cost. (Exile it and pay its mana cost: For each opponent, create a token copy that attacks that opponent this turn if able. They gain haste. Sacrifice them at the beginning of the next end step. Activate only as a sorcery.)
mana={4}{B}{B}
type=Creature
subtype=Human Artificer
power=6
toughness=5
[/card]
[card]
name=Disciple of Caelus Nin
text=When Disciple of Caelus Nin enters the battlefield, starting with you, each player chooses up to five permanents they control. All permanents other than Disciple of Caelus Nin that weren't chosen this way phase out. -- Permanents can't phase in.
mana={4}{W}
type=Creature
subtype=Human Wizard
power=3
toughness=4
[/card]
[card]
name=Wire Surgeons
abilities=fear
text=Fear (This creature can't be blocked except by artifact creatures and/or black creatures.) -- Each artifact creature card in your graveyard has encore. Its encore cost is equal to its mana cost. (Exile it and pay its mana cost: For each opponent, create a token copy that attacks that opponent this turn if able. They gain haste. Sacrifice them at the beginning of the next end step. Activate only as a sorcery.)
mana={4}{B}{B}
type=Creature
subtype=Human Artificer
power=6
toughness=5
[/card]
[card]
name=Strionic Resonator
text={2}, {T}: Copy target triggered ability you control. You may choose new targets for the copy. (A triggered ability uses the words "when," "whenever," or "at.")
mana={2}
type=Artifact
[/card]
[card]
name=Ashnod the Uncaring
abilities=deathtouch
text=Deathtouch -- Whenever you activate an ability of an artifact or creature that isn't a mana ability, if one or more permanents were sacrificed to activate it, you may copy that ability. You may choose new targets for the copy. (Sacrificing an artifact for mana to activate an ability doesn't count.)
mana={2}{U}{B}{R}
type=Legendary Creature
subtype=Human Artificer
power=1
toughness=4
[/card]
[card]
name=Disciple of Caelus Nin
text=When Disciple of Caelus Nin enters the battlefield, starting with you, each player chooses up to five permanents they control. All permanents other than Disciple of Caelus Nin that weren't chosen this way phase out. -- Permanents can't phase in.
mana={4}{W}
type=Creature
subtype=Human Wizard
power=3
toughness=4
[/card]
[card]
name=Ashnod the Uncaring
abilities=deathtouch
text=Deathtouch -- Whenever you activate an ability of an artifact or creature that isn't a mana ability, if one or more permanents were sacrificed to activate it, you may copy that ability. You may choose new targets for the copy. (Sacrificing an artifact for mana to activate an ability doesn't count.)
mana={2}{U}{B}{R}
type=Legendary Creature
subtype=Human Artificer
power=1
toughness=4
[/card]
@@ -0,0 +1,42 @@
[card]
name=Inspiring Statuary
text=Nonartifact spells you cast have improvise. (Your artifacts can help cast those spells. Each artifact you tap after you're done activating mana abilities pays for {1}.)
mana={3}
type=Artifact
[/card]
[card]
name=Inspiring Statuary
text=Nonartifact spells you cast have improvise. (Your artifacts can help cast those spells. Each artifact you tap after you're done activating mana abilities pays for {1}.)
mana={3}
type=Artifact
[/card]
[card]
name=Goblin Charbelcher
text={3}, {T}: Reveal cards from the top of your library until you reveal a land card. Goblin Charbelcher deals damage equal to the number of nonland cards revealed this way to target creature or player. If the revealed land card was a Mountain, Goblin Charbelcher deals double that damage instead. Put the revealed cards on the bottom of your library in any order.
mana={4}
type=Artifact
[/card]
[card]
name=Goblin Charbelcher
text={3}, {T}: Reveal cards from the top of your library until you reveal a land card. Goblin Charbelcher deals damage equal to the number of nonland cards revealed this way to target creature or player. If the revealed land card was a Mountain, Goblin Charbelcher deals double that damage instead. Put the revealed cards on the bottom of your library in any order.
mana={4}
type=Artifact
[/card]
[card]
name=Precursor Golem
text=When Precursor Golem enters the battlefield, put two 3/3 colorless Golem artifact creature tokens onto the battlefield. -- Whenever a player casts an instant or sorcery spell that targets only a single Golem, that player copies that spell for each other Golem that spell could target. Each copy targets a different one of those Golems.
mana={5}
type=Artifact Creature
subtype=Golem
power=3
toughness=3
[/card]
[card]
name=Precursor Golem
text=When Precursor Golem enters the battlefield, put two 3/3 colorless Golem artifact creature tokens onto the battlefield. -- Whenever a player casts an instant or sorcery spell that targets only a single Golem, that player copies that spell for each other Golem that spell could target. Each copy targets a different one of those Golems.
mana={5}
type=Artifact Creature
subtype=Golem
power=3
toughness=3
[/card]
@@ -23,15 +23,6 @@ power=2
toughness=2 toughness=2
[/card] [/card]
[card] [card]
name=Leonin Shikari
text=You may activate equip abilities any time you could cast an instant.
mana={1}{W}
type=Creature
subtype=Cat Soldier
power=2
toughness=2
[/card]
[card]
name=Mairsil, the Pretender name=Mairsil, the Pretender
text=When Mairsil, the Pretender enters the battlefield, you may exile an artifact or creature card from your hand or graveyard and put a cage counter on it. -- Mairsil, the Pretender has all activated abilities of all cards you own in exile with cage counters on them. You may activate each of those abilities only once each turn. text=When Mairsil, the Pretender enters the battlefield, you may exile an artifact or creature card from your hand or graveyard and put a cage counter on it. -- Mairsil, the Pretender has all activated abilities of all cards you own in exile with cage counters on them. You may activate each of those abilities only once each turn.
mana={1}{U}{B}{R} mana={1}{U}{B}{R}
@@ -60,7 +51,7 @@ name=Portal Mage
abilities=flash abilities=flash
auto=phasealter(remove,combatphases,controller) auto=phasealter(remove,combatphases,controller)
auto=nextphasealter(add,combatphases,controller,after<combatends>) auto=nextphasealter(add,combatphases,controller,after<combatends>)
text=Flash -- When Portal Mage enters the battlefield during the declare attackers step, you may reselect which player or planeswalker target attacking creature is attacking. (It can’t attack its controller or its controller’s planeswalkers.) text=Flash -- When Portal Mage enters the battlefield during the declare attackers step, you may reselect which player or planeswalker target attacking creature is attacking. (It can?t attack its controller or its controller?s planeswalkers.)
mana={2}{U} mana={2}{U}
type=Creature type=Creature
subtype=Human Wizard subtype=Human Wizard
@@ -55,15 +55,6 @@ mana={6}{U}{U}
type=Sorcery type=Sorcery
[/card] [/card]
[card] [card]
name=Nylea's Colossus
text=Constellation - Whenever Nylea's Colossus or another enchantment enters the battlefield under your control, double target creature's power and toughness until end of turn.
mana={6}{G}
type=Enchantment Creature
subtype=Giant
power=6
toughness=6
[/card]
[card]
name=Jeskai Infiltrator name=Jeskai Infiltrator
text=Jeskai Infiltrator can't be blocked as long as you control no other creatures. -- When Jeskai Infiltrator deals combat damage to a player, exile it and the top card of your library in a face-down pile, shuffle that pile, then manifest those cards. (To manifest a card, put it onto the battlefield face down as a 2/2 creature. Turn it face up any time for its mana cost if it's a creature card.) text=Jeskai Infiltrator can't be blocked as long as you control no other creatures. -- When Jeskai Infiltrator deals combat damage to a player, exile it and the top card of your library in a face-down pile, shuffle that pile, then manifest those cards. (To manifest a card, put it onto the battlefield face down as a 2/2 creature. Turn it face up any time for its mana cost if it's a creature card.)
mana={2}{U} mana={2}{U}
@@ -78,7 +78,7 @@ name=Portal Mage
abilities=flash abilities=flash
auto=phasealter(remove,combatphases,controller) auto=phasealter(remove,combatphases,controller)
auto=nextphasealter(add,combatphases,controller,after<combatends>) auto=nextphasealter(add,combatphases,controller,after<combatends>)
text=Flash -- When Portal Mage enters the battlefield during the declare attackers step, you may reselect which player or planeswalker target attacking creature is attacking. (It can’t attack its controller or its controller’s planeswalkers.) text=Flash -- When Portal Mage enters the battlefield during the declare attackers step, you may reselect which player or planeswalker target attacking creature is attacking. (It can?t attack its controller or its controller?s planeswalkers.)
mana={2}{U} mana={2}{U}
type=Creature type=Creature
subtype=Human Wizard subtype=Human Wizard
@@ -0,0 +1,281 @@
[card]
name=Volo, Itinerant Scholar
abilities=backgroundpartner
text=When Volo enters the battlefield, create Volo's Journal, a legendary colorless artifact token with hexproof and "Whenever you cast a creature spell, note one of its creature types that hasn't been noted for this artifact." -- {2}, {T}: Draw a card for each creature type noted for target permanent you control named Volo's Journal. -- Choose a Background
mana={2}{U}
type=Legendary Creature
subtype=Human Wizard
power=2
toughness=3
[/card]
[card]
name=Raggadragga, Goreguts Boss
text=Each creature you control with a mana ability gets +2/+2. -- Whenever a creature you control with a mana ability attacks, untap it. -- Whenever you cast a spell, if at least seven mana was spent to cast it, untap target creature. It gets +7/+7 and gains trample until end of turn.
mana={2}{R}{G}
type=Legendary Creature
subtype=Human Boar
power=4
toughness=4
[/card]
[card]
name=Lae'zel, Vlaakith's Champion
abilities=backgroundpartner
text=If you would put one or more counters on a creature or planeswalker you control or on yourself, put that many plus one of each of those kinds of counters on that permanent or player instead. -- Choose a Background (You can have a Background as a second commander.)
mana={2}{W}
type=Legendary Creature
subtype=Gith Warrior
power=3
toughness=3
[/card]
[card]
name=Lae'zel's Acrobatics
text=Exile all nontoken creatures you control, then roll a d20. -- 1-9 | Return those cards to the battlefield under their owner's control at the beginning of the next end step. -- 10-20 | Return those cards to the battlefield under their owner's control, then exile them again. Return those cards to the battlefield under their owner's control at the beginning of the next end step.
mana={3}{W}
type=Instant
[/card]
[card]
name=Noble Heritage
text=Commander creatures you own have "When this creature enters the battlefield and at the beginning of your upkeep, each player may put two +1/+1 counters on a creature they control. For each opponent who does, you gain protection from that player until your next turn." (You can't be targeted, dealt damage, or enchanted by anything controlled by that player.)
mana={1}{W}
type=Legendary Enchantment
subtype=Background
[/card]
[card]
name=Archivist of Oghma
abilities=flash
text=Flash -- Whenever an opponent searches their library, you gain 1 life and draw a card.
mana={1}{W}
type=Creature
subtype=Halfling Cleric
power=2
toughness=2
[/card]
[card]
name=Fraying Line
text=When Fraying Line enters the battlefield, put a rope counter on target creature you control. -- At the beginning of each player's upkeep, that player may pay {2}. If they do, they put a rope counter on a creature they control. Otherwise, exile Fraying Line and each creature without a rope counter on it, then remove all rope counters from all creatures.
mana={4}
type=Artifact
[/card]
[card]
name=Lae'zel's Acrobatics
text=Exile all nontoken creatures you control, then roll a d20. -- 1-9 | Return those cards to the battlefield under their owner's control at the beginning of the next end step. -- 10-20 | Return those cards to the battlefield under their owner's control, then exile them again. Return those cards to the battlefield under their owner's control at the beginning of the next end step.
mana={3}{W}
type=Instant
[/card]
[card]
name=Green Slime
abilities=flash
text=Flash -- When Green Slime enters the battlefield, counter target activated or triggered ability from an artifact or enchantment source. If a permanent's ability is countered this way, destroy that permanent. -- Foretell {G} (During your turn, you may pay {2} and exile this card from your hand face down. Cast it on a later turn for its foretell cost.)
mana={2}{G}
type=Creature
subtype=Ooze
power=2
toughness=2
[/card]
[card]
name=Aboleth Spawn
abilities=flash
auto=_WARD_(2)
text=Flash -- Ward {2} -- Probing Telepathy - Whenever a creature entering the battlefield under an opponent's control causes a triggered ability of that creature to trigger, you may copy that ability. You may choose new targets for the copy.
mana={2}{U}
type=Creature
subtype=Fish Horror
power=2
toughness=3
[/card]
[card]
name=Stick Together
text=Each player chooses a party from among creatures they control, then sacrifices the rest. (To choose a party, choose up to one each of Cleric, Rogue, Warrior, and Wizard.)
mana={3}{W}{W}
type=Sorcery
[/card]
[card]
name=Mighty Servant of Leuk-o
abilities=trample
text=Trample -- Ward-Discard a card. -- Whenever Mighty Servant of Leuk-o becomes crewed for the first time each turn, if it was crewed by exactly two creatures, it gains "Whenever this creature deals combat damage to a player, draw two cards" until end of turn. -- Crew 4
mana={3}
type=Artifact
subtype=Vehicle
power=6
toughness=6
[/card]
[card]
name=Grell Philosopher
text=Aberrant Tinkering - When Grell Philosopher enters the battlefield and at the beginning of your upkeep, each Horror you control gains all activated abilities of target artifact an opponent controls until end of turn. You may spend blue mana as though it were mana of any color to activate those abilities.
mana={2}{U}
type=Creature
subtype=Horror Wizard
power=1
toughness=4
[/card]
[card]
name=Wyll's Reversal
target=*|stack
text=Choose target spell or ability with one or more targets. Roll a d20 and add the greatest power among creatures you control. -- 1-14 | You may choose new targets for that spell or ability. -- 15+ | You may choose new targets for that spell or ability. Then copy it. You may choose new targets for the copy.
mana={2}{R}
type=Instant
[/card]
[card]
name=Mighty Servant of Leuk-o
abilities=trample
text=Trample -- Ward-Discard a card. -- Whenever Mighty Servant of Leuk-o becomes crewed for the first time each turn, if it was crewed by exactly two creatures, it gains "Whenever this creature deals combat damage to a player, draw two cards" until end of turn. -- Crew 4
mana={3}
type=Artifact
subtype=Vehicle
power=6
toughness=6
[/card]
[card]
name=Fraying Line
text=When Fraying Line enters the battlefield, put a rope counter on target creature you control. -- At the beginning of each player's upkeep, that player may pay {2}. If they do, they put a rope counter on a creature they control. Otherwise, exile Fraying Line and each creature without a rope counter on it, then remove all rope counters from all creatures.
mana={4}
type=Artifact
[/card]
[card]
name=Lae'zel, Vlaakith's Champion
abilities=backgroundpartner
text=If you would put one or more counters on a creature or planeswalker you control or on yourself, put that many plus one of each of those kinds of counters on that permanent or player instead. -- Choose a Background (You can have a Background as a second commander.)
mana={2}{W}
type=Legendary Creature
subtype=Gith Warrior
power=3
toughness=3
[/card]
[card]
name=Volo, Itinerant Scholar
abilities=backgroundpartner
text=When Volo enters the battlefield, create Volo's Journal, a legendary colorless artifact token with hexproof and "Whenever you cast a creature spell, note one of its creature types that hasn't been noted for this artifact." -- {2}, {T}: Draw a card for each creature type noted for target permanent you control named Volo's Journal. -- Choose a Background
mana={2}{U}
type=Legendary Creature
subtype=Human Wizard
power=2
toughness=3
[/card]
[card]
name=Archivist of Oghma
abilities=flash
text=Flash -- Whenever an opponent searches their library, you gain 1 life and draw a card.
mana={1}{W}
type=Creature
subtype=Halfling Cleric
power=2
toughness=2
[/card]
[card]
name=Aboleth Spawn
abilities=flash
auto=_WARD_(2)
text=Flash -- Ward {2} -- Probing Telepathy - Whenever a creature entering the battlefield under an opponent's control causes a triggered ability of that creature to trigger, you may copy that ability. You may choose new targets for the copy.
mana={2}{U}
type=Creature
subtype=Fish Horror
power=2
toughness=3
[/card]
[card]
name=Stick Together
text=Each player chooses a party from among creatures they control, then sacrifices the rest. (To choose a party, choose up to one each of Cleric, Rogue, Warrior, and Wizard.)
mana={3}{W}{W}
type=Sorcery
[/card]
[card]
name=Grell Philosopher
text=Aberrant Tinkering - When Grell Philosopher enters the battlefield and at the beginning of your upkeep, each Horror you control gains all activated abilities of target artifact an opponent controls until end of turn. You may spend blue mana as though it were mana of any color to activate those abilities.
mana={2}{U}
type=Creature
subtype=Horror Wizard
power=1
toughness=4
[/card]
[card]
name=Green Slime
abilities=flash
text=Flash -- When Green Slime enters the battlefield, counter target activated or triggered ability from an artifact or enchantment source. If a permanent's ability is countered this way, destroy that permanent. -- Foretell {G} (During your turn, you may pay {2} and exile this card from your hand face down. Cast it on a later turn for its foretell cost.)
mana={2}{G}
type=Creature
subtype=Ooze
power=2
toughness=2
[/card]
[card]
name=Bloodthirsty Blade
auto=teach(creature) 2/0
auto=teach(creature) mustattack
text=Equipped creature gets +2/+0 and is goaded. (It attacks each combat if able and attacks a player other than you if able.) -- {1}: Attach Bloodthirsty Blade to target creature an opponent controls. Activate this ability only any time you could cast a sorcery.
mana={2}
type=Artifact
subtype=Equipment
[/card]
[card]
name=Spellskite
text={PU}: Change a target of target spell or ability to Spellskite. ({PU} can be paid with either {U} or 2 life.)
mana={2}
type=Artifact Creature
subtype=Horror
power=0
toughness=4
[/card]
[card]
name=Wyll's Reversal
target=*|stack
text=Choose target spell or ability with one or more targets. Roll a d20 and add the greatest power among creatures you control. -- 1-14 | You may choose new targets for that spell or ability. -- 15+ | You may choose new targets for that spell or ability. Then copy it. You may choose new targets for the copy.
mana={2}{R}
type=Instant
[/card]
[card]
name=Dynaheir, Invoker Adept
abilities=haste
text=Haste -- You may activate abilities of other creatures you control as though those creatures had haste. -- {T}: When you next activate an ability that isn't a mana ability this turn by spending four or more mana to activate it, copy that ability. You may choose new targets for the copy.
mana={1}{U}{R}{W}
type=Legendary Creature
subtype=Human Wizard
power=4
toughness=4
[/card]
[card]
name=Jon Irenicus, Shattered One
text=At the beginning of your end step, target opponent gains control of up to one target creature you control. Put two +1/+1 counters on it and tap it. It's goaded for the rest of the game and it gains "This creature can't be sacrificed." (It attacks each combat if able and attacks a player other than you if able.) -- Whenever a creature you own but don't control attacks, you draw a card.
mana={2}{U}{B}
type=Legendary Creature
subtype=Elf Wizard
power=3
toughness=3
[/card]
[card]
name=Valiant Changeling
abilities=changeling,double strike
text=This spell costs {1} less to cast for each creature type among creatures you control. This effect can't reduce the amount of mana this spell costs by more than {5}. -- Changeling (This card is every creature type.) -- Double strike
mana={5}{W}{W}
type=Creature
subtype=Shapeshifter
power=3
toughness=3
[/card]
[card]
name=Raggadragga, Goreguts Boss
text=Each creature you control with a mana ability gets +2/+2. -- Whenever a creature you control with a mana ability attacks, untap it. -- Whenever you cast a spell, if at least seven mana was spent to cast it, untap target creature. It gets +7/+7 and gains trample until end of turn.
mana={2}{R}{G}
type=Legendary Creature
subtype=Human Boar
power=4
toughness=4
[/card]
[card]
name=Dynaheir, Invoker Adept
abilities=haste
text=Haste -- You may activate abilities of other creatures you control as though those creatures had haste. -- {T}: When you next activate an ability that isn't a mana ability this turn by spending four or more mana to activate it, copy that ability. You may choose new targets for the copy.
mana={1}{U}{R}{W}
type=Legendary Creature
subtype=Human Wizard
power=4
toughness=4
[/card]
[card]
name=Jon Irenicus, Shattered One
text=At the beginning of your end step, target opponent gains control of up to one target creature you control. Put two +1/+1 counters on it and tap it. It's goaded for the rest of the game and it gains "This creature can't be sacrificed." (It attacks each combat if able and attacks a player other than you if able.) -- Whenever a creature you own but don't control attacks, you draw a card.
mana={2}{U}{B}
type=Legendary Creature
subtype=Elf Wizard
power=3
toughness=3
[/card]
@@ -0,0 +1,375 @@
[card]
name=Inspiring Statuary
text=Nonartifact spells you cast have improvise. (Your artifacts can help cast those spells. Each artifact you tap after you're done activating mana abilities pays for {1}.)
mana={3}
type=Artifact
[/card]
[card]
name=Yennett, Cryptic Sovereign
text=Flying, vigilance, menace -- Whenever Yennett, Cryptic Sovereign attacks, reveal the top card of your library. You may cast it without paying its mana cost if its converted mana cost is odd. If you don't cast it, draw a card.
mana={2}{W}{U}{B}
type=Legendary Creature
subtype=Sphinx
power=3
toughness=5
[/card]
[card]
name=Mizzix of the Izmagnus
text=Whenever you cast an instant or sorcery spell with converted mana cost greater than the number of experience counters you have, you get an experience counter. -- Instant and sorcery spells you cast cost {1} less to cast for each experience counter you have.
mana={2}{U}{R}
type=Legendary Creature
subtype=Goblin Wizard
power=2
toughness=2
[/card]
[card]
name=Gisela, Blade of Goldnight
abilities=flying,first strike
text=Flying, first strike -- If a source would deal damage to an opponent or a permanent an opponent controls, that source deals double that damage to that player or permanent instead. -- If a source would deal damage to you or a permanent you control, prevent half that damage, rounded up.
mana={4}{R}{W}{W}
type=Legendary Creature
subtype=Angel
power=5
toughness=5
[/card]
[card]
name=Hatchery Sliver
text=Replicate {1}{G} (When you cast this spell, copy it for each time you paid its replicate cost.) -- Each Sliver spell you cast has replicate. The replicate cost is equal to its mana cost. (A copy of a permanent spell becomes a token.)
mana={1}{G}
type=Creature
subtype=Sliver
power=2
toughness=2
[/card]
[card]
name=The Chain Veil
text=At the beginning of your end step, if you didn't activate a loyalty ability of a planeswalker this turn, you lose 2 life. -- {4}, {T}: For each planeswalker you control, you may activate one of its loyalty abilities once this turn as though none of its loyalty abilities have been activated this turn.
mana={4}
type=Legendary Artifact
[/card]
[card]
name=Gisela, Blade of Goldnight
abilities=flying,first strike
text=Flying, first strike -- If a source would deal damage to an opponent or a permanent an opponent controls, that source deals double that damage to that player or permanent instead. -- If a source would deal damage to you or a permanent you control, prevent half that damage, rounded up.
mana={4}{R}{W}{W}
type=Legendary Creature
subtype=Angel
power=5
toughness=5
[/card]
[card]
name=Jaya's Phoenix
abilities=flying,haste
text=Flying, haste -- Whenever Jaya's Phoenix deals combat damage to a player or planeswalker, copy the next loyalty ability you activate this turn when you activate it. You may choose new targets for the copy. -- Whenever you cast a planeswalker spell, you may return Jaya's Phoenix from your graveyard to the battlefield.
mana={4}{R}
type=Creature
subtype=Phoenix
power=3
toughness=3
[/card]
[card]
name=Experiment Kraj
text=Experiment Kraj has all activated abilities of each other creature with a +1/+1 counter on it. -- {T}: Put a +1/+1 counter on target creature.
mana={2}{G}{G}{U}{U}
type=Legendary Creature
subtype=Ooze Mutant
power=4
toughness=6
[/card]
[card]
name=Oath of Teferi
text=When Oath of Teferi enters the battlefield, exile another target permanent you control. Return it to the battlefield under its owner's control at the beginning of the next end step. -- You may activate the loyalty abilities of planeswalkers you control twice each turn rather than only once.
mana={3}{W}{U}
type=Legendary Enchantment
[/card]
[card]
name=Tempt with Vengeance
text=Tempting offer - Put X 1/1 red Elemental creature tokens with haste onto the battlefield. Each opponent may put X 1/1 red Elemental creature tokens with haste onto the battlefield. For each player who does, put X 1/1 red Elemental creature tokens with haste onto the battlefield.
mana={X}{R}
type=Sorcery
[/card]
[card]
name=Portal Mage
abilities=flash
auto=phasealter(remove,combatphases,controller)
auto=nextphasealter(add,combatphases,controller,after<combatends>)
text=Flash -- When Portal Mage enters the battlefield during the declare attackers step, you may reselect which player or planeswalker target attacking creature is attacking. (It can?t attack its controller or its controller?s planeswalkers.)
mana={2}{U}
type=Creature
subtype=Human Wizard
Power=2
toughness=2
[/card]
[card]
name=Minds Aglow
text=Join forces - Starting with you, each player may pay any amount of mana. Each player draws X cards, where X is the total amount of mana paid this way.
mana={U}
type=Sorcery
[/card]
[card]
name=Aminatou's Augury
text=Exile the top eight cards of your library. You may put a land card from among them onto the battlefield. Until end of turn, for each nonland card type, you may cast a spell of that type from among the exiled cards without paying its mana cost.
mana={6}{U}{U}
type=Sorcery
[/card]
[card]
name=Custodi Squire
abilities=flying
text=Flying -- Will of the council - When Custodi Squire enters the battlefield, starting with you, each player votes for an artifact, creature, or enchantment card in your graveyard. Return each card with the most votes or tied for most votes to your hand.
mana={4}{W}
type=Creature
subtype=Spirit Cleric
power=3
toughness=3
[/card]
[card]
name=Alms Collector
text=Flash -- If an opponent would draw two or more cards, instead you and that player each draw a card.
mana={3}{W}
type=Creature
subtype=Cat Cleric
power=3
toughness=4
[/card]
[card]
name=Tempt with Vengeance
text=Tempting offer - Put X 1/1 red Elemental creature tokens with haste onto the battlefield. Each opponent may put X 1/1 red Elemental creature tokens with haste onto the battlefield. For each player who does, put X 1/1 red Elemental creature tokens with haste onto the battlefield.
mana={X}{R}
type=Sorcery
[/card]
[card]
name=Zada, Hedron Grinder
text=Whenever you cast an instant or sorcery spell that targets only Zada, Hedron Grinder, copy that spell for each other creature you control that the spell could target. Each copy targets a different one of those creatures.
mana={3}{R}
type=Legendary Creature
subtype=Goblin Ally
power=3
toughness=3
[/card]
[card]
name=Hatchery Sliver
text=Replicate {1}{G} (When you cast this spell, copy it for each time you paid its replicate cost.) -- Each Sliver spell you cast has replicate. The replicate cost is equal to its mana cost. (A copy of a permanent spell becomes a token.)
mana={1}{G}
type=Creature
subtype=Sliver
power=2
toughness=2
[/card]
[card]
name=Jaya's Phoenix
abilities=flying,haste
text=Flying, haste -- Whenever Jaya's Phoenix deals combat damage to a player or planeswalker, copy the next loyalty ability you activate this turn when you activate it. You may choose new targets for the copy. -- Whenever you cast a planeswalker spell, you may return Jaya's Phoenix from your graveyard to the battlefield.
mana={4}{R}
type=Creature
subtype=Phoenix
power=3
toughness=3
[/card]
[card]
name=Day's Undoing
text=Each player shuffles his or her hand and graveyard into his or her library, then draws seven cards. If it's your turn, end the turn. (Exile all spells and abilities on the stack, including this card. Discard down to your maximum hand size. Damage wears off, and "this turn" and "until end of turn" effects end.)
mana={2}{U}
type=Sorcery
[/card]
[card]
name=Abstruse Archaic
abilities=vigilance
text=Vigilance -- {1}, {T}: Copy target activated or triggered ability you control from a colorless source. You may choose new targets for the copy. (Mana abilities can't be targeted.)
mana={4}
type=Creature
subtype=Avatar
power=3
toughness=4
[/card]
[card]
name=Commandeer
text=You may exile two blue cards from your hand rather than pay Commandeer's mana cost. -- Gain control of target noncreature spell. You may choose new targets for it. (If that spell is an artifact, enchantment, or planeswalker, the permanent enters the battlefield under your control.)
mana={5}{U}{U}
type=Instant
[/card]
[card]
name=Imp's Mischief
text=Change the target of target spell with a single target. You lose life equal to that spell's converted mana cost.
mana={1}{B}
type=Instant
[/card]
[card]
name=Stitcher Geralf
text={2}{U}, {T}: Each player puts the top three cards of his or her library into his or her graveyard. Exile up to two creature cards put into graveyards this way. Put an X/X blue Zombie creature token onto the battlefield, where X is the total power of the cards exiled this way.
mana={3}{U}{U}
type=Legendary Creature
subtype=Human Wizard
power=3
toughness=4
[/card]
[card]
name=Minds Aglow
text=Join forces - Starting with you, each player may pay any amount of mana. Each player draws X cards, where X is the total amount of mana paid this way.
mana={U}
type=Sorcery
[/card]
[card]
name=Day's Undoing
text=Each player shuffles his or her hand and graveyard into his or her library, then draws seven cards. If it's your turn, end the turn. (Exile all spells and abilities on the stack, including this card. Discard down to your maximum hand size. Damage wears off, and "this turn" and "until end of turn" effects end.)
mana={2}{U}
type=Sorcery
[/card]
[card]
name=Commandeer
text=You may exile two blue cards from your hand rather than pay Commandeer's mana cost. -- Gain control of target noncreature spell. You may choose new targets for it. (If that spell is an artifact, enchantment, or planeswalker, the permanent enters the battlefield under your control.)
mana={5}{U}{U}
type=Instant
[/card]
[card]
name=Aminatou's Augury
text=Exile the top eight cards of your library. You may put a land card from among them onto the battlefield. Until end of turn, for each nonland card type, you may cast a spell of that type from among the exiled cards without paying its mana cost.
mana={6}{U}{U}
type=Sorcery
[/card]
[card]
name=Oreskos Explorer
text=When Oreskos Explorer enters the battlefield, search your library for up to X Plains cards, where X is the number of players who control more lands than you. Reveal those cards, put them into your hand, then shuffle your library.
mana={1}{W}
type=Creature
subtype=Cat Scout
power=2
toughness=2
[/card]
[card]
name=Norn's Annex
text=({PW} can be paid with either {W} or 2 life.) -- Creatures can't attack you or a planeswalker you control unless their controller pays {PW} for each of those creatures.
mana={3}{PW}{PW}
type=Artifact
[/card]
[card]
name=Alms Collector
text=Flash -- If an opponent would draw two or more cards, instead you and that player each draw a card.
mana={3}{W}
type=Creature
subtype=Cat Cleric
power=3
toughness=4
[/card]
[card]
name=Not of This World
text=Counter target spell or ability that targets a permanent you control. -- Not of This World costs {7} less to cast if it targets a spell or ability that targets a creature you control with power 7 or greater.
mana={7}
type=Tribal Instant
subtype=Eldrazi
[/card]
[card]
name=Inspiring Statuary
text=Nonartifact spells you cast have improvise. (Your artifacts can help cast those spells. Each artifact you tap after you're done activating mana abilities pays for {1}.)
mana={3}
type=Artifact
[/card]
[card]
name=Abstruse Archaic
abilities=vigilance
text=Vigilance -- {1}, {T}: Copy target activated or triggered ability you control from a colorless source. You may choose new targets for the copy. (Mana abilities can't be targeted.)
mana={4}
type=Creature
subtype=Avatar
power=3
toughness=4
[/card]
[card]
name=Leori, Sparktouched Hunter
abilities=flying,vigilance
text=Flying, vigilance -- Whenever Leori, Sparktouched Hunter deals combat damage to a player, choose a planeswalker type. Until end of turn, whenever you activate an ability of a planeswalker of that type, copy that ability. You may choose new targets for the copies.
mana={U}{R}{W}
type=Legendary Creature
subtype=Elemental Cat
power=3
toughness=3
[/card]
[card]
name=Divergent Transformations
text=Undaunted (This spell costs {1} less to cast for each opponent.) -- Exile two target creatures. For each of those creatures, its controller reveals cards from the top of his or her library until he or she reveals a creature card, puts that card onto the battlefield, then shuffles the rest into his or her library.
mana={6}{R}
type=Instant
[/card]
[card]
name=Divergent Transformations
text=Undaunted (This spell costs {1} less to cast for each opponent.) -- Exile two target creatures. For each of those creatures, its controller reveals cards from the top of his or her library until he or she reveals a creature card, puts that card onto the battlefield, then shuffles the rest into his or her library.
mana={6}{R}
type=Instant
[/card]
[card]
name=Experiment Kraj
text=Experiment Kraj has all activated abilities of each other creature with a +1/+1 counter on it. -- {T}: Put a +1/+1 counter on target creature.
mana={2}{G}{G}{U}{U}
type=Legendary Creature
subtype=Ooze Mutant
power=4
toughness=6
[/card]
[card]
name=Gisela, Blade of Goldnight
abilities=flying,first strike
text=Flying, first strike -- If a source would deal damage to an opponent or a permanent an opponent controls, that source deals double that damage to that player or permanent instead. -- If a source would deal damage to you or a permanent you control, prevent half that damage, rounded up.
mana={4}{R}{W}{W}
type=Legendary Creature
subtype=Angel
power=5
toughness=5
[/card]
[card]
name=Imp's Mischief
text=Change the target of target spell with a single target. You lose life equal to that spell's converted mana cost.
mana={1}{B}
type=Instant
[/card]
[card]
name=Mizzix of the Izmagnus
text=Whenever you cast an instant or sorcery spell with converted mana cost greater than the number of experience counters you have, you get an experience counter. -- Instant and sorcery spells you cast cost {1} less to cast for each experience counter you have.
mana={2}{U}{R}
type=Legendary Creature
subtype=Goblin Wizard
power=2
toughness=2
[/card]
[card]
name=Yennett, Cryptic Sovereign
text=Flying, vigilance, menace -- Whenever Yennett, Cryptic Sovereign attacks, reveal the top card of your library. You may cast it without paying its mana cost if its converted mana cost is odd. If you don't cast it, draw a card.
mana={2}{W}{U}{B}
type=Legendary Creature
subtype=Sphinx
power=3
toughness=5
[/card]
[card]
name=Assault Suit
text=Equipped creature gets +2/+2, has haste, can't attack you or a planeswalker you control, and can't be sacrificed. -- At the beginning of each opponent's upkeep, you may have that player gain control of equipped creature until end of turn. If you do, untap it. -- Equip {3}
mana={4}
type=Artifact
subtype=Equipment
[/card]
[card]
name=Tromokratis
text=Tromokratis has hexproof unless it's attacking or blocking. -- Tromokratis can't be blocked unless all creatures defending player controls block it. (If any creature that player controls doesn't block this creature, it can't be blocked.)
mana={5}{U}{U}
type=Legendary Creature
subtype=Kraken
power=8
toughness=8
[/card]
[card]
name=Stitcher Geralf
text={2}{U}, {T}: Each player puts the top three cards of his or her library into his or her graveyard. Exile up to two creature cards put into graveyards this way. Put an X/X blue Zombie creature token onto the battlefield, where X is the total power of the cards exiled this way.
mana={3}{U}{U}
type=Legendary Creature
subtype=Human Wizard
power=3
toughness=4
[/card]
[card]
name=Leori, Sparktouched Hunter
abilities=flying,vigilance
text=Flying, vigilance -- Whenever Leori, Sparktouched Hunter deals combat damage to a player, choose a planeswalker type. Until end of turn, whenever you activate an ability of a planeswalker of that type, copy that ability. You may choose new targets for the copies.
mana={U}{R}{W}
type=Legendary Creature
subtype=Elemental Cat
power=3
toughness=3
[/card]
@@ -0,0 +1,6 @@
[card]
name=Corpse Cobble
text=As an additional cost to cast this spell, sacrifice any number of creatures. -- Create an X/X blue and black Zombie creature token with menace, where X is the total power of the sacrificed creatures. -- Flashback {3}{U}{B} (You may cast this card from your graveyard for its flashback cost. Then exile it.)
mana={U}{B}
type=Instant
[/card]
@@ -0,0 +1,9 @@
[card]
name=Bell Borca, Spectral Sergeant
text=Note the converted mana cost of each card as it's put into exile. -- Bell Borca, Spectral Sergeant's power is equal to the greatest number noted for it this turn. -- At the beginning of your upkeep, exile the top card of your library. You may play that card this turn.
mana={2}{R}{W}
type=Legendary Creature
subtype=Spirit Soldier
power=*
toughness=5
[/card]
@@ -0,0 +1,36 @@
[card]
name=Cryptic Gateway
text=Tap two untapped creatures you control: You may put a creature card from your hand that shares a creature type with each creature tapped this way onto the battlefield.
mana={5}
type=Artifact
[/card]
[card]
name=Damping Sphere
text=If a land is tapped for two or more mana, it produces {C} instead of any other type and amount. -- Each spell a player casts costs 1 more to cast for each other spell that player has cast this turn.
mana={2}
type=Artifact
[/card]
[card]
name=Crawlspace
text=No more than two creatures can attack you each combat.
mana={3}
type=Artifact
[/card]
[card]
name=Crawlspace
text=No more than two creatures can attack you each combat.
mana={3}
type=Artifact
[/card]
[card]
name=Damping Sphere
text=If a land is tapped for two or more mana, it produces {C} instead of any other type and amount. -- Each spell a player casts costs 1 more to cast for each other spell that player has cast this turn.
mana={2}
type=Artifact
[/card]
[card]
name=Cryptic Gateway
text=Tap two untapped creatures you control: You may put a creature card from your hand that shares a creature type with each creature tapped this way onto the battlefield.
mana={5}
type=Artifact
[/card]
@@ -5,15 +5,6 @@ mana={3}{W}{W}
type=Instant type=Instant
[/card] [/card]
[card] [card]
name=Leonin Shikari
text=You may activate equip abilities any time you could cast an instant.
mana={1}{W}
type=Creature
subtype=Cat Soldier
power=2
toughness=2
[/card]
[card]
name=Surestrike Trident name=Surestrike Trident
text=Equipped creature has first strike and "{T}, Unattach Surestrike Trident: This creature deals damage equal to its power to target player." -- Equip {4} ({4}: Attach to target creature you control. Equip only as a sorcery. This card enters the battlefield unattached and stays on the battlefield if the creature leaves.) text=Equipped creature has first strike and "{T}, Unattach Surestrike Trident: This creature deals damage equal to its power to target player." -- Equip {4} ({4}: Attach to target creature you control. Equip only as a sorcery. This card enters the battlefield unattached and stays on the battlefield if the creature leaves.)
mana={2} mana={2}
@@ -5,15 +5,6 @@ mana={4}{U}{U}
type=Sorcery type=Sorcery
[/card] [/card]
[card] [card]
name=Etrata, the Silencer
text=Etrata, the Silencer can't be blocked. -- Whenever Etrata deals combat damage to a player, exile target creature that player controls and put a hit counter on that card. That player loses the game if they own three or more exiled cards with hit counters on them. Etrata's owner shuffles Etrata into their library.
mana={2}{U}{B}
type=Legendary Creature
subtype=Vampire Assassin
power=3
toughness=5
[/card]
[card]
name=Razia, Boros Archangel name=Razia, Boros Archangel
text=Flying, vigilance, haste -- {T}: The next 3 damage that would be dealt to target creature you control this turn is dealt to another target creature instead. text=Flying, vigilance, haste -- {T}: The next 3 damage that would be dealt to target creature you control this turn is dealt to another target creature instead.
mana={4}{R}{R}{W}{W} mana={4}{R}{R}{W}{W}
@@ -14,12 +14,3 @@ text=Exile all cards from all opponents' graveyards. You may cast spells from am
mana={1}{U}{B} mana={1}{U}{B}
type=Sorcery type=Sorcery
[/card] [/card]
[card]
name=Etrata, the Silencer
text=Etrata, the Silencer can't be blocked. -- Whenever Etrata deals combat damage to a player, exile target creature that player controls and put a hit counter on that card. That player loses the game if they own three or more exiled cards with hit counters on them. Etrata's owner shuffles Etrata into their library.
mana={2}{U}{B}
type=Legendary Creature
subtype=Vampire Assassin
power=3
toughness=5
[/card]
@@ -1,6 +1,6 @@
[card] [card]
name=Nerf War name=Nerf War
text=Fire a Nerf blaster until empty at target library from at least two meters away. For each card knocked off that library, put it into its owner’s graveyard and Nerf War deals ½ damage to that player. (Foam darts only.) text=Fire a Nerf blaster until empty at target library from at least two meters away. For each card knocked off that library, put it into its owner?s graveyard and Nerf War deals ½ damage to that player. (Foam darts only.)
mana={3}{U}{R} mana={3}{U}{R}
type=Sorcery type=Sorcery
[/card] [/card]
@@ -44,15 +44,6 @@ power=6
toughness=6 toughness=6
[/card] [/card]
[card] [card]
name=Umori, the Collector
text=Companion - Each nonland card in your starting deck shares a card type. (If this card is your chosen companion, you may cast it once from outside the game.) -- As Umori, the CollectorUmori, the Collector enters the battlefield, choose a card type. -- Spells you cast of the chosen type cost 1 less to cast.
mana={2}{BG}{BG}
type=Legendary Creature
subtype=Ooze
power=4
toughness=5
[/card]
[card]
name=Zirda, the Dawnwaker name=Zirda, the Dawnwaker
text=Companion - Each permanent card in your starting deck has an activated ability. (If this card is your chosen companion, you may cast it once from outside the game.) -- Abilities you activate that aren't mana abilities cost {2} less to activate. This effect can't reduce the mana in that cost to less than one mana. -- {1}, {T}: Target creature can't block this turn. text=Companion - Each permanent card in your starting deck has an activated ability. (If this card is your chosen companion, you may cast it once from outside the game.) -- Abilities you activate that aren't mana abilities cost {2} less to activate. This effect can't reduce the mana in that cost to less than one mana. -- {1}, {T}: Target creature can't block this turn.
mana={1}{RW}{RW} mana={1}{RW}{RW}
@@ -71,33 +62,6 @@ power=3
toughness=5 toughness=5
[/card] [/card]
[card] [card]
name=Lutri, the Spellchaser
text=Companion - Each nonland card in your starting deck has a different name. (If this card is your chosen companion, you may cast it once from outside the game.) -- Flash -- When Lutri, the Spellchaser enters the battlefield, if you cast it, copy target instant or sorcery spell you control. You may choose new targets for the copy.
mana={1}{UR}{UR}
type=Legendary Creature
subtype=Elemental Otter
power=3
toughness=2
[/card]
[card]
name=Kaheera, the Orphanguard
text=Companion - Each creature card in your starting deck is a Cat, Elemental, Nightmare, Dinosaur, or Beast card. (If this card is your chosen companion, you may cast it once from outside the game.) -- Vigilance -- Each other creature you control that's a Cat, Elemental, Nightmare, Dinosaur, or Beast gets +1/+1 and has vigilance.
mana={1}{GW}{GW}
type=Legendary Creature
subtype=Cat Beast
power=3
toughness=2
[/card]
[card]
name=Keruga, the Macrosage
text=Companion - Your starting deck contains only cards with converted mana cost 3 or greater and land cards. (If this card is your chosen companion, you may cast it once from outside the game.) -- When Keruga, the Macrosage enters the battlefield, draw a card for each other permanent you control with converted mana cost 3 or greater.
mana={3}{GU}{GU}
type=Legendary Creature
subtype=Dinosaur Hippo
power=5
toughness=4
[/card]
[card]
name=Extinction Event name=Extinction Event
text=Choose odd or even. Exile each creature with converted mana cost of the chosen value. (Zero is even.) text=Choose odd or even. Exile each creature with converted mana cost of the chosen value. (Zero is even.)
mana={3}{B} mana={3}{B}
@@ -0,0 +1,75 @@
[card]
name=Spark of Creativity
text=Choose target creature. Exile the top card of your library. You may have Spark of Creativity deal damage to that creature equal to the exiled card's converted mana cost. If you don't, you may play that card until end of turn.
mana={R}
type=Sorcery
[/card]
[card]
name=Goblin Psychopath
text=Whenever Goblin Psychopath attacks or blocks, flip a coin. If you lose the flip, the next time it would deal combat damage this turn, it deals that damage to you instead.
mana={3}{R}
type=Creature
subtype=Goblin Mutant
power=5
toughness=5
[/card]
[card]
name=Moonlight Hunt
text=Choose target creature you don't control. Each creature you control that's a Wolf or a Werewolf deals damage equal to its power to that creature.
mana={1}{G}
type=Instant
[/card]
[card]
name=Kenessos, Priest of Thassa
text=If you would scry a number of cards, scry that many cards plus one instead. -- {3}{G/U}: Look at the top card of your library. If it's a Kraken, Leviathan, Octopus, or Serpent creature card, you may put it onto the battlefield. If you don't put the card onto the battlefield, you may put it on the bottom of your library.
mana={1}{U}
type=Legendary Creature
subtype=Merfolk Cleric
power=1
toughness=3
[/card]
[card]
name=Master of the Wild Hunt
text=At the beginning of your upkeep, put a 2/2 green Wolf creature token onto the battlefield. -- {T}: Tap all untapped Wolf creatures you control. Each Wolf tapped this way deals damage equal to its power to target creature. That creature deals damage equal to its power divided as its controller chooses among any number of those Wolves.
mana={2}{G}{G}
type=Creature
subtype=Human Shaman
power=3
toughness=3
[/card]
[card]
name=Sage's Reverie
text=Enchant creature -- When Sage's Reverie enters the battlefield, draw a card for each Aura you control that's attached to a creature. -- Enchanted creature gets +1/+1 for each Aura you control that's attached to a creature.
mana={3}{W}
type=Enchantment
subtype=Aura
[/card]
[card]
name=Cellar Door
text={3}, {T}: Target player puts the bottom card of his or her library into his or her graveyard. If it's a creature card, you put a 2/2 black Zombie creature token onto the battlefield.
mana={2}
type=Artifact
[/card]
[card]
name=Weight of Conscience
text=Enchant creature -- Enchanted creature can't attack. -- Tap two untapped creatures you control that share a creature type: Exile enchanted creature.
mana={1}{W}
type=Enchantment
subtype=Aura
[/card]
[card]
name=Agrus Kos, Eternal Soldier
abilities=vigilance
text=Vigilance -- Whenever Agrus Kos, Eternal Soldier becomes the target of an ability that targets only it, you may pay {1}{R/W}. If you do, copy that ability for each other creature you control that ability could target. Each copy targets a different one of those creatures. ({R/W} can be paid with either {R} or {W}.)
mana={3}{W}
type=Legendary Creature
subtype=Spirit Soldier
power=3
toughness=4
[/card]
[card]
name=Panharmonicon
text=If an artifact or creature entering the battlefield causes a triggered ability of a permanent you control to trigger, that ability triggers an additional time.
mana={4}
type=Artifact
[/card]
@@ -32,15 +32,6 @@ power=1
toughness=3 toughness=3
[/card] [/card]
[card] [card]
name=Winding Constrictor
text=If one or more counters would be placed on an artifact or creature you control, that many plus one of each of those kinds of counters are placed on that permanent instead. -- If you would get one or more counters, you get that many plus one of each of those kinds of counters instead.
mana={B}{G}
type=Creature
subtype=Snake
power=2
toughness=3
[/card]
[card]
name=Combustible Gearhulk name=Combustible Gearhulk
abilities=first strike abilities=first strike
text=First strike -- When Combustible Gearhulk enters the battlefield, target opponent may have you draw three cards. If the player doesn't, put the top three cards of your library into your graveyard, then Combustible Gearhulk deals damage to that player equal to the total converted mana cost of those cards. text=First strike -- When Combustible Gearhulk enters the battlefield, target opponent may have you draw three cards. If the player doesn't, put the top three cards of your library into your graveyard, then Combustible Gearhulk deals damage to that player equal to the total converted mana cost of those cards.
@@ -188,15 +188,6 @@ mana={R}{R}
type=Enchantment type=Enchantment
[/card] [/card]
[card] [card]
name=Stone Giant
text={T}: Target creature you control with toughness less than Stone Giant's power gains flying until end of turn. Destroy that creature at the beginning of the next end step.
mana={2}{R}{R}
type=Creature
subtype=Giant
power=3
toughness=4
[/card]
[card]
name=Drain Power name=Drain Power
text=Target player activates a mana ability of each land he or she controls. Then put all mana from that player's mana pool into yours. text=Target player activates a mana ability of each land he or she controls. Then put all mana from that player's mana pool into yours.
mana={U}{U} mana={U}{U}
@@ -54,15 +54,6 @@ mana={R}{R}
type=Enchantment type=Enchantment
[/card] [/card]
[card] [card]
name=Stone Giant
text={T}: Target creature you control with toughness less than Stone Giant's power gains flying until end of turn. Destroy that creature at the beginning of the next end step.
mana={2}{R}{R}
type=Creature
subtype=Giant
power=3
toughness=4
[/card]
[card]
name=Magical Hack name=Magical Hack
text=Change the text of target spell or permanent by replacing all instances of one basic land type with another. (For example, you may change "swampwalk" to "plainswalk." This effect lasts indefinitely.) text=Change the text of target spell or permanent by replacing all instances of one basic land type with another. (For example, you may change "swampwalk" to "plainswalk." This effect lasts indefinitely.)
mana={U} mana={U}
@@ -0,0 +1,156 @@
[card]
name=Elrond of the White Council
text=Secret council - When Elrond of the White Council enters the battlefield, each player secretly votes for fellowship or aid, then those votes are revealed. For each fellowship vote, the voter chooses a creature they control. You gain control of each creature chosen this way, and they gain "This creature can't attack its owner." Then for each aid vote, put a +1/+1 counter on each creature you control.
mana={3}{G}{U}
type=Legendary Creature
subtype=Elf Noble
power=3
toughness=3
[/card]
[card]
name=Cirdan the Shipwright
abilities=vigilance
text=Vigilance -- Secret council - Whenever Cirdan the Shipwright enters the battlefield or attacks, each player secretly votes for a player, then those votes are revealed. Each player draws a card for each vote they received. Each player who received no votes may put a permanent card from their hand onto the battlefield.
mana={3}{G}{U}
type=Legendary Creature
subtype=Elf Noble
power=3
toughness=4
[/card]
[card]
name=Erestor of the Council
text=Whenever players finish voting, each opponent who voted for a choice you voted for creates a Treasure token. You scry X, where X is the number of opponents who voted for a choice you didn't vote for. Draw a card.
mana={1}{G}{U}
type=Legendary Creature
subtype=Elf Noble
power=2
toughness=4
[/card]
[card]
name=Harsh Mentor
text=Whenever an opponent activates an ability of an artifact, creature, or land on the battlefield, if it isn't a mana ability, Harsh Mentor deals 2 damage to that player.
mana={1}{R}
type=Creature
subtype=Human Cleric
power=2
toughness=2
[/card]
[card]
name=Travel Through Caradhras
text=Council's dilemma - Starting with you, each player votes for Redhorn Pass or Mines of Moria. For each Redhorn Pass vote, search your library for a basic land card and put it onto the battlefield tapped. If you search your library this way, shuffle. For each Mines of Moria vote, return a card from your graveyard to your hand. -- Exile Travel Through Caradhras.
mana={5}{G}
type=Sorcery
[/card]
[card]
name=Trap the Trespassers
text=Secret council - Each player secretly votes for a creature you don't control, then those votes are revealed. For each creature with one or more votes, put that many stun counters on it, then tap it. (If a permanent with a stun counter would become untapped, remove one from it instead.)
mana={2}{U}
type=Instant
[/card]
[card]
name=Galadriel, Elven-Queen
text=Will of the council - At the beginning of combat on your turn, if another Elf entered the battlefield under your control this turn, starting with you, each player votes for dominion or guidance. If dominion gets more votes, the Ring tempts you, then you put a +1/+1 counter on your Ring-bearer. If guidance gets more votes or the vote is tied, draw a card.
mana={2}{G}{U}
type=Legendary Creature
subtype=Elf Noble
power=4
toughness=5
[/card]
[card]
name=Rings of Brighthearth
text=Whenever you activate an ability, if it isn't a mana ability, you may pay {2}. If you do, copy that ability. You may choose new targets for the copy.
mana={3}
type=Artifact
[/card]
[card]
name=Sail into the West
text=Will of the council - Starting with you, each player votes for return or embark. If return gets more votes, each player returns up to two cards from their graveyard to their hand, then you exile Sail into the West. If embark gets more votes or the vote is tied, each player may discard their hand and draw seven cards.
mana={2}{G}{U}
type=Instant
[/card]
[card]
name=The Ozolith
text=Whenever a creature you control leaves the battlefield, if it had counters on it, put those counters on The Ozolith. -- At the beginning of combat on your turn, if The Ozolith has counters on it, you may move all counters from The Ozolith onto target creature.
mana={1}
type=Legendary Artifact
[/card]
[card]
name=Erestor of the Council
text=Whenever players finish voting, each opponent who voted for a choice you voted for creates a Treasure token. You scry X, where X is the number of opponents who voted for a choice you didn't vote for. Draw a card.
mana={1}{G}{U}
type=Legendary Creature
subtype=Elf Noble
power=2
toughness=4
[/card]
[card]
name=Elrond of the White Council
text=Secret council - When Elrond of the White Council enters the battlefield, each player secretly votes for fellowship or aid, then those votes are revealed. For each fellowship vote, the voter chooses a creature they control. You gain control of each creature chosen this way, and they gain "This creature can't attack its owner." Then for each aid vote, put a +1/+1 counter on each creature you control.
mana={3}{G}{U}
type=Legendary Creature
subtype=Elf Noble
power=3
toughness=3
[/card]
[card]
name=Cirdan the Shipwright
abilities=vigilance
text=Vigilance -- Secret council - Whenever Cirdan the Shipwright enters the battlefield or attacks, each player secretly votes for a player, then those votes are revealed. Each player draws a card for each vote they received. Each player who received no votes may put a permanent card from their hand onto the battlefield.
mana={3}{G}{U}
type=Legendary Creature
subtype=Elf Noble
power=3
toughness=4
[/card]
[card]
name=Selfless Squire
abilities=flash
text=Flash -- When Selfless Squire enters the battlefield, prevent all damage that would be dealt to you this turn. -- Whenever damage that would be dealt to you is prevented, put that many +1/+1 counters on Selfless Squire.
mana={3}{W}
type=Creature
subtype=Human Soldier
power=1
toughness=1
[/card]
[card]
name=Travel Through Caradhras
text=Council's dilemma - Starting with you, each player votes for Redhorn Pass or Mines of Moria. For each Redhorn Pass vote, search your library for a basic land card and put it onto the battlefield tapped. If you search your library this way, shuffle. For each Mines of Moria vote, return a card from your graveyard to your hand. -- Exile Travel Through Caradhras.
mana={5}{G}
type=Sorcery
[/card]
[card]
name=Galadriel, Elven-Queen
text=Will of the council - At the beginning of combat on your turn, if another Elf entered the battlefield under your control this turn, starting with you, each player votes for dominion or guidance. If dominion gets more votes, the Ring tempts you, then you put a +1/+1 counter on your Ring-bearer. If guidance gets more votes or the vote is tied, draw a card.
mana={2}{G}{U}
type=Legendary Creature
subtype=Elf Noble
power=4
toughness=5
[/card]
[card]
name=Trap the Trespassers
text=Secret council - Each player secretly votes for a creature you don't control, then those votes are revealed. For each creature with one or more votes, put that many stun counters on it, then tap it. (If a permanent with a stun counter would become untapped, remove one from it instead.)
mana={2}{U}
type=Instant
[/card]
[card]
name=Sail into the West
text=Will of the council - Starting with you, each player votes for return or embark. If return gets more votes, each player returns up to two cards from their graveyard to their hand, then you exile Sail into the West. If embark gets more votes or the vote is tied, each player may discard their hand and draw seven cards.
mana={2}{G}{U}
type=Instant
[/card]
[card]
name=Plea for Power
text=Will of the council - Starting with you, each player votes for time or knowledge. If time gets more votes, take an extra turn after this one. If knowledge gets more votes or the vote is tied, draw three cards.
mana={3}{U}
type=Sorcery
[/card]
[card]
name=Galadriel, Elven-Queen
text=Will of the council - At the beginning of combat on your turn, if another Elf entered the battlefield under your control this turn, starting with you, each player votes for dominion or guidance. If dominion gets more votes, the Ring tempts you, then you put a +1/+1 counter on your Ring-bearer. If guidance gets more votes or the vote is tied, draw a card.
mana={2}{G}{U}
type=Legendary Creature
subtype=Elf Noble
power=4
toughness=5
[/card]
@@ -0,0 +1,36 @@
[card]
name=Sharkey, Tyrant of the Shire
text=Activated abilities of lands your opponents control can't be activated unless they're mana abilities. -- Sharkey, Tyrant of the Shire has all activated abilities of lands your opponents control except mana abilities. -- Mana of any type can be spent to activate Sharkey's abilities.
mana={2}{U}{B}
type=Legendary Creature
subtype=Avatar Rogue
power=2
toughness=4
[/card]
[card]
name=Goldberry, River-Daughter
text={T}: Move a counter of each kind not on Goldberry, River-Daughter from another target permanent you control onto Goldberry. -- {U}, {T}: Move one or more counters from Goldberry onto another target permanent you control. If you do, draw a card.
mana={1}{U}
type=Legendary Creature
subtype=Nymph
power=1
toughness=3
[/card]
[card]
name=Goldberry, River-Daughter
text={T}: Move a counter of each kind not on Goldberry, River-Daughter from another target permanent you control onto Goldberry. -- {U}, {T}: Move one or more counters from Goldberry onto another target permanent you control. If you do, draw a card.
mana={1}{U}
type=Legendary Creature
subtype=Nymph
power=1
toughness=3
[/card]
[card]
name=Sharkey, Tyrant of the Shire
text=Activated abilities of lands your opponents control can't be activated unless they're mana abilities. -- Sharkey, Tyrant of the Shire has all activated abilities of lands your opponents control except mana abilities. -- Mana of any type can be spent to activate Sharkey's abilities.
mana={2}{U}{B}
type=Legendary Creature
subtype=Avatar Rogue
power=2
toughness=4
[/card]
@@ -36,15 +36,6 @@ power=5
toughness=5 toughness=5
[/card] [/card]
[card] [card]
name=Stone Giant
text={T}: Target creature you control with toughness less than Stone Giant's power gains flying until end of turn. Destroy that creature at the beginning of the next end step.
mana={2}{R}{R}
type=Creature
subtype=Giant
power=3
toughness=4
[/card]
[card]
name=Master of the Wild Hunt name=Master of the Wild Hunt
text=At the beginning of your upkeep, put a 2/2 green Wolf creature token onto the battlefield. -- {T}: Tap all untapped Wolf creatures you control. Each Wolf tapped this way deals damage equal to its power to target creature. That creature deals damage equal to its power divided as its controller chooses among any number of those Wolves. text=At the beginning of your upkeep, put a 2/2 green Wolf creature token onto the battlefield. -- {T}: Tap all untapped Wolf creatures you control. Each Wolf tapped this way deals damage equal to its power to target creature. That creature deals damage equal to its power divided as its controller chooses among any number of those Wolves.
mana={2}{G}{G} mana={2}{G}{G}
@@ -11,6 +11,27 @@ mana={W}{W}
type=Enchantment type=Enchantment
[/card] [/card]
[card] [card]
name=Discontinuity
text=As long as it's your turn, this spell costs {2}{U}{U} less to cast. -- End the turn. (Exile all spells and abilities from the stack, including this card. The player whose turn it is discards down to their maximum hand size. Damage wears off, and "this turn" and "until end of turn" effects end.)
mana={3}{U}{U}{U}
type=Instant
[/card]
[card]
name=Runed Halo
text=As Runed Halo enters the battlefield, name a card. -- You have protection from the chosen name. (You can't be targeted, dealt damage, or enchanted by anything with that name.)
mana={W}{W}
type=Enchantment
[/card]
[card]
name=Chandra's Incinerator
text=This spell costs {X} less to cast, where X is the total amount of noncombat damage dealt to your opponents this turn. -- Trample -- Whenever a source you control deals noncombat damage to an opponent, Chandra's Incinerator deals that much damage to target creature or planeswalker that player controls.
mana={5}{R}
type=Creature
subtype=Elemental
power=6
toughness=6
[/card]
[card]
name=Chandra's Incinerator name=Chandra's Incinerator
text=This spell costs {X} less to cast, where X is the total amount of noncombat damage dealt to your opponents this turn. -- Trample -- Whenever a source you control deals noncombat damage to an opponent, Chandra's Incinerator deals that much damage to target creature or planeswalker that player controls. text=This spell costs {X} less to cast, where X is the total amount of noncombat damage dealt to your opponents this turn. -- Trample -- Whenever a source you control deals noncombat damage to an opponent, Chandra's Incinerator deals that much damage to target creature or planeswalker that player controls.
mana={5}{R} mana={5}{R}
@@ -0,0 +1,12 @@
[card]
name=Training Grounds
text=Activated abilities of creatures you control cost up to {2} less to activate. This effect can't reduce the amount of mana an ability costs to activate to less than one mana.
mana={U}
type=Enchantment
[/card]
[card]
name=Deification
text=As Deification enters the battlefield, choose a planeswalker type. -- Planeswalkers you control of the chosen type have hexproof. -- As long as you control a creature, if damage dealt to a planeswalker you control of the chosen type would result in all loyalty counters on it being removed, instead all but one of those counters are removed.
mana={1}{W}
type=Enchantment
[/card]
@@ -38,15 +38,6 @@ mana={2}{R}{R}
type=Sorcery type=Sorcery
[/card] [/card]
[card] [card]
name=Winding Constrictor
text=If one or more counters would be placed on an artifact or creature you control, that many plus one of each of those kinds of counters are placed on that permanent instead. -- If you would get one or more counters, you get that many plus one of each of those kinds of counters instead.
mana={B}{G}
type=Creature
subtype=Snake
power=2
toughness=3
[/card]
[card]
name=Goblin Charbelcher name=Goblin Charbelcher
text={3}, {T}: Reveal cards from the top of your library until you reveal a land card. Goblin Charbelcher deals damage equal to the number of nonland cards revealed this way to target creature or player. If the revealed land card was a Mountain, Goblin Charbelcher deals double that damage instead. Put the revealed cards on the bottom of your library in any order. text={3}, {T}: Reveal cards from the top of your library until you reveal a land card. Goblin Charbelcher deals damage equal to the number of nonland cards revealed this way to target creature or player. If the revealed land card was a Mountain, Goblin Charbelcher deals double that damage instead. Put the revealed cards on the bottom of your library in any order.
mana={4} mana={4}
@@ -128,12 +119,6 @@ power=5
toughness=9 toughness=9
[/card] [/card]
[card] [card]
name=Sapphire Charm
text=Choose one -- Target player draws a card at the beginning of the next turn's upkeep; or target creature gains flying until end of turn; or target creature an opponent controls phases out. (While it's phased out, it's treated as though it doesn't exist. It phases in before its controller untaps during his or her next untap step.)
mana={U}
type=Instant
[/card]
[card]
name=Sakashima the Impostor name=Sakashima the Impostor
text=You may have Sakashima the Impostor enter the battlefield as a copy of any creature on the battlefield, except its name is still Sakashima the Impostor, it's legendary in addition to its other types, and it gains "{2}{U}{U}: Return Sakashima the Impostor to its owner's hand at the beginning of the next end step." text=You may have Sakashima the Impostor enter the battlefield as a copy of any creature on the battlefield, except its name is still Sakashima the Impostor, it's legendary in addition to its other types, and it gains "{2}{U}{U}: Return Sakashima the Impostor to its owner's hand at the beginning of the next end step."
mana={2}{U}{U} mana={2}{U}{U}
@@ -107,15 +107,6 @@ mana={1}{B}
type=Enchantment type=Enchantment
[/card] [/card]
[card] [card]
name=Stone Giant
text={T}: Target creature you control with toughness less than Stone Giant's power gains flying until end of turn. Destroy that creature at the beginning of the next end step.
mana={2}{R}{R}
type=Creature
subtype=Giant
power=3
toughness=4
[/card]
[card]
name=Tawnos's Coffin name=Tawnos's Coffin
text=You may choose not to untap Tawnos's Coffin during your untap step. -- {3}, {T}: Exile target creature and all Auras attached to it. Note the number and kind of counters that were on that creature. When Tawnos's Coffin leaves the battlefield or becomes untapped, return the exiled card to the battlefield under its owner's control tapped with the noted number and kind of counters on it, and if you do, return the exiled Aura cards to the battlefield under their owner's control attached to that permanent. text=You may choose not to untap Tawnos's Coffin during your untap step. -- {3}, {T}: Exile target creature and all Auras attached to it. Note the number and kind of counters that were on that creature. When Tawnos's Coffin leaves the battlefield or becomes untapped, return the exiled card to the battlefield under its owner's control tapped with the noted number and kind of counters on it, and if you do, return the exiled Aura cards to the battlefield under their owner's control attached to that permanent.
mana={4} mana={4}
@@ -13,3 +13,27 @@ text=Gain control of target spell that targets only a single permanent or player
mana={1}{R}{R} mana={1}{R}{R}
type=Instant type=Instant
[/card] [/card]
[card]
name=Chef's Kiss
text=Gain control of target spell that targets only a single permanent or player. Copy it, then reselect the targets at random for the spell and the copy. The new targets can't be you or a permanent you control.
mana={1}{R}{R}
type=Instant
[/card]
[card]
name=Yusri, Fortune's Flame
text=Flying -- Whenever Yusri, Fortune's Flame attacks, choose a number between 1 and 5. Flip that many coins. For each flip you win, draw a card. For each flip you lose, Yusri deals 2 damage to you. If you won five flips this way, you may cast spells from your hand this turn without paying their mana costs.
mana={1}{U}{R}
type=Legendary Creature
subtype=Efreet
power=2
toughness=3
[/card]
[card]
name=Yusri, Fortune's Flame
text=Flying -- Whenever Yusri, Fortune's Flame attacks, choose a number between 1 and 5. Flip that many coins. For each flip you win, draw a card. For each flip you lose, Yusri deals 2 damage to you. If you won five flips this way, you may cast spells from your hand this turn without paying their mana costs.
mana={1}{U}{R}
type=Legendary Creature
subtype=Efreet
power=2
toughness=3
[/card]
@@ -68,13 +68,6 @@ mana={1}{U}
type=Instant type=Instant
[/card] [/card]
[card] [card]
name=Lightning Reflexes
text=You may cast Lightning Reflexes as though it had flash. If you cast it any time a sorcery couldn't have been cast, the controller of the permanent it becomes sacrifices it at the beginning of the next cleanup step. -- Enchant creature -- Enchanted creature gets +1/+0 and has first strike.
mana={1}{R}
type=Enchantment
subtype=Aura
[/card]
[card]
name=Energy Vortex name=Energy Vortex
text=As Energy Vortex enters the battlefield, choose an opponent. -- At the beginning of your upkeep, remove all energy counters from Energy Vortex. -- At the beginning of the chosen player's upkeep, Energy Vortex deals 3 damage to that player unless he or she pays {1} for each energy counter on Energy Vortex. -- {X}: Put X energy counters on Energy Vortex. Activate this ability only during your upkeep. text=As Energy Vortex enters the battlefield, choose an opponent. -- At the beginning of your upkeep, remove all energy counters from Energy Vortex. -- At the beginning of the chosen player's upkeep, Energy Vortex deals 3 damage to that player unless he or she pays {1} for each energy counter on Energy Vortex. -- {X}: Put X energy counters on Energy Vortex. Activate this ability only during your upkeep.
mana={3}{U}{U} mana={3}{U}{U}
@@ -111,25 +104,12 @@ mana={4}
type=Artifact type=Artifact
[/card] [/card]
[card] [card]
name=Soar
text=You may cast Soar as though it had flash. If you cast it any time a sorcery couldn't have been cast, the controller of the permanent it becomes sacrifices it at the beginning of the next cleanup step. -- Enchant creature -- Enchanted creature gets +0/+1 and has flying.
mana={1}{U}
type=Enchantment
subtype=Aura
[/card]
[card]
name=Celestial Dawn name=Celestial Dawn
text=Lands you control are Plains. -- Nonland cards you own that aren't on the battlefield, spells you control, and nonland permanents you control are white. -- You may spend white mana as though it were mana of any color. You may spend other mana only as though it were colorless mana. text=Lands you control are Plains. -- Nonland cards you own that aren't on the battlefield, spells you control, and nonland permanents you control are white. -- You may spend white mana as though it were mana of any color. You may spend other mana only as though it were colorless mana.
mana={1}{W}{W} mana={1}{W}{W}
type=Enchantment type=Enchantment
[/card] [/card]
[card] [card]
name=Sapphire Charm
text=Choose one -- Target player draws a card at the beginning of the next turn's upkeep; or target creature gains flying until end of turn; or target creature an opponent controls phases out. (While it's phased out, it's treated as though it doesn't exist. It phases in before its controller untaps during his or her next untap step.)
mana={U}
type=Instant
[/card]
[card]
name=Acidic Dagger name=Acidic Dagger
text={4}, {T}: Whenever target creature deals combat damage to a non-Wall creature this turn, destroy that non-Wall creature. When the targeted creature leaves the battlefield this turn, sacrifice Acidic Dagger. Activate this ability only before blockers are declared. text={4}, {T}: Whenever target creature deals combat damage to a non-Wall creature this turn, destroy that non-Wall creature. When the targeted creature leaves the battlefield this turn, sacrifice Acidic Dagger. Activate this ability only before blockers are declared.
mana={4} mana={4}
@@ -145,13 +125,6 @@ power=1
toughness=2 toughness=2
[/card] [/card]
[card] [card]
name=Armor of Thorns
text=You may cast Armor of Thorns as though it had flash. If you cast it any time a sorcery couldn't have been cast, the controller of the permanent it becomes sacrifices it at the beginning of the next cleanup step. -- Enchant nonblack creature -- Enchanted creature gets +2/+2.
mana={1}{G}
type=Enchantment
subtype=Aura
[/card]
[card]
name=Mangara's Tome name=Mangara's Tome
text=When Mangara's Tome enters the battlefield, search your library for five cards, exile them in a face-down pile, and shuffle that pile. Then shuffle your library. -- {2}: The next time you would draw a card this turn, instead put the top card of the exiled pile into its owner's hand. text=When Mangara's Tome enters the battlefield, search your library for five cards, exile them in a face-down pile, and shuffle that pile. Then shuffle your library. -- {2}: The next time you would draw a card this turn, instead put the top card of the exiled pile into its owner's hand.
mana={5} mana={5}
@@ -164,13 +137,6 @@ mana={1}{G}{G}
type=World Enchantment type=World Enchantment
[/card] [/card]
[card] [card]
name=Grave Servitude
text=You may cast Grave Servitude as though it had flash. If you cast it any time a sorcery couldn't have been cast, the controller of the permanent it becomes sacrifices it at the beginning of the next cleanup step. -- Enchant creature -- Enchanted creature gets +3/-1 and is black.
mana={1}{B}
type=Enchantment
subtype=Aura
[/card]
[card]
name=Noble Elephant name=Noble Elephant
abilities=trample,banding abilities=trample,banding
text=Trample; banding (Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding you control are blocking or being blocked by a creature, you divide that creature's combat damage, not its controller, among any of the creatures it's being blocked by or is blocking.) text=Trample; banding (Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding you control are blocking or being blocked by a creature, you divide that creature's combat damage, not its controller, among any of the creatures it's being blocked by or is blocking.)
@@ -0,0 +1,832 @@
[card]
name=Saint Traft and Rem Karolus
auto=@tapped(this):create(human:creature human:1/1:red)
auto=@movedTo(|mystack):untap saint traft && rem karolus
text=Whenever Saint Traft and Rem Karolus becomes tapped, create a 1/1 red Human creature token if this is the first time this ability has resolved this turn. If it's the second time, create a 1/1 blue Spirit creature token with flying. If it's the third time, create a 4/4 white Angel creature token with flying. -- Whenever you cast a spell that has convoke, untap Saint Traft and Rem Karolus.
mana={U}{R}{W}
type=Legendary Creature
subtype=Spirit Human
power=3
toughness=4
[/card]
[card]
name=Rashmi and Ragavan
auto=lord(creature|myBattlefield) opponent's library and create a treasure token. then you may cast the exiled card without paying its mana cost if it's a spell with mana value less than the number of artifacts you control. if you don't cast it this way, you may cast it this turn
text=Whenever you cast your first spell during each of your turns, exile the top card of target opponent's library and create a Treasure token. Then you may cast the exiled card without paying its mana cost if it's a spell with mana value less than the number of artifacts you control. If you don't cast it this way, you may cast it this turn.
mana={1}{G}{U}{R}
type=Legendary Creature
subtype=Elf Monkey
power=2
toughness=4
[/card]
[card]
name=Elenda and Azor
abilities=flying
text=Flying, ward {2} -- Whenever Elenda and Azor attacks, you may pay {X}{W}{U}{B}. If you do, draw X cards. -- At the beginning of each end step, you may pay 4 life. If you do, create a number of 1/1 black Vampire Knight creature tokens with lifelink equal to the number of cards you've drawn this turn.
mana={3}{W}{U}{B}
type=Legendary Creature
subtype=Vampire Knight Sphinx
power=6
toughness=6
[/card]
[card]
name=Elspeth's Talent
target=planeswalker
auto=teach(creature) Enchant planeswalker
auto=teach(creature) Enchanted planeswalker
auto=teach(creature) "[+1]: Create three 1/1 white Soldier creature tokens"
auto=teach(creature) Whenever you activateloyalty ability of enchanted planeswalker creatures you control get +2/+2
auto=teach(creature) gain vigilance
text=Enchant planeswalker -- Enchanted planeswalker has "[+1]: Create three 1/1 white Soldier creature tokens." -- Whenever you activate a loyalty ability of enchanted planeswalker, creatures you control get +2/+2 and gain vigilance until end of turn.
mana={2}{W}{W}
type=Enchantment
subtype=Aura
[/card]
[card]
name=Teferi's Talent
target=planeswalker
auto=teach(creature) Enchant planeswalker
auto=teach(creature) Enchanted planeswalker
auto=teach(creature) "[-12]: You get an emblem with 'You may activate loyalty abilities of planeswalkers you control on any player's turn any time you could cast an instant'"
auto=teach(creature) Whenever you drawcard putloyalty counter on enchanted planeswalker
text=Enchant planeswalker -- Enchanted planeswalker has "[-12]: You get an emblem with 'You may activate loyalty abilities of planeswalkers you control on any player's turn any time you could cast an instant.'" -- Whenever you draw a card, put a loyalty counter on enchanted planeswalker.
mana={3}{U}{U}
type=Enchantment
subtype=Aura
[/card]
[card]
name=Rowan's Talent
target=planeswalker
auto=teach(creature) Enchant planeswalker
auto=teach(creature) Enchanted planeswalker
auto=teach(creature) "[+1]: Up to one target creature
auto=teach(creature) +2/+0
auto=teach(creature) first strike
auto=teach(creature) trample "
auto=teach(creature) Whenever you activateloyalty ability of enchanted planeswalker copy that ability You may choose new targets for the copy
text=Enchant planeswalker -- Enchanted planeswalker has "[+1]: Up to one target creature gets +2/+0 and gains first strike and trample until end of turn." -- Whenever you activate a loyalty ability of enchanted planeswalker, copy that ability. You may choose new targets for the copy.
mana={2}{R}{R}
type=Enchantment
subtype=Aura
[/card]
[card]
name=Begin the Invasion
search your library for up x battle cards with different names, put them onto the battlefield && shuffle
auto=Search your library for up to X battle cards with different names put them onto the battlefield then shuffle
text=Search your library for up to X battle cards with different names, put them onto the battlefield, then shuffle.
mana={X}{W}{U}{B}{R}{G}
type=Sorcery
[/card]
[card]
name=Kasla, the Broken Halo
abilities=flying,haste,vigilance
auto=@movedTo(nother|mystack):auto=_SCRY_(2)
text=Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.) -- Flying, vigilance, haste -- Whenever you cast another spell that has convoke, scry 2, then draw a card.
mana={3}{U}{R}{W}
type=Legendary Creature
subtype=Angel Ally
power=5
toughness=4
[/card]
[card]
name=Gimbal, Gremlin Prodigy
auto=lord(other creature|myBattlefield) trample
auto=lord(creature|myBattlefield)
auto=@each my endofturn:create(gremlin artifact:creature gremlin artifact:0/0:red)
text=Artifact creatures you control have trample. -- At the beginning of your end step, create a 0/0 red Gremlin artifact creature token. Put X +1/+1 counters on it, where X is the number of differently named artifact tokens you control.
mana={2}{G}{U}{R}
type=Legendary Creature
subtype=Gremlin Artificer
power=4
toughness=4
[/card]
[card]
name=Bright-Palm, Soul Awakener
auto=cantbeblockedby(creature[power<=2])
auto=@this creature attacksdouble the number of counter(1/1)starget(creature that creature unblockable by creature with power 2,less this turn
text=Backup 1 (When this creature enters the battlefield, put a +1/+1 counter on target creature. If that's another creature, it gains the following ability until end of turn.) -- Whenever this creature attacks, double the number of +1/+1 counters on target creature. That creature can't be blocked by creatures with power 2 or less this turn.
mana={1}{R}{G}{W}
type=Legendary Creature
subtype=Fox Shaman
power=4
toughness=3
[/card]
[card]
name=Wildfire Awakener
auto=create(elemental:creature elemental:1/1:red:"whenever this creature becomes tapped, it deals 1 damage to target player)x
text=Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.) -- When Wildfire Awakener enters the battlefield, create X 1/1 red Elemental creature tokens with "Whenever this creature becomes tapped, it deals 1 damage to target player."
mana={X}{1}{R}{W}
type=Creature
subtype=Human Wizard
power=3
toughness=2
[/card]
[card]
name=Flockchaser Phantom
abilities=flying,vigilance
auto=_ATTACKING_the next spell you cast this turn) convoke
text=Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.) -- Flying, vigilance -- Whenever Flockchaser Phantom attacks, the next spell you cast this turn has convoke.
mana={4}{W}{U}
type=Creature
subtype=Spirit
power=5
toughness=5
[/card]
[card]
name=Cutthroat Negotiator
auto=Parley ? _ATTACKING_token(Treasure,Artifact Treasure) and!( transforms((,newability[{T}{S}:Add{W}])(,newability[{T}{S}:Add{R}])(,newability[{T}{S}:Add{G}])(,newability[{T}{S}:Add{U}])(,newability[{T}{S}:Add{B}])) forever )!
auto=foreach(|myBattlefield)
text=Parley ? Whenever Cutthroat Negotiator attacks, each player reveals the top card of their library. For each nonland card revealed this way, you create a tapped Treasure token. Then each player draws a card.
mana={2}{U}{R}
type=Creature
subtype=Orc Pirate
power=4
toughness=3
[/card]
[card]
name=Sandsteppe War Riders
abilities=trample
auto=lord(creature|myBattlefield)
auto=@each my combatbegins:bolster x, where x is the number of differently named artifact tokens|myBattlefield)
text=Trample -- At the beginning of combat on your turn, bolster X, where X is the number of differently named artifact tokens you control. (Choose a creature with the least toughness among creatures you control and put X +1/+1 counters on it.)
mana={3}{G}
type=Creature
subtype=Human Warrior
power=4
toughness=4
[/card]
[card]
name=Emergent Woodwurm
auto=@this creature attackslook at the top x cards of your library, where x is its power may permanent card with mana value x,less from among them onmoveTo(mybattlefield) put the restthe bottom of your library in a random order
text=Backup 3 (When this creature enters the battlefield, put three +1/+1 counters on target creature. If that's another creature, it gains the following ability until end of turn.) -- Whenever this creature attacks, look at the top X cards of your library, where X is its power. You may put a permanent card with mana value X or less from among them onto the battlefield. Put the rest on the bottom of your library in a random order.
mana={6}{G}
type=Creature
subtype=Wurm
power=4
toughness=4
[/card]
[card]
name=Conclave Sledge-Captain
abilities=trample
auto=@combatdamaged(player) from(this):
auto=@this creature deals combat damage to a playerput that many counter(1/1)sit
text=Backup 1, backup 1, backup 1 (When this creature enters the battlefield, put a +1/+1 counter on target creature. If that's another creature, it gains the following abilities until end of turn. Each backup ability triggers separately.) -- Trample -- Whenever this creature deals combat damage to a player, put that many +1/+1 counters on it.
mana={5}{G}
type=Creature
subtype=Elephant Soldier
power=4
toughness=4
[/card]
[card]
name=Uncivil Unrest
auto=lord(other creature|myBattlefield) riot
text=Nontoken creatures you control have riot. (They enter the battlefield with your choice of a +1/+1 counter or haste.) -- If a creature you control with a +1/+1 counter on it would deal damage to a permanent or player, it deals double that damage instead.
mana={4}{R}
type=Enchantment
[/card]
[card]
name=Dance with Calamity
shuffle your library as many times as you choose, may exile the top card of your library if the total mana value of the cards exiled this way is 13,less, may cast any number of spells from among those cards without paying their mana costs
auto=moveto(exile)
auto=Shuffle your library As many times as you choose you may exile the top card of your library If the total mana value of the cards exiled this way13 or less you may cast any number of spells from among those cards without paying their mana costs
text=Shuffle your library. As many times as you choose, you may exile the top card of your library. If the total mana value of the cards exiled this way is 13 or less, you may cast any number of spells from among those cards without paying their mana costs.
mana={7}{R}
type=Sorcery
[/card]
[card]
name=Elenda and Azor
abilities=flying
text=Flying, ward {2} -- Whenever Elenda and Azor attacks, you may pay {X}{W}{U}{B}. If you do, draw X cards. -- At the beginning of each end step, you may pay 4 life. If you do, create a number of 1/1 black Vampire Knight creature tokens with lifelink equal to the number of cards you've drawn this turn.
mana={3}{W}{U}{B}
type=Legendary Creature
subtype=Vampire Knight Sphinx
power=6
toughness=6
[/card]
[card]
name=Gimbal, Gremlin Prodigy
auto=lord(other creature|myBattlefield) trample
auto=lord(creature|myBattlefield)
auto=@each my endofturn:create(gremlin artifact:creature gremlin artifact:0/0:red)
text=Artifact creatures you control have trample. -- At the beginning of your end step, create a 0/0 red Gremlin artifact creature token. Put X +1/+1 counters on it, where X is the number of differently named artifact tokens you control.
mana={2}{G}{U}{R}
type=Legendary Creature
subtype=Gremlin Artificer
power=4
toughness=4
[/card]
[card]
name=Kasla, the Broken Halo
abilities=flying,haste,vigilance
auto=@movedTo(nother|mystack):auto=_SCRY_(2)
text=Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.) -- Flying, vigilance, haste -- Whenever you cast another spell that has convoke, scry 2, then draw a card.
mana={3}{U}{R}{W}
type=Legendary Creature
subtype=Angel Ally
power=5
toughness=4
[/card]
[card]
name=Rashmi and Ragavan
auto=lord(creature|myBattlefield) opponent's library and create a treasure token. then you may cast the exiled card without paying its mana cost if it's a spell with mana value less than the number of artifacts you control. if you don't cast it this way, you may cast it this turn
text=Whenever you cast your first spell during each of your turns, exile the top card of target opponent's library and create a Treasure token. Then you may cast the exiled card without paying its mana cost if it's a spell with mana value less than the number of artifacts you control. If you don't cast it this way, you may cast it this turn.
mana={1}{G}{U}{R}
type=Legendary Creature
subtype=Elf Monkey
power=2
toughness=4
[/card]
[card]
name=Saint Traft and Rem Karolus
auto=@tapped(this):create(human:creature human:1/1:red)
auto=@movedTo(|mystack):untap saint traft && rem karolus
text=Whenever Saint Traft and Rem Karolus becomes tapped, create a 1/1 red Human creature token if this is the first time this ability has resolved this turn. If it's the second time, create a 1/1 blue Spirit creature token with flying. If it's the third time, create a 4/4 white Angel creature token with flying. -- Whenever you cast a spell that has convoke, untap Saint Traft and Rem Karolus.
mana={U}{R}{W}
type=Legendary Creature
subtype=Spirit Human
power=3
toughness=4
[/card]
[card]
name=Kasla, the Broken Halo
abilities=flying,haste,vigilance
auto=@movedTo(nother|mystack):auto=_SCRY_(2)
text=Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.) -- Flying, vigilance, haste -- Whenever you cast another spell that has convoke, scry 2, then draw a card.
mana={3}{U}{R}{W}
type=Legendary Creature
subtype=Angel Ally
power=5
toughness=4
[/card]
[card]
name=Blight Titan
abilities=deathtouch
auto=@ or attacksdeplete:2 && incubate x, where x is the number of creature cards in your graveyard
text=Deathtouch -- Whenever Blight Titan enters the battlefield or attacks, mill two cards, then incubate X, where X is the number of creature cards in your graveyard. (Create an Incubator token with X +1/+1 counters on it and "{2}: Transform this artifact." It transforms into a 0/0 Phyrexian artifact creature.)
mana={4}{B}{B}
type=Creature
subtype=Phyrexian Giant
power=6
toughness=6
[/card]
[card]
name=Wand of the Worldsoul
auto=tapped
auto={T}:add {w}
auto={T}:Add{W}
auto={T}:the next spell you cast this turn) convoke
text=Wand of the Worldsoul enters the battlefield tapped. -- {T}: Add {W}. -- {T}: The next spell you cast this turn has convoke.
mana={2}{W}
type=Artifact
[/card]
[card]
name=Vulpine Harvester
auto=lord(creature|myBattlefield) artifact card from your graveyard to the battlefield if its mana value is less than or equal to their total power
auto=@one or more Phyrexians you control attacktarget(artifact|mygraveyard) the battlefield if its mana value is less than,equal their total power
text=Whenever one or more Phyrexians you control attack, return target artifact card from your graveyard to the battlefield if its mana value is less than or equal to their total power.
mana={3}{W}
type=Creature
subtype=Phyrexian Fox
power=3
toughness=3
[/card]
[card]
name=Stronghold Furnace
text=If a source would deal damage to a creature or player, it deals double that damage to that creature or player instead. -- Whenever you roll {C}, Stronghold Furnace deals 1 damage to target creature or player.
type=Plane
subtype=Rath
[/card]
[card]
name=Turri Island
text=Creature spells cost {2} less to cast. -- Whenever you roll {C}, reveal the top three cards of your library. Put all creature cards revealed this way into your hand and the rest into your graveyard.
type=Plane
subtype=Ir
[/card]
[card]
name=Truga Jungle
text=All lands have "{T}: Add one mana of any color to your mana pool." -- Whenever you roll {K}, reveal the top three cards of your library. Put all land cards revealed this way into your hand and the rest on the bottom of your library in any order.
type=Plane
subtype=Ergamon
[/card]
[card]
name=Undercity Reaches
text=Whenever a creature deals combat damage to a player, its controller may draw a card. -- Whenever you roll {C}, you have no maximum hand size for the rest of the game.
type=Plane
subtype=Ravnica
[/card]
[card]
name=Kharasha Foothills
text=Whenever a creature you control attacks a player, for each other opponent, you may put a token that's a copy of that creature onto the battlefield tapped and attacking that opponent. Exile those tokens at the beginning of the next end step. -- Whenever you roll {K}, you may sacrifice any number of creatures. If you do, Kharasha Foothills deals that much damage to target creature.
type=Plane
subtype=Mongseng
[/card]
[card]
name=Mutual Epiphany
text=When you encounter Mutual Epiphany, each player draws four cards. (Then planeswalk away from this phenomenon.)
type=Phenomenon
[/card]
[card]
name=Panopticon
text=When you planeswalk to Panopticon, draw a card. -- At the beginning of your draw step, draw an additional card. -- Whenever you roll {C}, draw a card.
type=Plane
subtype=Mirrodin
[/card]
[card]
name=Orochi Colony
text=Whenever a creature you control deals combat damage to a player, you may search your library for a basic land card, put it onto the battlefield tapped, then shuffle your library. -- Whenever you roll {K}, target creature can't be blocked this turn.
type=Plane
subtype=Kamigawa
[/card]
[card]
name=Reality Shaping
text=When you encounter Reality Shaping, starting with you, each player may put a permanent card from his or her hand onto the battlefield. (Then planeswalk away from this phenomenon.)
type=Phenomenon
[/card]
[card]
name=Planewide Disaster
text=When you encounter Planewide Disaster, destroy all creatures. (Then planeswalk away from this phenomenon.)
type=Phenomenon
[/card]
[card]
name=Selesnya Loft Gardens
text=If an effect would put one or more tokens onto the battlefield, it puts twice that many of those tokens onto the battlefield instead. -- If an effect would place one or more counters on a permanent, it places twice that many of those counters on that permanent instead. -- Whenever you roll {K}, until end of turn, whenever you tap a land for mana, add one mana to your mana pool of any type that land produced.
type=Plane
subtype=Ravnica
[/card]
[card]
name=Spatial Merging
text=When you encounter Spatial Merging, reveal cards from the top of your planar deck until you reveal two plane cards. Simultaneously planeswalk to both of them. Put all other cards revealed this way on the bottom of your planar deck in any order.
type=Phenomenon
[/card]
[card]
name=Bloodhill Bastion
text=Whenever a creature enters the battlefield, it gains double strike and haste until end of turn. -- Whenever you roll {K}, exile target nontoken creature you control, then return it to the battlefield under your control.
type=Plane
subtype=Equilor
[/card]
[card]
name=The Aether Flues
text=When you planeswalk to The Aether Flues or at the beginning of your upkeep, you may sacrifice a creature. If you do, reveal cards from the top of your library until you reveal a creature card, put that card onto the battlefield, then shuffle all other cards revealed this way into your library. -- Whenever you roll {C}, you may put a creature card from your hand onto the battlefield.
type=Plane
subtype=Iquatana
[/card]
[card]
name=Chaotic Aether
text=When you encounter Chaotic Aether, each blank roll of the planar die is a CHAOS roll until a player planeswalks away from a plane. (Then planeswalk away from this phenomenon.)
type=Phenomenon
[/card]
[card]
name=The Great Forest
text=Each creature assigns combat damage equal to its toughness rather than its power. -- Whenever you roll {C}, creatures you control get +0/+2 and gain trample until end of turn.
type=Plane
subtype=Lorwyn
[/card]
[card]
name=Glimmervoid Basin
text=Whenever a player casts an instant or sorcery spell with a single target, he or she copies that spell for each other spell, permanent, card not on the battlefield, and/or player the spell could target. Each copy targets a different one of them. -- Whenever you roll {C}, choose target creature. Each player except that creature's controller puts a token that's a copy of that creature onto the battlefield.
type=Plane
subtype=Mirrodin
[/card]
[card]
name=Hedron Fields of Agadeem
text=Creatures with power 7 or greater can't attack or block. -- Whenever you roll {K}, put a 7/7 colorless Eldrazi creature token with annihilator 1 onto the battlefield. (Whenever it attacks, defending player sacrifices a permanent.)
type=Plane
subtype=Zendikar
[/card]
[card]
name=Grove of the Dreampods
text=When you planeswalk to Grove of the Dreampods or at the beginning of your upkeep, reveal cards from the top of your library until you reveal a creature card. Put that card onto the battlefield and the rest on the bottom of your library in a random order. -- Whenever you roll {K}, return target creature card from your graveyard to the battlefield.
type=Plane
subtype=Fabacin
[/card]
[card]
name=Isle of Vesuva
text=Whenever a nontoken creature enters the battlefield, its controller puts a token onto the battlefield that's a copy of that creature. -- Whenever you roll {C}, destroy target creature and all other creatures with the same name as that creature.
type=Plane
subtype=Dominaria
[/card]
[card]
name=Megaflora Jungle
auto=@chaos ensuescreate(insect:creature insect:1/1:green:flying named butterfly)
text=Each creature with mana value 2 or less gets +2/+2. -- Whenever chaos ensues, create a 1/1 green Insect creature token with flying named Butterfly.
mana=null
type=Plane
subtype=Gargantikar
[/card]
[card]
name=Naktamun
auto=@chaos ensuesmay ability$!name(discard) reject notatarget(*|myhand)!$ draw:1
text=Each creature card in your graveyard has embalm. Its embalm cost is equal to its mana cost. (Exile a creature card from your graveyard and pay its embalm cost: Create a token that's a copy of it, except it's a white Zombie in addition to its other types with no mana cost. Embalm only as a sorcery.) -- Whenever chaos ensues, you may discard a card. If you do, draw a card.
mana=null
type=Plane
subtype=Amonkhet
[/card]
[card]
name=New Argive
auto=@historic creature you control attacks2/2 ueot
auto=@chaos ensuesreveal cards from the top of your library until you reveal a artifact,*[legendary],enchantment[saga] card put that card inmoveto(ownerhand) && the restthe bottom of your library in a random order
text=Whenever a historic creature you control attacks, it gets +2/+2 until end of turn. (Artifacts, legendaries, and Sagas are historic.) -- Whenever chaos ensues, reveal cards from the top of your library until you reveal a historic card. Put that card into your hand and the rest on the bottom of your library in a random order.
mana=null
type=Plane
subtype=Dominaria
[/card]
[card]
name=Norn's Seedcore
auto=@chaos ensuesreveal cards from the top of your planar deck until you reveal a plane card planeswalk it, except don't planeswalk away from any plane put the rest of the revealed cardsthe bottom of your planar deck in any order
text=When you planeswalk to Norn's Seedcore, chaos ensues. -- Whenever chaos ensues, reveal cards from the top of your planar deck until you reveal a plane card. Planeswalk to it, except don't planeswalk away from any plane. Put the rest of the revealed cards on the bottom of your planar deck in any order.
mana=null
type=Plane
subtype=New Phyrexia
[/card]
[card]
name=The Fertile Lands of Saulvinia
auto=@player taps a land for manathat player adds one mana of any type that land produced
auto=@chaos ensuesreveal cards from the top of your planar deck until you reveal a plane card chaos ensuesthat plane then put all cards revealed this waythe bottom of your planar deck in any order
text=Whenever a player taps a land for mana, that player adds one mana of any type that land produced. -- Whenever chaos ensues, reveal cards from the top of your planar deck until you reveal a plane card. Chaos ensues on that plane. Then put all cards revealed this way on the bottom of your planar deck in any order.
mana=null
type=Plane
subtype=Antausia
[/card]
[card]
name=Ghirapur
abilities=haste
auto=@each my combatbegins:ueot, all(noncreature, non-vehicle artifact|myBattlefield) becomes a 5/3 vehicle in addition its other types && trample, haste, && crew 2
auto=@chaos ensuestarget(noncreature artifact|mygraveyard) moveto(ownerhand)
text=At the beginning of combat on your turn, until end of turn, each noncreature, non-Vehicle artifact you control becomes a 5/3 Vehicle in addition to its other types and gains trample, haste, and crew 2. -- Whenever chaos ensues, return target noncreature artifact card from your graveyard to your hand.
mana=null
type=Plane
subtype=Kaladesh
[/card]
[card]
name=The Golden City of Orazca
auto=lord(other creature|myBattlefield) the city's blessing
auto=@one or more creatures you control deal combat damage to a playertoken(Treasure,Artifact Treasure) and!( transforms((,newability[{T}{S}:Add{W}])(,newability[{T}{S}:Add{R}])(,newability[{T}{S}:Add{G}])(,newability[{T}{S}:Add{U}])(,newability[{T}{S}:Add{B}])) forever )!
auto=@chaos ensuesmay permanent card from your hand onto the battlefield tapped
text=Ascend (If you control ten or more permanents, you get the city's blessing for the rest of the game.) -- Whenever one or more creatures you control deal combat damage to a player, create a Treasure token. Then draw a card if you have the city's blessing. -- Whenever chaos ensues, you may put a permanent card from your hand onto the battlefield tapped.
mana=null
type=Plane
subtype=Ixalan
[/card]
[card]
name=The Great Aerie
auto=@chaos ensueschoose <upto:1> target(creature|myBattlefield) && <upto:1> target(creature|opponentBattlefield) all(of those creature deals damage equal its toughness the other
text=When you planeswalk to The Great Aerie and at the beginning of your upkeep, bolster 3. (Choose a creature with the least toughness among creatures you control and put three +1/+1 counters on it.) -- Whenever chaos ensues, choose up to one target creature you control and up to one target creature an opponent controls. Each of those creatures deals damage equal to its toughness to the other.
mana=null
type=Plane
subtype=Tarkir
[/card]
[card]
name=Inys Haen
auto=@chaos ensuestarget(nonland|mygraveyard) moveto(ownerhand)
text=When you planeswalk to Inys Haen and at the beginning of your upkeep, mill three cards. -- When you planeswalk away from Inys Haen, each player returns all land cards from their graveyard to the battlefield tapped. -- Whenever chaos ensues, return target nonland card from your graveyard to your hand.
mana=null
type=Plane
subtype=Cridhe
[/card]
[card]
name=Ketria
auto=@chaos ensuesexile cards from the top of your library until you exile a nonland permanent card put that card onto the battlefield,inmoveto(ownerhand)
text=When you planeswalk to Ketria and at the beginning of your upkeep, put your choice of a vigilance, menace, or trample counter on target creature you control. -- Whenever chaos ensues, exile cards from the top of your library until you exile a nonland permanent card. Put that card onto the battlefield or into your hand.
mana=null
type=Plane
subtype=Ikoria
[/card]
[card]
name=Littjara
auto=@chaos ensueschoose a creature type counter(1/1)all(creature|myBattlefield) of that type
text=When you planeswalk to Littjara and at the beginning of your upkeep, create a 2/2 blue Shapeshifter creature token with changeling. (It is every creature type.) -- Whenever chaos ensues, choose a creature type. Put a +1/+1 counter on each creature you control of that type.
mana=null
type=Plane
subtype=Kaldheim
[/card]
[card]
name=The Caldaia
auto=@chaos ensuestarget(creature|mygraveyard) moveto(ownerhand)
text=Creature spells you cast from your hand have blitz {3}. (If you cast a spell for its blitz cost, it gains haste and "When this creature dies, draw a card." Sacrifice it at the beginning of the next end step.) -- Whenever chaos ensues, return target creature card from your graveyard to your hand.
mana=null
type=Plane
subtype=Capenna
[/card]
[card]
name=Enigma Ridges
auto=@chaos ensuesdraw:1 && may land card from your hand onmoveTo(mybattlefield)
text=When you planeswalk to Enigma Ridges, each player who controls fewer lands than the player who controls the most lands searches their library for a number of basic land cards less than or equal to the difference, reveals them, puts them into their hand, then shuffles. -- Whenever chaos ensues, draw a card, then you may put a land card from your hand onto the battlefield.
mana=null
type=Plane
subtype=Echoir
[/card]
[card]
name=Esper
auto=all(other creature|myBattlefield)s vigilance, menace, and lifelink
auto=@chaos ensuescreature|myBattlefield) that are white, blue, and/or black become artifacts in addition their other types ueot then all(artifact creature|myBattlefield)) vigilance, menace, && lifelink ueot
text=Artifact spells cost {1} less to cast. -- Whenever chaos ensues, creatures you control that are white, blue, and/or black become artifacts in addition to their other types until end of turn. Then each artifact creature you control gains vigilance, menace, and lifelink until end of turn.
mana=null
type=Plane
subtype=Alara
[/card]
[card]
name=Strionic Resonator
text={2}, {T}: Copy target triggered ability you control. You may choose new targets for the copy. (A triggered ability uses the words "when," "whenever," or "at.")
mana={2}
type=Artifact
[/card]
[card]
name=Inspiring Statuary
text=Nonartifact spells you cast have improvise. (Your artifacts can help cast those spells. Each artifact you tap after you're done activating mana abilities pays for {1}.)
mana={3}
type=Artifact
[/card]
[card]
name=Flockchaser Phantom
abilities=flying,vigilance
auto=_ATTACKING_the next spell you cast this turn) convoke
text=Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.) -- Flying, vigilance -- Whenever Flockchaser Phantom attacks, the next spell you cast this turn has convoke.
mana={4}{W}{U}
type=Creature
subtype=Spirit
power=5
toughness=5
[/card]
[card]
name=Elspeth's Talent
target=planeswalker
auto=teach(creature) Enchant planeswalker
auto=teach(creature) Enchanted planeswalker
auto=teach(creature) "[+1]: Create three 1/1 white Soldier creature tokens"
auto=teach(creature) Whenever you activateloyalty ability of enchanted planeswalker creatures you control get +2/+2
auto=teach(creature) gain vigilance
text=Enchant planeswalker -- Enchanted planeswalker has "[+1]: Create three 1/1 white Soldier creature tokens." -- Whenever you activate a loyalty ability of enchanted planeswalker, creatures you control get +2/+2 and gain vigilance until end of turn.
mana={2}{W}{W}
type=Enchantment
subtype=Aura
[/card]
[card]
name=Teferi's Talent
target=planeswalker
auto=teach(creature) Enchant planeswalker
auto=teach(creature) Enchanted planeswalker
auto=teach(creature) "[-12]: You get an emblem with 'You may activate loyalty abilities of planeswalkers you control on any player's turn any time you could cast an instant'"
auto=teach(creature) Whenever you drawcard putloyalty counter on enchanted planeswalker
text=Enchant planeswalker -- Enchanted planeswalker has "[-12]: You get an emblem with 'You may activate loyalty abilities of planeswalkers you control on any player's turn any time you could cast an instant.'" -- Whenever you draw a card, put a loyalty counter on enchanted planeswalker.
mana={3}{U}{U}
type=Enchantment
subtype=Aura
[/card]
[card]
name=Wildfire Awakener
auto=create(elemental:creature elemental:1/1:red:"whenever this creature becomes tapped, it deals 1 damage to target player)x
text=Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.) -- When Wildfire Awakener enters the battlefield, create X 1/1 red Elemental creature tokens with "Whenever this creature becomes tapped, it deals 1 damage to target player."
mana={X}{1}{R}{W}
type=Creature
subtype=Human Wizard
power=3
toughness=2
[/card]
[card]
name=Rowan's Talent
target=planeswalker
auto=teach(creature) Enchant planeswalker
auto=teach(creature) Enchanted planeswalker
auto=teach(creature) "[+1]: Up to one target creature
auto=teach(creature) +2/+0
auto=teach(creature) first strike
auto=teach(creature) trample "
auto=teach(creature) Whenever you activateloyalty ability of enchanted planeswalker copy that ability You may choose new targets for the copy
text=Enchant planeswalker -- Enchanted planeswalker has "[+1]: Up to one target creature gets +2/+0 and gains first strike and trample until end of turn." -- Whenever you activate a loyalty ability of enchanted planeswalker, copy that ability. You may choose new targets for the copy.
mana={2}{R}{R}
type=Enchantment
subtype=Aura
[/card]
[card]
name=Begin the Invasion
search your library for up x battle cards with different names, put them onto the battlefield && shuffle
auto=Search your library for up to X battle cards with different names put them onto the battlefield then shuffle
text=Search your library for up to X battle cards with different names, put them onto the battlefield, then shuffle.
mana={X}{W}{U}{B}{R}{G}
type=Sorcery
[/card]
[card]
name=Bright-Palm, Soul Awakener
auto=cantbeblockedby(creature[power<=2])
auto=@this creature attacksdouble the number of counter(1/1)starget(creature that creature unblockable by creature with power 2,less this turn
text=Backup 1 (When this creature enters the battlefield, put a +1/+1 counter on target creature. If that's another creature, it gains the following ability until end of turn.) -- Whenever this creature attacks, double the number of +1/+1 counters on target creature. That creature can't be blocked by creatures with power 2 or less this turn.
mana={1}{R}{G}{W}
type=Legendary Creature
subtype=Fox Shaman
power=4
toughness=3
[/card]
[card]
name=Gimbal, Gremlin Prodigy
auto=lord(other creature|myBattlefield) trample
auto=lord(creature|myBattlefield)
auto=@each my endofturn:create(gremlin artifact:creature gremlin artifact:0/0:red)
text=Artifact creatures you control have trample. -- At the beginning of your end step, create a 0/0 red Gremlin artifact creature token. Put X +1/+1 counters on it, where X is the number of differently named artifact tokens you control.
mana={2}{G}{U}{R}
type=Legendary Creature
subtype=Gremlin Artificer
power=4
toughness=4
[/card]
[card]
name=Cutthroat Negotiator
auto=Parley ? _ATTACKING_token(Treasure,Artifact Treasure) and!( transforms((,newability[{T}{S}:Add{W}])(,newability[{T}{S}:Add{R}])(,newability[{T}{S}:Add{G}])(,newability[{T}{S}:Add{U}])(,newability[{T}{S}:Add{B}])) forever )!
auto=foreach(|myBattlefield)
text=Parley ? Whenever Cutthroat Negotiator attacks, each player reveals the top card of their library. For each nonland card revealed this way, you create a tapped Treasure token. Then each player draws a card.
mana={2}{U}{R}
type=Creature
subtype=Orc Pirate
power=4
toughness=3
[/card]
[card]
name=Bright-Palm, Soul Awakener
auto=cantbeblockedby(creature[power<=2])
auto=@this creature attacksdouble the number of counter(1/1)starget(creature that creature unblockable by creature with power 2,less this turn
text=Backup 1 (When this creature enters the battlefield, put a +1/+1 counter on target creature. If that's another creature, it gains the following ability until end of turn.) -- Whenever this creature attacks, double the number of +1/+1 counters on target creature. That creature can't be blocked by creatures with power 2 or less this turn.
mana={1}{R}{G}{W}
type=Legendary Creature
subtype=Fox Shaman
power=4
toughness=3
[/card]
[card]
name=Uncivil Unrest
auto=lord(other creature|myBattlefield) riot
text=Nontoken creatures you control have riot. (They enter the battlefield with your choice of a +1/+1 counter or haste.) -- If a creature you control with a +1/+1 counter on it would deal damage to a permanent or player, it deals double that damage instead.
mana={4}{R}
type=Enchantment
[/card]
[card]
name=Conclave Sledge-Captain
abilities=trample
auto=@combatdamaged(player) from(this):
auto=@this creature deals combat damage to a playerput that many counter(1/1)sit
text=Backup 1, backup 1, backup 1 (When this creature enters the battlefield, put a +1/+1 counter on target creature. If that's another creature, it gains the following abilities until end of turn. Each backup ability triggers separately.) -- Trample -- Whenever this creature deals combat damage to a player, put that many +1/+1 counters on it.
mana={5}{G}
type=Creature
subtype=Elephant Soldier
power=4
toughness=4
[/card]
[card]
name=Emergent Woodwurm
auto=@this creature attackslook at the top x cards of your library, where x is its power may permanent card with mana value x,less from among them onmoveTo(mybattlefield) put the restthe bottom of your library in a random order
text=Backup 3 (When this creature enters the battlefield, put three +1/+1 counters on target creature. If that's another creature, it gains the following ability until end of turn.) -- Whenever this creature attacks, look at the top X cards of your library, where X is its power. You may put a permanent card with mana value X or less from among them onto the battlefield. Put the rest on the bottom of your library in a random order.
mana={6}{G}
type=Creature
subtype=Wurm
power=4
toughness=4
[/card]
[card]
name=Sandsteppe War Riders
abilities=trample
auto=lord(creature|myBattlefield)
auto=@each my combatbegins:bolster x, where x is the number of differently named artifact tokens|myBattlefield)
text=Trample -- At the beginning of combat on your turn, bolster X, where X is the number of differently named artifact tokens you control. (Choose a creature with the least toughness among creatures you control and put X +1/+1 counters on it.)
mana={3}{G}
type=Creature
subtype=Human Warrior
power=4
toughness=4
[/card]
[card]
name=Dance with Calamity
shuffle your library as many times as you choose, may exile the top card of your library if the total mana value of the cards exiled this way is 13,less, may cast any number of spells from among those cards without paying their mana costs
auto=moveto(exile)
auto=Shuffle your library As many times as you choose you may exile the top card of your library If the total mana value of the cards exiled this way13 or less you may cast any number of spells from among those cards without paying their mana costs
text=Shuffle your library. As many times as you choose, you may exile the top card of your library. If the total mana value of the cards exiled this way is 13 or less, you may cast any number of spells from among those cards without paying their mana costs.
mana={7}{R}
type=Sorcery
[/card]
[card]
name=Blight Titan
abilities=deathtouch
auto=@ or attacksdeplete:2 && incubate x, where x is the number of creature cards in your graveyard
text=Deathtouch -- Whenever Blight Titan enters the battlefield or attacks, mill two cards, then incubate X, where X is the number of creature cards in your graveyard. (Create an Incubator token with X +1/+1 counters on it and "{2}: Transform this artifact." It transforms into a 0/0 Phyrexian artifact creature.)
mana={4}{B}{B}
type=Creature
subtype=Phyrexian Giant
power=6
toughness=6
[/card]
[card]
name=Vulpine Harvester
auto=lord(creature|myBattlefield) artifact card from your graveyard to the battlefield if its mana value is less than or equal to their total power
auto=@one or more Phyrexians you control attacktarget(artifact|mygraveyard) the battlefield if its mana value is less than,equal their total power
text=Whenever one or more Phyrexians you control attack, return target artifact card from your graveyard to the battlefield if its mana value is less than or equal to their total power.
mana={3}{W}
type=Creature
subtype=Phyrexian Fox
power=3
toughness=3
[/card]
[card]
name=Wand of the Worldsoul
auto=tapped
auto={T}:add {w}
auto={T}:Add{W}
auto={T}:the next spell you cast this turn) convoke
text=Wand of the Worldsoul enters the battlefield tapped. -- {T}: Add {W}. -- {T}: The next spell you cast this turn has convoke.
mana={2}{W}
type=Artifact
[/card]
[card]
name=Dromoka's Command
text=Choose two -- Prevent all damage target instant or sorcery spell would deal this turn. -- Target player sacrifices an enchantment. -- Put a +1/+1 counter on target creature. -- Target creature you control fights target creature you don't control.
mana={G}{W}
type=Instant
[/card]
[card]
name=Towashi
text=Modified creatures you control have trample and "Whenever this creature deals combat damage to a player or planeswalker, draw a card." (Equipment, Auras you control, and counters are modifications.) -- Whenever chaos ensues, distribute three +1/+1 counters among one, two, or three target creatures you control.
type=Plane
subtype=Kamigawa
[/card]
[card]
name=Unyaro
auto=@each my endofturn:if you planeswalked this turn, untap all creature they phase out until a player planeswalks
auto=@chaos ensuescreate(knight:creature knight:2/2:white,blue:vigilance)*2
text=At the beginning of your end step, if you planeswalked to Unyaro this turn, untap all creatures. They phase out until a player planeswalks. (Treat them and anything attached to them as though they didn't exist.) -- Whenever chaos ensues, create two 2/2 white and blue Knight creature tokens with vigilance.
mana=null
type=Plane
subtype=Zhalfir
[/card]
[card]
name=Valor's Reach
auto=@your team attacks with exactly two creaturesthose creature) double strike ueot
auto=@chaos ensuesuntap <upto:2> target(creature your team controls if it's a main phase, there is an additional combat phase after this phase, followed by an additional main phase
text=Whenever your team attacks with exactly two creatures, those creatures gain double strike until end of turn. -- Whenever chaos ensues, untap up to two target creatures your team controls. If it's a main phase, there is an additional combat phase after this phase, followed by an additional main phase.
mana=null
type=Plane
subtype=Kylem
[/card]
[card]
name=The Western Cloud
auto=lord(creature|myBattlefield)
auto=@chaos ensuestoken(Treasure,Artifact Treasure) and!( transforms((,newability[{T}{S}:Add{W}])(,newability[{T}{S}:Add{R}])(,newability[{T}{S}:Add{G}])(,newability[{T}{S}:Add{U}])(,newability[{T}{S}:Add{B}])) forever )!
text=Prevent all damage that would be dealt to creatures and planeswalkers you control. -- Whenever chaos ensues, create three tapped Treasure tokens. They each deal 1 damage to each creature and each planeswalker.
mana=null
type=Plane
subtype=Gobakhan
[/card]
[card]
name=The Wilds
auto=@chaos ensuestoken
text=When you planeswalk to The Wilds and at the beginning of your upkeep, create a Food token. -- Whenever chaos ensues, target player sacrifices a creature. If they do, you create a Food token. You create two Food tokens instead if the sacrificed creature's toughness was 4 or greater.
mana=null
type=Plane
subtype=Eldraine
[/card]
[card]
name=Nyx
auto=Constellation ? @an enchantment movedTo(*[]|myBattlefield):life:1
auto=@chaos ensueschoose a color add an amount of mana of that color equal your devotion that color
text=Nontoken creatures are enchantments in addition to their other types. -- Constellation ? Whenever an enchantment enters the battlefield under your control, you gain 1 life. -- Whenever chaos ensues, choose a color. Add an amount of mana of that color equal to your devotion to that color.
mana=null
type=Plane
subtype=Theros
[/card]
[card]
name=Paliano
text=When one or more creatures you control deal combat damage to a player, if there is no monarch, you become the monarch. -- Whenever chaos ensues, create a 1/1 black Assassin creature token with deathtouch and haste.
type=Plane
subtype=Fiora
[/card]
[card]
name=The Pit
auto=@you planeswalk to The Pitall(player creates their choice of a 3/3 white angel creature token with flying,a 6/6 black demon creature token with flying, trample, && "at the beginning of your upkeep, {S(other creature|mybattlefield)} if you can't, this creature damage:6 you"
auto=@chaos ensuesall(player sacrifices a nonartifact creature
text=When you planeswalk to The Pit, each player creates their choice of a 3/3 white Angel creature token with flying or a 6/6 black Demon creature token with flying, trample, and "At the beginning of your upkeep, sacrifice another creature. If you can't, this creature deals 6 damage to you." -- Whenever chaos ensues, each player sacrifices a nonartifact creature.
mana=null
type=Plane
subtype=The Abyss
[/card]
[card]
name=Riptide Island
auto=all(creature|myBattlefield) haste and get +x/+x , where x is the number of slivers you control +x/+x , where x is the number of slivers you control
auto=@chaos ensuesslivers|myBattlefield)) haste &&) x/x ueot, where x is the number of slivers|myBattlefield)
text=When you planeswalk to Riptide Island and at the beginning of your upkeep, create two 1/1 colorless Sliver creature tokens. -- Whenever chaos ensues, Slivers you control gain haste and get +X/+X until end of turn, where X is the number of Slivers you control.
mana=null
type=Plane
subtype=Dominaria
[/card]
[card]
name=Strixhaven
auto=@chaos ensues<upto:1> target(instant,sorcery card from a graveyard moveto(ownerhand)
text=Instant and sorcery spells players cast have demonstrate. (Whenever a player casts an instant or sorcery spell, they may copy it. If they do, they choose an opponent to also copy it. Players may choose new targets for their copies.) -- Whenever chaos ensues, return up to one target instant or sorcery card from a graveyard to its owner's hand.
mana=null
type=Plane
subtype=Arcavios
[/card]
[card]
name=Ten Wizards Mountain
auto=@roll the planar diecounter(1/1)<upto:1> target(creature
auto=all(other creature|myBattlefield) flying
auto=@chaos ensuescreature|myBattlefield)) flying ueot
text=Whenever you roll the planar die, put a +1/+1 counter on up to one target creature. -- Whenever chaos ensues, creatures you control gain flying until end of turn.
mana=null
type=Plane
subtype=Shenmeng
[/card]
@@ -0,0 +1,10 @@
[card]
name=Mirror-Shield Hoplite
abilities=vigilance
text=Vigilance -- Whenever a creature you control becomes the target of a backup ability, copy that ability. You may choose new targets for the copy. This ability triggers only once each turn.
mana={R}{W}
type=Creature
subtype=Human Soldier
power=2
toughness=2
[/card]
@@ -0,0 +1,72 @@
[card]
name=Jegantha, the Wellspring
text=Companion - No card in your starting deck has more than one of the same mana symbol in its mana cost. (If this card is your chosen companion, you may cast it once from outside the game.) -- {T}: Add {W}{U}{B}{R}{G}. This mana can't be spent to pay generic mana costs.
mana={4}{RG}
type=Legendary Creature
subtype=Elemental Elk
power=5
toughness=5
[/card]
[card]
name=Gyruda, Doom of Depths
text=Companion - Your starting deck contains only cards with even converted mana costs. (If this card is your chosen companion, you may cast it once from outside the game.) -- When Gyruda enters the battlefield, each player puts the top four cards of their library into their graveyard. Put a creature card with an even converted mana cost from among those cards onto the battlefield under your control.
mana={4}{UB}{UB}
type=Legendary Creature
subtype=Demon Kraken
power=6
toughness=6
[/card]
[card]
name=Baral, Chief of Compliance
text=Instant and sorcery spells you cast cost {1} less to cast. -- Whenever a spell or ability you control counters a spell, you may draw a card. If you do, discard a card.
mana={1}{U}
type=Legendary Creature
subtype=Human Wizard
power=1
toughness=3
[/card]
[card]
name=Atris, Oracle of Half-Truths
text=Menace -- When Atris, Oracle of Half-Truths enters the battlefield, target opponent looks at the top three cards of your library and separates them into a face-down pile and a face-up pile. Put one pile into your hand and the other into your graveyard.
mana={2}{U}{B}
type=Legendary Creature
subtype=Human Advisor
power=3
toughness=2
[/card]
[card]
name=Zada, Hedron Grinder
text=Whenever you cast an instant or sorcery spell that targets only Zada, Hedron Grinder, copy that spell for each other creature you control that the spell could target. Each copy targets a different one of those creatures.
mana={3}{R}
type=Legendary Creature
subtype=Goblin Ally
power=3
toughness=3
[/card]
[card]
name=Zirda, the Dawnwaker
text=Companion - Each permanent card in your starting deck has an activated ability. (If this card is your chosen companion, you may cast it once from outside the game.) -- Abilities you activate that aren't mana abilities cost {2} less to activate. This effect can't reduce the mana in that cost to less than one mana. -- {1}, {T}: Target creature can't block this turn.
mana={1}{RW}{RW}
type=Legendary Creature
subtype=Elemental Fox
power=3
toughness=3
[/card]
[card]
name=Obosh, the Preypiercer
text=Companion - Your starting deck contains only cards with odd converted mana costs and land cards. (If this card is your chosen companion, you may cast it once from outside the game.) -- If a source you control with an odd converted mana cost would deal damage to a permanent or player, it deals double that damage to that permanent or player instead.
mana={3}{BR}{BR}
type=Legendary Creature
subtype=Hellion Horror
power=3
toughness=5
[/card]
[card]
name=Yarok, the Desecrated
text=Deathtouch, lifelink -- If a permanent entering the battlefield causes a triggered ability of a permanent you control to trigger, that ability triggers an additional time.
mana={2}{B}{G}{U}
type=Legendary Creature
subtype=Elemental Horror
power=3
toughness=5
[/card]
@@ -0,0 +1,63 @@
[card]
name=Identity Thief
text=Whenever Identity Thief attacks, you may exile another target nontoken creature. If you do, Identity Thief becomes a copy of that creature until end of turn. Return the exiled card to the battlefield under its owner's control at the beginning of the next end step.
mana={2}{U}{U}
type=Creature
subtype=Shapeshifter
power=0
toughness=3
[/card]
[card]
name=Strionic Resonator
text={2}, {T}: Copy target triggered ability you control. You may choose new targets for the copy. (A triggered ability uses the words "when," "whenever," or "at.")
mana={2}
type=Artifact
[/card]
[card]
name=Reign of the Pit
text=Each player sacrifices a creature. Put an X/X black Demon creature token with flying onto the battlefield, where X is the total power of the creatures sacrificed this way.
mana={4}{B}{B}
type=Sorcery
[/card]
[card]
name=Bloodthirsty Blade
auto=teach(creature) 2/0
auto=teach(creature) mustattack
text=Equipped creature gets +2/+0 and is goaded. (It attacks each combat if able and attacks a player other than you if able.) -- {1}: Attach Bloodthirsty Blade to target creature an opponent controls. Activate this ability only any time you could cast a sorcery.
mana={2}
type=Artifact
subtype=Equipment
[/card]
[card]
name=Stolen Identity
text=Put a token onto the battlefield that's a copy of target artifact or creature. -- Cipher (Then you may exile this spell card encoded on a creature you control. Whenever that creature deals combat damage to a player, its controller may cast a copy of the encoded card without paying its mana cost.)
mana={4}{U}{U}
type=Sorcery
[/card]
[card]
name=Thief of Sanity
abilities=flying
text=Flying -- Whenever Thief of Sanity deals combat damage to a player, look at the top three cards of that player's library, exile one of them face down, then put the rest into their graveyard. You may look at and cast that card for as long as it remains exiled, and you may spend mana as though it were mana of any type to cast that spell.
mana={1}{U}{B}
type=Creature
subtype=Specter
power=2
toughness=2
[/card]
[card]
name=Slippery Bogbonder
abilities=flash,opponentshroud
auto=target(creature) counter(0/0,1,Hexproof)
text=Flash -- Hexproof -- When Slippery Bogbonder enters the battlefield, put a hexproof counter on target creature. Then move any number of counters from among creatures you control onto that creature.
mana={3}{G}
type=Creature
subtype=Human Druid
power=3
toughness=3
[/card]
[card]
name=Nesting Grounds
auto={T}:add{1}
text={T}: Add {1}. -- {1}, {T}: Move a counter from target permanent you control onto another target permanent. Activate this ability only any time you could cast a sorcery.
type=Land
[/card]

Some files were not shown because too many files have changed in this diff Show More