1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

79 lines
1.2 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 '../Noble Victories'
const card: Card = {
name: {
en: "Cobalion",
fr: "Cobaltium",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
638,
],
hp: 120,
types: [
"Metal",
],
stage: "Basic",
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Energy Press",
fr: "Pression Énergétique",
},
effect: {
en: "Does 20 more damage for each Energy attached to the Defending Pokémon.",
fr: "Inflige 20 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Défenseur.",
},
damage: 20,
},
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Iron Breaker",
fr: "Brise-Fer",
},
effect: {
en: "The Defending Pokémon can't attack during your opponent's next turn.",
fr: "Le Pokémon Défenseur ne peut pas attaquer pendant le prochain tour de votre adversaire.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 2,
}
export default card