1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-12 12:55:25 +00:00
Files
cards-database/data/Scarlet & Violet/Scarlet & Violet/124.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

74 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../Scarlet & Violet"
const card: Card = {
set: Set,
name: {
en: "Koraidon",
fr: "Koraidon",
es: "Koraidon",
it: "Koraidon",
pt: "Koraidon",
de: "Koraidon"
},
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
en: "Claw Slash",
fr: "Tranch'Griffe",
es: "Cuchillada Garra",
it: "Lacerartiglio",
pt: "Golpe de Garra",
de: "Klauenschlitzer"
},
damage: 70
}, {
cost: ["Fighting", "Fighting", "Fighting", "Colorless"],
name: {
en: "Rampaging Fang",
fr: "Croc Furieux",
es: "Colmillo Furioso",
it: "Zanna Infuriata",
pt: "Canino Feroz",
de: "Tobende Fänge"
},
effect: {
en: "Discard 3 Energy from this Pokémon.",
fr: "Défaussez 3 Énergies de ce Pokémon.",
es: "Descarta 3 Energías de este Pokémon.",
it: "Scarta tre Energie da questo Pokémon.",
pt: "Descarte 3 Energias deste Pokémon.",
de: "Lege 3 Energien von diesem Pokémon auf deinen Ablagestapel."
},
damage: 190
}],
retreat: 2,
regulationMark: "G",
illustrator: "Kouki Saitou",
weaknesses: [{
type: "Psychic",
value: "×2"
}],
variants: {
reverse: false,
normal: false
}
}
export default card