1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 10:17:50 +00:00
Florian Bouillon dc4d1bd6cb
Fix HeartGold SoulSilver datas (#73)
* Update

Signed-off-by: Avior <github@avior.me>

* Update datas

Signed-off-by: Avior <github@avior.me>

* Finished fix

Signed-off-by: Avior <github@avior.me>

* Updated some more

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Some more updates

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-09-29 21:43:33 +00:00

87 lines
1.4 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 '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Persian",
fr: "Persian",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
53,
],
hp: 80,
types: [
"Colorless",
],
evolveFrom: {
en: "Meowth",
fr: "Miaouss",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Sharpen Claws",
fr: "Affûtage des griffes",
},
effect: {
en: "Flip 3 coins. For each heads, discard a card from your opponents hand without looking.",
fr: "Lancez 3 pièces. Pour chaque face, défaussez une carte de la main de votre adversaire sans la regarder.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Sneaky Attack",
fr: "Coup Bas",
},
effect: {
en: "If Persian has any Darkness Energy attached to it, this attack does 30 damage plus 30 more damage.",
fr: "Si des cartes Énergie Darkness sont attachées à Persian, cette attaque inflige 30 dégâts plus 30 dégâts supplémentaires.",
},
damage: "30+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
description: {
en: "Its lithe muscles allow it to walk without making a sound. It attacks in an instant."
},
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card