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 = [
|
const cards = [
|
||||||
"Discover",
|
"Chateau",
|
||||||
"Prospector",
|
"Consul",
|
||||||
"Scientist",
|
"Eclipse",
|
||||||
|
"Flask",
|
||||||
|
"Foundry",
|
||||||
|
"Moonlit_Scheme",
|
||||||
|
"Productive_Village",
|
||||||
|
"Retainer",
|
||||||
|
"Secret_Society",
|
||||||
|
"Shovel",
|
||||||
|
"Silk",
|
||||||
|
"Steelworker",
|
||||||
"Vase",
|
"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) => {
|
const addCard = (card) => {
|
||||||
cardsDiv.innerHTML += `<img class="card" src="./cards/${card}_v0.1.png"/>`
|
cardsDiv.innerHTML += `<img class="card" src="./cards/${card}_v0.1.png"/>`
|
||||||
}
|
}
|
||||||
// randomizers
|
// // randomizers
|
||||||
for (const card of cards) {
|
// for (const card of cards) {
|
||||||
addCard(card);
|
// addCard(card);
|
||||||
}
|
// }
|
||||||
// cards
|
// cards
|
||||||
for (const card of cards) {
|
for (const card of cards) {
|
||||||
for (let i = 0; i < 10; i++) {
|
for (let i = 0; i < 10; i++) {
|
||||||
|
|||||||