mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
47 lines
776 B
TypeScript
47 lines
776 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Ponyta de Galar",
|
||
en: "Galarian Ponyta"
|
||
},
|
||
|
||
illustrator: "Sanosuke Sakuma",
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Psychic"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Choc Mental",
|
||
en: "Psy Bolt"
|
||
},
|
||
|
||
effect: {
|
||
fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||
en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed."
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Psychic"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card |