Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
83b42776d1 | |||
3c3ee0565a | |||
98a2ce93fe | |||
84bc6d79f5 | |||
c698ac3499 | |||
e4484b6873 | |||
f330dbde33 | |||
bb2403adad | |||
f7e4116b42 | |||
50f27010f0 |
16
cards.js
@ -1,6 +1,16 @@
|
||||
const cards = [
|
||||
"Discover",
|
||||
"Prospector",
|
||||
"Scientist",
|
||||
"Chateau",
|
||||
"Consul",
|
||||
"Eclipse",
|
||||
"Flask",
|
||||
"Foundry",
|
||||
"Moonlit_Scheme",
|
||||
"Productive_Village",
|
||||
"Retainer",
|
||||
"Secret_Society",
|
||||
"Shovel",
|
||||
"Silk",
|
||||
"Steelworker",
|
||||
"Vase",
|
||||
"Vendor",
|
||||
]
|
BIN
cards/Beaver_v0.1.png
Normal file
After Width: | Height: | Size: 1.7 MiB |
BIN
cards/Chateau_v0.1.png
Normal file
After Width: | Height: | Size: 2.1 MiB |
BIN
cards/Consul_v0.1.png
Normal file
After Width: | Height: | Size: 1.8 MiB |
BIN
cards/Eclipse_v0.1.png
Normal file
After Width: | Height: | Size: 1.6 MiB |
BIN
cards/Foundry_v0.1.png
Normal file
After Width: | Height: | Size: 2.0 MiB |
BIN
cards/High_Council_v0.1.png
Normal file
After Width: | Height: | Size: 3.6 MiB |
BIN
cards/Merchant’s_Favor_v0.1.png
Normal file
After Width: | Height: | Size: 3.7 MiB |
BIN
cards/Moonlit_Scheme_v0.1.png
Normal file
After Width: | Height: | Size: 1.6 MiB |
BIN
cards/Penny_Pincher_v0.1.png
Normal file
After Width: | Height: | Size: 2.1 MiB |
BIN
cards/Productive_Village_v0.1.png
Normal file
After Width: | Height: | Size: 2.0 MiB |
BIN
cards/Retainer_v0.1.png
Normal file
After Width: | Height: | Size: 2.1 MiB |
BIN
cards/Secret_Society_v0.1.png
Normal file
After Width: | Height: | Size: 2.0 MiB |
BIN
cards/Shovel_v0.1.png
Normal file
After Width: | Height: | Size: 2.1 MiB |
BIN
cards/Silk_v0.1.png
Normal file
After Width: | Height: | Size: 2.1 MiB |
BIN
cards/Steelworker_v0.1.png
Normal file
After Width: | Height: | Size: 2.0 MiB |
BIN
cards/Vendor_v0.1.png
Normal file
After Width: | Height: | Size: 1.9 MiB |
@ -30,10 +30,10 @@
|
||||
const addCard = (card) => {
|
||||
cardsDiv.innerHTML += `<img class="card" src="./cards/${card}_v0.1.png"/>`
|
||||
}
|
||||
// randomizers
|
||||
for (const card of cards) {
|
||||
addCard(card);
|
||||
}
|
||||
// // randomizers
|
||||
// for (const card of cards) {
|
||||
// addCard(card);
|
||||
// }
|
||||
// cards
|
||||
for (const card of cards) {
|
||||
for (let i = 0; i < 10; i++) {
|
||||
|