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
54 lines
1.1 KiB
TypeScript
54 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Hexadron",
|
||
en: "Falinks"
|
||
},
|
||
|
||
illustrator: "Kouki Saitou",
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
hp: 90,
|
||
types: ["Fighting"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Appel à la Famille",
|
||
en: "Call for Family"
|
||
},
|
||
|
||
effect: {
|
||
fr: "Cherchez jusqu’à 2 Pokémon de base dans votre deck et placez-les sur votre Banc. Mélangez ensuite votre deck.",
|
||
en: "Search your deck for up to 2 Basic Pokémon and put them onto your Bench. Then, shuffle your deck."
|
||
},
|
||
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
fr: "Attaque de Groupe",
|
||
en: "Team Attack"
|
||
},
|
||
|
||
effect: {
|
||
fr: "Cette attaque inflige 30 dégâts pour chacun de vos Pokémon de Banc ayant « Hexadron » dans son nom.",
|
||
en: "This attack does 30 damage for each of your Benched Pokémon that has \"Falinks\" in its name."
|
||
},
|
||
|
||
damage: "30×",
|
||
cost: ["Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card |