diff options
| author | realtradam <[email protected]> | 2022-11-14 03:28:15 -0500 |
|---|---|---|
| committer | realtradam <[email protected]> | 2022-11-14 03:28:15 -0500 |
| commit | 683e652c96cbe50f1fd893a72601075e01630e99 (patch) | |
| tree | 329ca9fe6884e1f0a88787134154dd79d917f07a /cards/alchemical_recipes.rb | |
| parent | beb954b74929633da599803c5b0e89548511e155 (diff) | |
| download | Plore-Tabletop-Game-683e652c96cbe50f1fd893a72601075e01630e99.tar.gz Plore-Tabletop-Game-683e652c96cbe50f1fd893a72601075e01630e99.zip | |
lots of progress
Diffstat (limited to 'cards/alchemical_recipes.rb')
| -rw-r--r-- | cards/alchemical_recipes.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/cards/alchemical_recipes.rb b/cards/alchemical_recipes.rb new file mode 100644 index 0000000..4e96dfb --- /dev/null +++ b/cards/alchemical_recipes.rb @@ -0,0 +1,21 @@ +load 'card.rb' + +alchemical_recipes = {} + +beginner_spells[:crystal_encasement] = Card.new( + title: "Crystal Encasement Recipe", + #damage: 3, + #blood: 2, + #reposte: 'Prc', + actions: [ + Card::Action.new( + content: 'A potion which when applied to a surface quickly grows strong blue crystals. Can also be thrown.', + symbol: [:diamonds, :blood] + ), + ], + color: 'firebrick', + flavour: '"You arent making a bomb, are you?"', + type: 'Blood Magic (Eldritch)' +) + +File.write('beginner_spells.html', Card.build(beginner_spells.values)) |
