LevelX2
e3d686954a
Rogue's Passage - Fixed wrong collectors number of C15 card.
2015-11-21 22:54:49 +01:00
poixen
c60a5daa2d
Merge pull request #1381 from poixen/fix_add
...
Renamed addXXX to increaseXXX
2015-11-21 12:20:49 +01:00
poixen
c8fcbca9f9
Renamed addXXX to increaseXXX
...
+ add implies a variable addition rather than an increment.
2015-11-21 12:20:14 +01:00
poixen
b0da2f2260
Merge pull request #1378 from poixen/mana_cleanup
...
Removed minus subtraction limits
2015-11-21 12:06:02 +01:00
poixen
b08dfa48db
Merge branch 'fix_mana' into mana_cleanup
2015-11-21 12:04:37 +01:00
poixen
a5242ff087
resolved conflicts
2015-11-21 12:02:55 +01:00
poixen
5c6bdfceb8
Merge pull request #1379 from poixen/manasymbol
...
Manasymbol
2015-11-21 11:47:28 +01:00
LevelX2
0d86e8e063
Xmage 1.4.5v0
2015-11-21 10:33:43 +01:00
Quercitron
f3019d70fd
* Tin Street Hooligan - Fix that ETB trigger went on the stack even if G was not spent to cast it
2015-11-21 03:22:46 +03:00
emerald000
59fabeee20
Added missing Scion subtype.
2015-11-20 17:42:14 -05:00
poixen
f2972c5b8e
Updated Phyrexian Mana
...
+ “A Phyrexian mana symbol represents a cost that can be paid either
with *one mana of its color* or by paying 2 life”. These symbols are
mono colored, as such I have made them so.
+ Added test cases for phyrexian mana symbols
2015-11-20 22:43:26 +01:00
poixen
6138af0ffb
Added Snow Mana Test
...
+ Added test case for snow mana
2015-11-20 22:29:49 +01:00
poixen
09ea717ed3
Added Hybrid Mana Tests
...
+ Added hybrid mana test cases
2015-11-20 22:24:55 +01:00
poixen
de13fb5cba
Removed redundant modifiers
...
+ Removed the private modifiers. They are not needed in an ENUM class.
2015-11-20 22:08:39 +01:00
poixen
f34e69308e
Updated mono colored hybrid mana type
...
+ “107.4e. Hybrid mana symbols are also colored mana symbols.” I have
added the Type COLORED to each mono hybrid symbol
+ added tests for hybrid mana symbols
2015-11-20 22:07:24 +01:00
poixen
f6cc03ec44
Added W mana test case
...
Added U mana test case
Added B mana test case
Added R mana test case
Added G mana test case
2015-11-20 20:59:52 +01:00
poixen
56be135532
Removed minus subtraction limits
...
+ Removed minus subtraction limits to allow other areas of code to work
2015-11-20 17:22:48 +01:00
LevelX2
8a133a43d0
Added test for Mana.enough method.
2015-11-20 15:06:00 +01:00
Quercitron
7e58dc70d5
Update Swiss tournament pairing - For the last round, for each unpaired player pair against the highest ranked player they haven't played against
2015-11-20 02:54:50 +03:00
LevelX2
b30a6c4b15
* Cryptoplasm - Fixed that the copied creature did not have the triggered ability ( fixes #1367 ).
2015-11-19 23:28:12 +01:00
LevelX2
684cb2d472
Merge pull request #1377 from magefree/revert-1374-mana_cleanup
...
Revert "Mana Class Overhaul"
2015-11-19 23:00:04 +01:00
LevelX2
c4ab5806e0
Revert "Mana Class Overhaul"
2015-11-19 22:59:57 +01:00
LevelX2
02c1b9f22f
Merge pull request #1376 from magefree/revert-1375-mana_cleanup
...
Revert "Mana updates"
2015-11-19 22:59:33 +01:00
LevelX2
68ff09c219
Revert "Mana updates"
2015-11-19 22:59:15 +01:00
LevelX2
f4871fe489
Merge pull request #1375 from poixen/mana_cleanup
...
Mana updates
2015-11-19 22:37:14 +01:00
LevelX2
4d14743c39
* Fungal Behemoth - Fixed that not only counters on controlled permanents were counted.
2015-11-19 22:35:43 +01:00
poixen
05b841577a
added subtraction logic to enough()
...
+ added subornation logic to enough(). We do not want to mix the public
subtract() call with this method. As doing so would mean that either a)
subtraction can go below 0 (this should not happen) or b) we break this
function with exceptions. This is a work around for these scenarios.
2015-11-19 17:42:59 +01:00
LevelX2
cd17436c4e
[C15] Added the C15 deck lists.
2015-11-19 17:25:38 +01:00
poixen
2c617a6aaf
Mana updates
...
+ calling subtraction will now throw an exception if you try and use
more mana than is available. This is better than setting it to 0.
Setting to 0 impose that you should still be allowed to perform the
action.
+ updated subtraction test to check for exception
+ subtractionCost() will not allow using mana that is not available,
same as subtract()
2015-11-19 17:09:40 +01:00
LevelX2
ec7c888044
Some fixes to put token onto battlefield handling of cards. Some minor reworks.
2015-11-19 15:52:45 +01:00
LevelX2
7bb5d1bb43
Merge pull request #1374 from poixen/mana_cleanup
...
Mana Class Overhaul
2015-11-19 14:37:39 +01:00
Quercitron
486d547f5e
Fix Swiss pairing for the case when some players have left the tournament
2015-11-19 13:18:43 +03:00
poixen
1f5638539f
Class Overhaul
...
+ added javadoc
+ added final to method variables that should not be mutated
+ Mana can no longer be initialised with minus values
+ added null assertions
+ renamed ‘addXXX’ to ‘increaseXXX’. Add implies that you are able to
add variable amounts.
+ subtraction can no longer allow minus values.
+ removed unused state
+ refactored classes use renamed/removed mana calls
+ added comment to contains(), needs to be looked into?
+ Added validation to setting of mana. Can no longer be set to minus
values. Will log if an attempt is made
+Added comment to static mana, this is unsafe.
2015-11-19 09:53:52 +01:00
LevelX2
85bb13b6d8
Merge pull request #1373 from nigelzor/more-cards
...
implement a bunch of simple cards
2015-11-19 09:41:56 +01:00
Neil Gentleman
3fdfbca85b
Aysen Bureaucrats has art variants
2015-11-18 21:49:59 -08:00
Neil Gentleman
c01cfd0395
fix Meteor Blast card name
2015-11-18 21:49:58 -08:00
Neil Gentleman
dac723028c
implement a bunch of simple cards
2015-11-18 21:05:14 -08:00
Neil Gentleman
00ec431889
add Gorgon Recluse, cleanup similar cards
...
Added filtering to BlocksOrBecomesBlockedByCreatureTriggeredAbility,
so that non-wall and color-specific basilisks could reuse it.
Simic Basilisk and Deathgazer were incorrectly destroying the creature
immediately, not at end of combat.
2015-11-18 21:05:14 -08:00
Quercitron
50a02403a0
Fix that Koth of the Hammer could target only mountains you control
2015-11-19 03:20:52 +03:00
Quercitron
05a789cd8b
Use approach with minimal weight matching to determine Swiss tournament pairings
2015-11-19 02:58:02 +03:00
LevelX2
9b074876db
Merge origin/master
2015-11-19 00:42:45 +01:00
LevelX2
fd0d9c166d
[C15] Added Mizzix's Mastery, Mirror Match and Synthetic Destiny.
2015-11-19 00:39:43 +01:00
LevelX2
9880977674
Merge pull request #1371 from Fiorden/master
...
Fixed that Mountain subtype was not remowed by Spreading Seas, Sea's …
2015-11-18 21:58:46 +01:00
Fiorden
3991ec4ba0
Merge pull request #1 from magefree/master
...
testing update
2015-11-18 21:05:09 +01:00
Fiorden
bfb7d06cae
Fixed that Mountain subtype was not remowed by Spreading Seas, Sea's Claim
2015-11-18 20:05:06 +01:00
LevelX2
dcf3ac87f1
[C15] Added Deadly Tempest and Dread Summons.
2015-11-18 20:04:00 +01:00
LevelX2
581e5bee4c
Merge origin/master
2015-11-18 19:25:37 +01:00
LevelX2
6ef2a42f6e
* Burning-Tree Shaman - Fixed a bug that could lock the game if players had hexprrof.
2015-11-18 19:25:20 +01:00
LevelX2
7044e58231
[C15] Added Scourge of Nel Toth.
2015-11-18 17:39:32 +01:00
LevelX2
bfb54ca112
* Deflecting Palm - Fixed a bug that the to the source controller redirected damage of Deflecting Palm could not be redirected to an existing planeswalker of that controller.
2015-11-18 17:38:48 +01:00