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

75 lines
1.3 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 '../Team Up'
const card: Card = {
name: {
en: "Persian",
fr: "Persian",
},
illustrator: "Yukiko Baba",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
53,
],
hp: 100,
types: [
"Colorless",
],
evolveFrom: {
en: "Meowth",
fr: "Miaouss",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Make 'Em Pay",
fr: "Ça Va Payer",
},
effect: {
en: "If your opponent has 4 or more cards in their hand, they reveal their hand. Discard cards you find there until your opponent has exactly 4 cards in their hand.",
fr: "Si votre adversaire a 4 cartes ou plus dans sa main, il montre sa main. Défaussez des cartes que vous y trouvez jusquà ce quil reste exactement 4 cartes dans la main de votre adversaire.",
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Sharp Claws",
fr: "Griffes Affûtées",
},
effect: {
en: "Flip a coin. If heads, this attack does 60 more damage.",
fr: "Lancez une pièce. Si cest face, cette attaque inflige 60 dégâts supplémentaires.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
}
export default card