Awesome
Spells
Spells is a library for parsing the text on Magic: The Gathering cards.
Note that this is pre-pre-Alpha software and you should probably not really use it!
Installation
Add this line to your application's Gemfile:
gem 'spells'
And then execute:
$ bundle
Or install it yourself as:
$ gem install spells
Usage
Parsing activated abilities
card = Spells::Card.new
card.text = "{2}{R}, {T}: Ghost-Lit Raider deals 2 damage to target creature.
Channel - {3}{R}, Discard Ghost-Lit Raider: Ghost-Lit Raider deals 4 damage to target creature."
card.abilities.map &:text_value
# => ["{2}{R}, {T}: Ghost-Lit Raider deals 2 damage to target creature.", "Channel - {3}{R}, Discard Ghost-Lit Raider: Ghost-Lit Raider deals 4 damage to target creature."]
card.triggered_abilities.map &:text_value
# => []
card.activated_abilities.map &:text_value
# => ["{2}{R}, {T}: Ghost-Lit Raider deals 2 damage to target creature.", "Channel - {3}{R}, Discard Ghost-Lit Raider: Ghost-Lit Raider deals 4 damage to target creature."]
Parsing triggered abilities
card = Spells::Card.new
card.text = "Whenever Abomination blocks or becomes blocked by a green or white creature, destroy that creature at end of combat."
card.abilities.map &:text_value
# => ["Whenever Abomination blocks or becomes blocked by a green or white creature, destroy that creature at end of combat."]
card.triggered_abilities.map &:text_value
# => ["Whenever Abomination blocks or becomes blocked by a green or white creature, destroy that creature at end of combat."]
card.activated_abilities.map &:text_value
# => []
Development
This gem uses the treetop gem for declaring the syntax tree. Some resources on treetop:
- http://treetop.rubyforge.org
- http://thingsaaronmade.com/blog/a-quick-intro-to-writing-a-parser-using-treetop.html
Resources
Other open source or general resources related to Magic: The Gathering
- https://github.com/ancestral/Verse
- https://github.com/Zannick/demystify
- http://www.goblinopera.com/mathemagics
- http://wololo.net/2009/08/12/parsing-cards
- https://code.google.com/p/laterna-magica
Contributing
- Fork it ( https://github.com/[my-github-username]/spells/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request