From 2e8e48f21713947b9e406585859c23ba0603eac0 Mon Sep 17 00:00:00 2001 From: Matt Soucy Date: Sat, 21 May 2022 20:49:00 -0400 Subject: [PATCH] Consolidate folders --- 2022/05-gencant/{cards => }/.gitignore | 0 2022/05-gencant/{cards => }/ABOUT.md | 0 2022/05-gencant/{cards => }/Gemfile | 0 2022/05-gencant/{cards => }/IDEAS.md | 0 2022/05-gencant/{cards => }/PLAYTESTING.md | 0 2022/05-gencant/{cards => }/PNP NOTES.md | 0 2022/05-gencant/{cards => }/Rakefile | 0 2022/05-gencant/cards/RULES.md | 21 ------------------- 2022/05-gencant/{cards => }/config.yml | 0 2022/05-gencant/{cards => }/data.csv | 0 2022/05-gencant/{cards => }/deck.rb | 5 +++++ 2022/05-gencant/{cards => }/images/air.svg | 0 2022/05-gencant/{cards => }/images/dark.svg | 0 2022/05-gencant/{cards => }/images/earth.svg | 0 2022/05-gencant/{cards => }/images/fire.svg | 0 2022/05-gencant/{ => images}/hexgrid.png | Bin 2022/05-gencant/{cards => }/images/light.svg | 0 2022/05-gencant/{cards => }/images/water.svg | 0 2022/05-gencant/{cards => }/layout.yml | 0 19 files changed, 5 insertions(+), 21 deletions(-) rename 2022/05-gencant/{cards => }/.gitignore (100%) rename 2022/05-gencant/{cards => }/ABOUT.md (100%) rename 2022/05-gencant/{cards => }/Gemfile (100%) rename 2022/05-gencant/{cards => }/IDEAS.md (100%) rename 2022/05-gencant/{cards => }/PLAYTESTING.md (100%) rename 2022/05-gencant/{cards => }/PNP NOTES.md (100%) rename 2022/05-gencant/{cards => }/Rakefile (100%) delete mode 100644 2022/05-gencant/cards/RULES.md rename 2022/05-gencant/{cards => }/config.yml (100%) rename 2022/05-gencant/{cards => }/data.csv (100%) rename 2022/05-gencant/{cards => }/deck.rb (87%) rename 2022/05-gencant/{cards => }/images/air.svg (100%) rename 2022/05-gencant/{cards => }/images/dark.svg (100%) rename 2022/05-gencant/{cards => }/images/earth.svg (100%) rename 2022/05-gencant/{cards => }/images/fire.svg (100%) rename 2022/05-gencant/{ => images}/hexgrid.png (100%) rename 2022/05-gencant/{cards => }/images/light.svg (100%) rename 2022/05-gencant/{cards => }/images/water.svg (100%) rename 2022/05-gencant/{cards => }/layout.yml (100%) diff --git a/2022/05-gencant/cards/.gitignore b/2022/05-gencant/.gitignore similarity index 100% rename from 2022/05-gencant/cards/.gitignore rename to 2022/05-gencant/.gitignore diff --git a/2022/05-gencant/cards/ABOUT.md b/2022/05-gencant/ABOUT.md similarity index 100% rename from 2022/05-gencant/cards/ABOUT.md rename to 2022/05-gencant/ABOUT.md diff --git a/2022/05-gencant/cards/Gemfile b/2022/05-gencant/Gemfile similarity index 100% rename from 2022/05-gencant/cards/Gemfile rename to 2022/05-gencant/Gemfile diff --git a/2022/05-gencant/cards/IDEAS.md b/2022/05-gencant/IDEAS.md similarity index 100% rename from 2022/05-gencant/cards/IDEAS.md rename to 2022/05-gencant/IDEAS.md diff --git a/2022/05-gencant/cards/PLAYTESTING.md b/2022/05-gencant/PLAYTESTING.md similarity index 100% rename from 2022/05-gencant/cards/PLAYTESTING.md rename to 2022/05-gencant/PLAYTESTING.md diff --git a/2022/05-gencant/cards/PNP NOTES.md b/2022/05-gencant/PNP NOTES.md similarity index 100% rename from 2022/05-gencant/cards/PNP NOTES.md rename to 2022/05-gencant/PNP NOTES.md diff --git a/2022/05-gencant/cards/Rakefile b/2022/05-gencant/Rakefile similarity index 100% rename from 2022/05-gencant/cards/Rakefile rename to 2022/05-gencant/Rakefile diff --git a/2022/05-gencant/cards/RULES.md b/2022/05-gencant/cards/RULES.md deleted file mode 100644 index 5b37253..0000000 --- a/2022/05-gencant/cards/RULES.md +++ /dev/null @@ -1,21 +0,0 @@ -# Intro - -What is this game about? How many players? - -# Objective - -What is the object of the game? - -# Components - -What are the components? List them out. - -# Gameplay - -What does each turn look like? Describe a turn. - -# Scoring - -How is victory assigned? - - diff --git a/2022/05-gencant/cards/config.yml b/2022/05-gencant/config.yml similarity index 100% rename from 2022/05-gencant/cards/config.yml rename to 2022/05-gencant/config.yml diff --git a/2022/05-gencant/cards/data.csv b/2022/05-gencant/data.csv similarity index 100% rename from 2022/05-gencant/cards/data.csv rename to 2022/05-gencant/data.csv diff --git a/2022/05-gencant/cards/deck.rb b/2022/05-gencant/deck.rb similarity index 87% rename from 2022/05-gencant/cards/deck.rb rename to 2022/05-gencant/deck.rb index e41505b..2cd200a 100644 --- a/2022/05-gencant/cards/deck.rb +++ b/2022/05-gencant/deck.rb @@ -18,3 +18,8 @@ Squib::Deck.new(cards: 18, layout: 'layout.yml', width: '3.5in', height: '2.5in' save format: :png, prefix: 'card_' save_pdf trim: 37.5, file: 'pnp.pdf' end + +Squib::Deck.new(cards: 1, width: '3in', height: '4in') do + rect + save_pdf trim: 37.5, file: 'player.pdf' +end \ No newline at end of file diff --git a/2022/05-gencant/cards/images/air.svg b/2022/05-gencant/images/air.svg similarity index 100% rename from 2022/05-gencant/cards/images/air.svg rename to 2022/05-gencant/images/air.svg diff --git a/2022/05-gencant/cards/images/dark.svg b/2022/05-gencant/images/dark.svg similarity index 100% rename from 2022/05-gencant/cards/images/dark.svg rename to 2022/05-gencant/images/dark.svg diff --git a/2022/05-gencant/cards/images/earth.svg b/2022/05-gencant/images/earth.svg similarity index 100% rename from 2022/05-gencant/cards/images/earth.svg rename to 2022/05-gencant/images/earth.svg diff --git a/2022/05-gencant/cards/images/fire.svg b/2022/05-gencant/images/fire.svg similarity index 100% rename from 2022/05-gencant/cards/images/fire.svg rename to 2022/05-gencant/images/fire.svg diff --git a/2022/05-gencant/hexgrid.png b/2022/05-gencant/images/hexgrid.png similarity index 100% rename from 2022/05-gencant/hexgrid.png rename to 2022/05-gencant/images/hexgrid.png diff --git a/2022/05-gencant/cards/images/light.svg b/2022/05-gencant/images/light.svg similarity index 100% rename from 2022/05-gencant/cards/images/light.svg rename to 2022/05-gencant/images/light.svg diff --git a/2022/05-gencant/cards/images/water.svg b/2022/05-gencant/images/water.svg similarity index 100% rename from 2022/05-gencant/cards/images/water.svg rename to 2022/05-gencant/images/water.svg diff --git a/2022/05-gencant/cards/layout.yml b/2022/05-gencant/layout.yml similarity index 100% rename from 2022/05-gencant/cards/layout.yml rename to 2022/05-gencant/layout.yml