mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
feat: Add Scarlet & violet three first sets (#446)
Some checks failed
Build / build (push) Failing after 59s
Some checks failed
Build / build (push) Failing after 59s
This commit is contained in:
61
data/Scarlet & Violet/Paldea Evolved/166.ts
Normal file
61
data/Scarlet & Violet/Paldea Evolved/166.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldea Evolved"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Compagnol",
|
||||
en: "Tandemaus",
|
||||
es: "Tandemaus",
|
||||
it: "Tandemaus",
|
||||
pt: "Tandemaus",
|
||||
de: "Zwieps"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 30,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Collecte",
|
||||
en: "Collect",
|
||||
es: "Coleccionar",
|
||||
it: "Tassa",
|
||||
pt: "Coleta",
|
||||
de: "Sammeln"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Piochez 2 cartes.",
|
||||
en: "Draw 2 cards.",
|
||||
es: "Roba 2 cartas.",
|
||||
it: "Pesca due carte.",
|
||||
pt: "Compre 2 cartas.",
|
||||
de: "Ziehe 2 Karten."
|
||||
}
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Gifle Douce",
|
||||
en: "Gentle Slap",
|
||||
es: "Bofetada Gentil",
|
||||
it: "Schiaffetto",
|
||||
pt: "Tapinha",
|
||||
de: "Sanfter Hieb"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user