1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

78 lines
1.4 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 '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Cobalion",
fr: "Cobaltium",
es: "Cobalion",
it: "Cobalion",
pt: "Cobalion",
de: "Kobalium"
},
illustrator: "Kazuma Koda",
rarity: "Rare",
category: "Pokemon",
hp: 120,
types: ["Metal"],
attacks: [{
name: {
en: "Headbang",
fr: "Frappe de Tête",
es: "Cabecear",
it: "Scuotitesta",
pt: "Baque de Cabeça",
de: "Headbangen"
},
damage: 40,
cost: ["Metal", "Colorless"]
}, {
name: {
en: "Metal Slash",
fr: "Tranche Métallique",
es: "Tajo Metálico",
it: "Lacerametallo",
pt: "Talho de Metal",
de: "Metallschlitzer"
},
effect: {
en: "During your next turn, this Pokémon cant attack.",
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.",
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen."
},
damage: 130,
cost: ["Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "E",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card