mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat: Add Scarlet & violet three first sets (#446)
Some checks failed
Build / build (push) Failing after 59s
Some checks failed
Build / build (push) Failing after 59s
This commit is contained in:
72
data/Scarlet & Violet/Paldea Evolved/170.ts
Normal file
72
data/Scarlet & Violet/Paldea Evolved/170.ts
Normal file
@ -0,0 +1,72 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldea Evolved"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Flamenroule",
|
||||
en: "Flamigo",
|
||||
es: "Flamigo",
|
||||
it: "Flamigo",
|
||||
pt: "Flamigo",
|
||||
de: "Flaminkno"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
fr: "Instanta-Nuée",
|
||||
en: "Insta-Flock",
|
||||
es: "Instabandada",
|
||||
it: "Frotta Istantanea",
|
||||
pt: "Bando Instantâneo",
|
||||
de: "Sofort-Schwarm"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez chercher dans votre deck jusqu'à 3 Flamenroule, les montrer, puis les ajouter à votre main. Mélangez ensuite votre deck.",
|
||||
en: "When you play this Pokémon from your hand onto your Bench during your turn, you may search your deck for up to 3 Flamigo, reveal them, and put them into your hand. Then, shuffle your deck.",
|
||||
es: "Cuando juegas este Pokémon de tu mano a tu Banca durante tu turno, puedes buscar en tu baraja hasta 3 Flamigo, enseñarlos y ponerlos en tu mano. Después, baraja las cartas de tu baraja.",
|
||||
it: "Quando giochi questo Pokémon dalla tua mano e lo metti in panchina durante il tuo turno, puoi cercare nel tuo mazzo fino a tre Flamigo, mostrarli e aggiungerli alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
||||
pt: "Quando você jogar este Pokémon da sua mão para o seu Banco durante o seu turno, você poderá procurar por até 3 Flamigo no seu baralho, revelá-los e colocá-los na sua mão. Em seguida, embaralhe o seu baralho.",
|
||||
de: "Wenn du dieses Pokémon während deines Zuges aus deiner Hand auf deine Bank spielst, kannst du dein Deck nach bis zu 3 Flaminkno durchsuchen, sie deinem Gegner zeigen und sie auf deine Hand nehmen. Mische anschließend dein Deck."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Ailes Unies",
|
||||
en: "United Wings",
|
||||
es: "Alas Unidas",
|
||||
it: "Ali Unite",
|
||||
pt: "União Alada",
|
||||
de: "Vereinte Schwingen"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Cette attaque inflige 20 dégâts pour chaque Pokémon dans votre pile de défausse ayant l'attaque Ailes Unies.",
|
||||
en: "This attack does 20 damage for each Pokémon in your discard pile that has the United Wings attack.",
|
||||
es: "Este ataque hace 20 puntos de daño por cada Pokémon en tu pila de descartes que tenga el ataque Alas Unidas.",
|
||||
it: "Questo attacco infligge 20 danni per ogni Pokémon nella tua pila degli scarti che ha l'attacco Ali Unite.",
|
||||
pt: "Este ataque causa 20 pontos de dano para cada Pokémon na sua pilha de descarte que tiver o ataque União Alada.",
|
||||
de: "Diese Attacke fügt für jedes Pokémon in deinem Ablagestapel, das die Attacke Vereinte Schwingen hat, 20 Schadenspunkte zu."
|
||||
},
|
||||
|
||||
damage: "20×"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user