1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-04 20:59:55 +00:00
TCGdex [Bot] 0475848425
editor: fix Scarlet & Violet variants (#508)
Co-authored-by: Avior <git@avior.me>
2024-07-03 15:53:00 +02:00

45 lines
602 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Scarlet & Violet"
const card: Card = {
set: Set,
name: {
en: "Cetoddle",
fr: "Piétacé",
es: "Cetoddle",
it: "Cetoddle",
pt: "Cetoddle",
de: "Flaniwal"
},
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Tackle",
fr: "Charge",
es: "Placaje",
it: "Azione",
pt: "Investida",
de: "Tackle"
},
damage: 30
}],
retreat: 2,
regulationMark: "G",
variants: {
holo: false
}
}
export default card