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

74 lines
908 B
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 '../Legendary Treasures'
const card: Card = {
name: {
en: "Cobalion",
},
illustrator: "Sumiyoshi Kizuki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
638,
],
hp: 120,
types: [
"Metal",
],
stage: "Basic",
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Energy Press",
},
effect: {
en: "Does 20 more damage for each Energy attached to the Defending Pokémon.",
},
damage: 20,
},
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Iron Breaker",
},
effect: {
en: "The Defending Pokémon can't attack during your opponent's next turn.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
}
export default card