Compare commits
10 Commits
drawer
..
83b42776d1
| Author | SHA1 | Date | |
|---|---|---|---|
| 83b42776d1 | |||
| 3c3ee0565a | |||
| 98a2ce93fe | |||
| 84bc6d79f5 | |||
| c698ac3499 | |||
| e4484b6873 | |||
| f330dbde33 | |||
| bb2403adad | |||
| f7e4116b42 | |||
| 50f27010f0 |
@@ -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",
|
||||
]
|
||||
|
After Width: | Height: | Size: 1.7 MiB |
|
After Width: | Height: | Size: 2.1 MiB |
|
After Width: | Height: | Size: 1.8 MiB |
|
After Width: | Height: | Size: 1.6 MiB |
|
After Width: | Height: | Size: 2.0 MiB |
|
After Width: | Height: | Size: 3.6 MiB |
|
After Width: | Height: | Size: 3.7 MiB |
|
After Width: | Height: | Size: 1.6 MiB |
|
After Width: | Height: | Size: 2.1 MiB |
|
After Width: | Height: | Size: 2.0 MiB |
|
After Width: | Height: | Size: 2.1 MiB |
|
After Width: | Height: | Size: 2.0 MiB |
|
After Width: | Height: | Size: 2.1 MiB |
|
After Width: | Height: | Size: 2.1 MiB |
|
After Width: | Height: | Size: 2.0 MiB |
|
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++) {
|
||||
|
||||