mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
67 lines
1.5 KiB
TypeScript
67 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Battle Styles'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Falinks",
|
||
fr: "Hexadron",
|
||
es: "Falinks",
|
||
it: "Falinks",
|
||
pt: "Falinks",
|
||
de: "Legios"
|
||
},
|
||
|
||
illustrator: "Hasuno",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
hp: 110,
|
||
types: ["Fighting"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Rapid Strike Squad",
|
||
fr: "Brigade à Mille Poings",
|
||
es: "Escuadrón Golpe Fluido",
|
||
it: "Squadra Colpo Rapido",
|
||
pt: "Esquadrão Golpe Fluido",
|
||
de: "Fließender-Angriff-Trupp"
|
||
},
|
||
|
||
effect: {
|
||
en: "This attack does 20 damage for each of your Rapid Strike Pokémon in play.",
|
||
fr: "Cette attaque inflige 20 dégâts pour chacun de vos Pokémon Mille Poings en jeu.",
|
||
es: "Este ataque hace 20 puntos de daño por cada uno de tus Pokémon Golpe Fluido en juego.",
|
||
it: "Questo attacco infligge 20 danni per ogni tuo Pokémon Colpo Rapido in gioco.",
|
||
pt: "Este ataque causa 20 pontos de dano para cada um dos seus Pokémon Golpe Fluido em jogo.",
|
||
de: "Diese Attacke fügt für jedes deiner Fließender-Angriff-Pokémon im Spiel 20 Schadenspunkte zu."
|
||
},
|
||
|
||
damage: "20×",
|
||
cost: ["Fighting", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "E",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "The six of them work together as one Pokémon. Teamwork is also their battle strategy, and they constantly change their formation as they fight."
|
||
}
|
||
}
|
||
|
||
export default card |