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

47 lines
658 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Scarlet & Violet"
const card: Card = {
dexId: [692],
set: Set,
name: {
en: "Clauncher",
fr: "Flingouste",
es: "Clauncher",
it: "Clauncher",
pt: "Clauncher",
de: "Scampisto"
},
rarity: "Illustration rare",
category: "Pokemon",
hp: 70,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
en: "Vise Grip",
fr: "Force Poigne",
es: "Agarre",
it: "Presa",
pt: "Agarramento Compressor",
de: "Klammer"
},
damage: 10
}],
retreat: 1,
regulationMark: "G",
variants: {
normal: false,
reverse: false
}
}
export default card