1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-17 13:59:55 +00:00

79 lines
1.1 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 '../Emerging Powers'
const card: Card = {
name: {
en: "Cobalion",
fr: "Cobaltium",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
638,
],
hp: 110,
types: [
"Metal",
],
stage: "Basic",
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Metal Horns",
fr: "Cornes de Métal",
},
effect: {
en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
fr: "Votre adversaire échange le Pokémon Défenseur avec 1 de ses Pokémon de Banc.",
},
damage: 30,
},
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Sacred Sword",
fr: "Lame Sainte",
},
effect: {
en: "This Pokémon can't use Sacred Sword during your next turn.",
fr: "Ce Pokémon ne peut pas utiliser Lame Sainte pendant votre prochain tour.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 2,
}
export default card