1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +00:00

71 lines
845 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: "Reshiram-EX",
},
illustrator: "Shizurow",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
643,
],
hp: 180,
types: [
"Fire",
],
suffix: "EX",
attacks: [
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Glinting Claw",
},
effect: {
en: "Flip a coin. If heads, this attack does 30 more damage.",
},
damage: 50,
},
{
cost: [
"Fire",
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Brave Fire",
},
effect: {
en: "Flip a coin. If tails, this Pokémon does 50 damage to itself.",
},
damage: 150,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card