mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
50 lines
816 B
TypeScript
50 lines
816 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Canarticho de Galar",
|
||
en: "Galarian Farfetch’d"
|
||
},
|
||
|
||
illustrator: "Kagemaru Himeno",
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
hp: 80,
|
||
types: ["Fighting"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Éclate-Roc",
|
||
en: "Rock Smash"
|
||
},
|
||
|
||
effect: {
|
||
fr: "Lancez une pièce. Si c’est face, cette attaque inflige 30 dégâts supplémentaires.",
|
||
en: "Flip a coin. If heads, this attack does 30 more damage."
|
||
},
|
||
|
||
damage: "10+",
|
||
cost: ["Fighting"]
|
||
}, {
|
||
name: {
|
||
fr: "Transpercement",
|
||
en: "Pierce"
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card |