1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

76 lines
1007 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../DP Black Star Promos'
const card: Card = {
name: {
en: "Shieldon",
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
410,
],
hp: 80,
types: [
"Metal",
],
evolveFrom: {
en: "Armor Fossil",
},
stage: "Stage1",
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Hard Face",
},
effect: {
en: "During your opponents next turn, any damage done to Shieldon by attacks is reduced by 20 (after applying Weakness and Resistance).",
},
damage: 20,
},
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Shield Attack",
},
effect: {
en: "Flip a coin. If heads, this attack does 40 damage plus 20 more damage.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fire",
value: "+20"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
}
export default card