1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-18 06:19:54 +00:00
Florian Bouillon 151c00be78
Updated informations (#23)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 20:35:35 +02:00

77 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Copperajah",
fr: "Pachyradjah"
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 190,
types: [
"Metal",
],
evolveFrom: {
en: "Cufant",
fr: "Charibari"
},
abilities: [
{
type: "Ability",
name: {
en: "Antibacterial Skin",
fr: "Peau Stérilisante"
},
effect: {
en: "This Pokémon cant be affected by any Special Conditions.",
fr: "Ce Pokémon ne peut être affecté par aucun État Spécial."
},
},
],
attacks: [
{
cost: [
"Metal",
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Vengeful Stomp",
fr: "Écrasement Vengeur"
},
effect: {
en: "If your Benched Pokémon have any damage counters on them, this attack does 120 more damage.",
fr: "Si des marqueurs de dégâts sont placés sur vos Pokémon de Banc, cette attaque inflige 120 dégâts supplémentaires."
},
damage: "120+",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
retreat: 4,
}
export default card