mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
83 lines
2.2 KiB
TypeScript
83 lines
2.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Dragons Exalted'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Ninetales",
|
||
fr: "Feunard",
|
||
es: "Ninetales",
|
||
it: "Ninetales",
|
||
pt: "Ninetales",
|
||
de: "Vulnona"
|
||
},
|
||
illustrator: "Hideaki Hakozaki",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
38,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Fire",
|
||
],
|
||
evolveFrom: {
|
||
en: "Vulpix",
|
||
fr: "Goupix",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Ability",
|
||
name: {
|
||
en: "Bright Look",
|
||
fr: "Regard Alerte",
|
||
es: "Mirada Alerta",
|
||
it: "Brillasguardo",
|
||
pt: "Visual Brilhante",
|
||
de: "Blendender Blick"
|
||
},
|
||
effect: {
|
||
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon, you may switch 1 of your opponent’s Benched Pokémon with his or her Active Pokémon.",
|
||
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer 1 de vos Pokémon, vous pouvez échanger 1 des Pokémon de Banc de votre adversaire avec son Pokémon Actif.",
|
||
es: "Cuando juegues este Pokémon de tu mano para hacer evolucionar a 1 de tus Pokémon, puedes cambiar a 1 de los Pokémon en Banca de tu rival por su Pokémon Activo.",
|
||
it: "Quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon, puoi scambiare uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon attivo.",
|
||
pt: "Ao jogar este Pokémon da sua mão para evoluir 1 dos seus Pokémon, você pode trocar 1 dos Pokémon no Banco do seu oponente pelo Pokémon Ativo dele ou dela.",
|
||
de: "Wenn du dieses Pokémon von deiner Hand spielst, um 1 deiner Pokémon zu entwickeln, kannst du 1 Pokémon auf der Bank deines Gegners gegen sein Aktives Pokémon austauschen."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
],
|
||
name: {
|
||
en: "Hexed Flame",
|
||
fr: "Flamme Maudite",
|
||
},
|
||
effect: {
|
||
en: "Does 50 more damage for each Special Condition affecting the Defending Pokémon.",
|
||
fr: "Inflige 50 dégâts supplémentaires pour chaque État Spécial affectant le Pokémon Défenseur.",
|
||
},
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|