Agetian
03f636a726
- HOU fatpack specification doesn't need a basic land info.
2017-07-13 18:53:21 +00:00
Agetian
f415edeb6d
- Fixed Saving Grace.
2017-07-13 15:02:52 +00:00
Agetian
19f3e34543
- Updating some AI variables for Hour of Devastation cards.
2017-07-13 14:41:15 +00:00
Agetian
5490008e19
- Updated quest opponent download list.
2017-07-13 11:45:25 +00:00
Agetian
370ce6a344
- Adding quest opponent decks Vegeta 2 / Vegeta 3, Temur decks focused on energy, the medium one on energy-based creatures and creature token creation, the hard one on Aetherworks Marvel + Ulamog, the Ceaseless Hunger.
2017-07-13 11:45:14 +00:00
Agetian
c6f4ac2967
- Added Meddle by schnautzr.
2017-07-13 09:58:41 +00:00
Agetian
aa07530bd3
- Added AI logic parameter to Pyrohemia.
2017-07-13 06:12:53 +00:00
Agetian
05fe27afa6
- Switching Pestilence AI to be more generic and use AILogic$ DmgAllCreaturesAndPlayers
2017-07-13 06:09:07 +00:00
Hanmac
07d130dbff
HumanPlay: fixed cost canPay
2017-07-13 05:36:29 +00:00
Agetian
c92e3c7040
- There seem to be 4 distinct booster pack pictures in HOU. Might need updating in the future if there is more booster art.
2017-07-13 05:17:23 +00:00
Myrd
1d3f91fb9c
Switch game thread executor to be a single-thread
...
executor instead, of a thread pool. This is needed
because when things need to execute on the game
thread, it's not thread safe so only one such thing
should be executing at a time.
This should fix ConcurrentModificationException
from CardAreaPanel.selectCard() on mobile.
This is a reland of r34680 with a fix for being able
to run tasks on the game thread while waiting for input
from the user. Specifically, tested paying costs and
using the dev panel, but should work with anything that
schedules tasks via GameAction.invoke().
2017-07-13 05:03:34 +00:00
Agetian
6fdea6572c
- Only add existing booster templates to the template map to avoid situations where the game would try to generate a non-existing booster pack and crash (e.g. unlocking a Starter 2000 set in quest mode).
...
- Only show the "You receive the following bonus cards" window if there are bonus cards available from the booster template.
2017-07-13 04:12:53 +00:00
Agetian
9e65053285
- HOU bundle should provide HOU basic lands [correct me if I'm wrong].
2017-07-13 04:00:13 +00:00
Agetian
a440d96808
- Adding BoosterCovers and TreatAsSmallSets defs to HOU edition file.
2017-07-13 03:55:15 +00:00
Agetian
4d304abd43
- A more concise plane description for Amonkhet in PConq.
2017-07-12 18:02:07 +00:00
Agetian
f53dfedb4e
- Added info about the number of events to plane descriptions.
2017-07-12 16:29:30 +00:00
Agetian
85302a2b2f
- Added Ixalan plane stub for the potential future plane in PConq.
2017-07-12 16:19:46 +00:00
Agetian
912ffb1709
- Documenting changes in CHANGES.txt.
2017-07-12 16:17:47 +00:00
Agetian
9c5c0a82f6
- Fixed a couple events in KLD and AKH PConq planes.
2017-07-12 16:15:24 +00:00
Agetian
7b41555ece
- Adding Amonkhet plane to PConq [by Sirspud].
2017-07-12 15:49:23 +00:00
Agetian
1d5214234d
- Updating rankings for older sets (LEA-8ED) using data currently aggregated on Bestiaire.
2017-07-12 15:31:57 +00:00
Agetian
a454ee19ec
- Fixed a typo in Wingcrafter.
2017-07-12 11:27:32 +00:00
Agetian
0d4a97d0d0
- Display the name, difficulty and objective (goal/turn limit) of puzzles on the Puzzle Goal effect card.
2017-07-12 04:50:11 +00:00
Agetian
15ec1d4dde
- Added missing lands to Pauper Puzzle #29 .
2017-07-12 03:13:02 +00:00
Agetian
3e41e58cf9
- Reverting an experimental line.
2017-07-11 17:46:05 +00:00
Agetian
abd96ad60f
- Updating bundled cubes. Added Vintage Cube June 2017 and a few Oldschool 93-94 Magic cubes. Added support for several fantasy blocks for Oldschool 93-94 action in limited modes.
2017-07-11 17:44:29 +00:00
Agetian
3d7db9c721
- A little bit more specific display name for custom drafts indicating that they are custom cubes.
2017-07-11 17:41:57 +00:00
Agetian
1a076a648a
- Only sort custom drafts if there is something to sort.
2017-07-11 17:08:29 +00:00
Agetian
df56df5ede
- Sort custom drafts / cubes alphabetically in the list.
2017-07-11 17:03:35 +00:00
Agetian
546fc33ba6
- Added AI logic to the "Tap to get {E}" ability of Consulate Turret.
2017-07-11 10:07:12 +00:00
Agetian
89cfd0bbb0
- Added an alias to AILogic Pump (AILogic BestOption) to ChooseGenericEffectAi for cards where this name of the logic makes more sense. Switched Catastrophe to using this AILogic name.
2017-07-11 07:09:52 +00:00
Agetian
b69b6f1097
- Reverting r34697 for now, it breaks Developer Mode (functionality like Add Card To Hand, Add Card To Play, Setup Game State, etc.) and thus hinders proper debugging of the game in specific situations.
...
- Please feel free to revert this commit to continue working on the single thread executor project and then recommit once it no longer breaks dev mode.
2017-07-11 06:41:21 +00:00
Agetian
212cf95d05
- Added AI logic to Catastrophe that is needed for the AI to consider this spell (why is the logic called Pump? :/ )
2017-07-11 06:37:52 +00:00
Myrd
5c29e8db6b
Switch game thread executor to be a single-thread
...
executor instead, of a thread pool. This is needed
because when things need to execute on the game
thread, it's not thread safe so only one such thing
should be executing at a time.
This should fix ConcurrentModificationException
from CardAreaPanel.selectCard() on mobile.
This is a reland of r34680 with a fix for InputMayMana
which previously relied on there being multiple game
threads.
2017-07-11 02:33:27 +00:00
Agetian
055bd49240
- Documenting changes in CHANGES.txt.
2017-07-10 18:57:59 +00:00
Agetian
c49412e5e6
- Fixed challenges in Urza's Block world.
2017-07-10 18:56:19 +00:00
Agetian
769663298d
- Adding Urza's Block world by Seravy.
2017-07-10 18:48:01 +00:00
Agetian
9a2d288d73
- Fixed Hour of Eternity.
2017-07-10 12:53:32 +00:00
Agetian
d493ceca7a
- Some more PConq event fixes [missed line].
2017-07-10 12:45:12 +00:00
Agetian
561a97e515
- Some more PConq event fixes.
2017-07-10 12:44:56 +00:00
Agetian
22ef6f9eb2
- Fixed avatar in one of PConq events.
2017-07-10 04:42:03 +00:00
Agetian
601feb0989
- Fixed a deck name in PConq.
2017-07-10 04:12:19 +00:00
Agetian
63ac8ee9a9
- Fixed several events on the Mirrodin plane in PConq.
2017-07-10 04:11:08 +00:00
Myrd
42bcfe226d
fix symbiotic wurm text
2017-07-10 01:47:38 +00:00
Agetian
fe0f6f879a
- Minor formatting fix.
2017-07-09 17:56:58 +00:00
Agetian
c8c6f568a2
- Fixed Ezuri, Renegade Leader event in PConq (Mirrodin plane).
2017-07-09 17:31:18 +00:00
Agetian
3084555c53
- Fixed Wasp of the Bitter End.
2017-07-09 13:41:56 +00:00
Agetian
2a4ef7d4d5
- Fixed Earthshaker Khenra.
2017-07-09 13:03:21 +00:00
Agetian
aeed0a5dea
- Fixed Hour of Devastation
2017-07-09 12:59:34 +00:00
Agetian
126cb7d12b
- Fixed Hazoret the Fervent.
2017-07-09 12:54:55 +00:00