You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
318 B
11 lines
318 B
require 'squib' |
|
|
|
Squib::Deck.new cards: 1, layout: 'part3_layout.yml' do |
|
background color: '#252322' |
|
rect layout: 'backdrop' |
|
text str: 'Robot Golem', layout: 'title' |
|
svg layout: 'drone' |
|
svg file: 'robot-golem.svg', layout: 'art' |
|
text str: 'Draw two cards.', layout: 'power' |
|
save_png prefix: 'part3_' |
|
end
|
|
|