Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. >>> print(json.dumps(d[333],indent=4,sort_keys=True))
  2. {
  3. "cardset": "empires",
  4. "cost": "5",
  5. "description": "+1 Card\n +1 Action\n______________________\nWhile this is in play, when you gain a Victory card, +1<VP>",
  6. "extra": "This can trigger multiple times in a turn, for cards gained different ways. For example you could play Groundskeeper, then play Engineer gaining an Estate and taking 1<VP>, then in your Buy phase buy a Duchy taking another +1<VP>. Multiple Groundskeepers are cumulative. If you Crown a Groundskeeper, there is still just one Groundskeeper in play, so you only get +1<VP> per Victory card gained.",
  7. "name": "Groundskeeper",
  8. "potcost": 0,
  9. "types": [
  10. "Action"
  11. ]
  12. }
  13. >>> print(json.dumps(d[333],indent=4))
  14. {
  15. "potcost": 0,
  16. "cardset": "empires",
  17. "extra": "This can trigger multiple times in a turn, for cards gained different ways. For example you could play Groundskeeper, then play Engineer gaining an Estate and taking 1<VP>, then in your Buy phase buy a Duchy taking another +1<VP>. Multiple Groundskeepers are cumulative. If you Crown a Groundskeeper, there is still just one Groundskeeper in play, so you only get +1<VP> per Victory card gained.",
  18. "description": "+1 Card\n +1 Action\n______________________\nWhile this is in play, when you gain a Victory card, +1<VP>",
  19. "cost": "5",
  20. "types": [
  21. "Action"
  22. ],
  23. "name": "Groundskeeper"
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement