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

70 lines
1.1 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 '../Lost Thunder'
const card: Card = {
name: {
en: "Smeargle",
fr: "Queulorior",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
235,
],
hp: 80,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Stunning Likeness",
fr: "Ressemblance Frappante",
},
effect: {
en: "Your opponent reveals their hand. You may use the effect of a Supporter card you find there as the effect of this attack.",
fr: "Votre adversaire dévoile sa main. Vous pouvez utiliser leffet dune carte Supporter que vous y trouvez en tant queffet de cette attaque.",
},
},
{
cost: [
"Colorless",
],
name: {
en: "Tail Smash",
fr: "Éclate-Queue",
},
effect: {
en: "Flip a coin. If tails, this attack does nothing.",
fr: "Lancez une pièce. Si cest pile, cette attaque ne fait rien.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
}
export default card