1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49:19 +00:00

feat: Add Astral Radiance (#305)

This commit is contained in:
2022-05-27 01:49:58 +02:00
committed by GitHub
parent a006f77bf4
commit 91865f7f02
247 changed files with 16466 additions and 0 deletions

View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../Astral Radiance"
const card: Card = {
set: Set,
name: {
en: "Falinks",
fr: "Hexadron",
es: "Falinks",
it: "Falinks",
pt: "Falinks",
de: "Legios"
},
rarity: "Rare",
category: "Pokemon",
hp: 110,
types: ["Fighting"],
stage: "Basic",
attacks: [{
cost: ["Fighting", "Colorless"],
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×"
}],
retreat: 2,
regulationMark: "E",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card