1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

69 lines
1.1 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Copperajah",
fr: "Pachyradjah",
es: "Copperajah",
it: "Copperajah",
pt: "Copperajah",
de: "Patinaraja"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 190,
types: ["Metal"],
evolveFrom: {
en: "Cufant",
fr: "Charibari",
es: "Cufant",
it: "Cufant",
pt: "Cufant",
de: "Kupfanti"
},
stage: "Stage1",
retreat: 4,
regulationMark: "E",
illustrator: "KEIICHIRO ITO",
description: {
en: "These Pokémon live in herds. Their trunks have incredible grip strength, strong enough to crush giant rocks into powder."
},
attacks: [{
cost: ["Metal", "Colorless", "Colorless"],
name: {
en: "Strength"
},
damage: 90
}, {
cost: ["Metal", "Colorless", "Colorless", "Colorless"],
name: {
en: "High Horsepower"
},
damage: 160,
effect: {
en: "This Pokémon also does 30 damage to itself."
}
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card