1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

71 lines
1.2 KiB
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 '../BW Black Star Promos'
const card: Card = {
name: {
en: "Terrakion",
fr: "Terrakium",
},
illustrator: "5ban Graphics",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
639,
],
hp: 130,
types: [
"Fighting",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Justified",
fr: "Cœur Noble",
},
effect: {
en: "Each of this Pokémon's attacks does 50 more damage to Darkness Pokémon (before applying Weakness and Resistance).",
fr: "Chaque attaque de ce Pokémon inflige 50 dégâts supplémentaires aux Pokémon Darkness (avant application de la Faiblesse et de la Résistance).",
},
},
],
attacks: [
{
cost: [
"Fighting",
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Crushing Blow",
fr: "Coup Écrasant",
},
effect: {
en: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon.",
fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Défenseur.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 4,
}
export default card