mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 02:40:11 +00:00
45 lines
728 B
TypeScript
45 lines
728 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Magearna"
|
|
},
|
|
|
|
illustrator: "Kuroimori",
|
|
rarity: "One Star",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Metal"],
|
|
|
|
description: {
|
|
en: "It synchronizes its consciousness with others to understand their feelings. This faculty makes it useful for taking care of people."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Silver Cannon"
|
|
},
|
|
|
|
damage: "40+",
|
|
cost: ["Metal", "Metal"],
|
|
|
|
effect: {
|
|
en: "If your opponent's Active Pokémon has an Ability, this attack does 40 more damage."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fire",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card
|