1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-12 20:07:51 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

74 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
},
name: {
en: "Jumpluff",
fr: "Cotovol",
es: "Jumpluff",
it: "Jumpluff",
pt: "Jumpluff",
de: "Papungha"
},
rarity: "Rare",
category: "Pokemon",
hp: 90,
types: ["Grass"],
stage: "Stage2",
illustrator: "Tika Matsuno",
abilities: [{
type: "Ability",
name: {
en: "Fluffy Barrage",
fr: "Offensive Douillette",
es: "Ráfaga Sedosa",
it: "Offensiva Morbida",
pt: "Fluffy Barrage",
de: "Flauschige Offensive"
},
effect: {
en: "This Pokémon may attack twice each turn. If the first attack Knocks Out your opponents Active Pokémon, you may attack again after your opponent chooses a new Active Pokémon.",
fr: "Ce Pokémon peut attaquer deux fois par tour. Si la première attaque met K.O. le Pokémon Actif de votre adversaire, vous pouvez encore attaquer après que votre adversaire a choisi un nouveau Pokémon Actif.",
es: "Este Pokémon puede atacar 2 veces cada turno. Si el primer ataque deja Fuera de Combate al Pokémon Activo de tu rival, puedes atacar otra vez después de que tu rival elija un nuevo Pokémon Activo.",
it: "Questo Pokémon può attaccare due volte per turno. Se il primo attacco mette KO il Pokémon attivo del tuo avversario, puoi attaccare di nuovo dopo che il tuo avversario ha scelto un nuovo Pokémon attivo.",
pt: "This Pokémon may attack twice each turn. If the first attack Knocks Out your opponents Active Pokémon, you may attack again after your opponent chooses a new Active Pokémon.",
de: "Dieses Pokémon kann während jedes Zuges zweimal angreifen. Falls die erste Attacke das Aktive Pokémon deines Gegners kampfunfähig macht, kannst du erneut angreifen, nachdem dein Gegner ein neues Aktives Pokémon gewählt hat."
}
}],
attacks: [{
name: {
en: "Spinning Attack",
fr: "Attaque Tournante",
es: "Ataque Giratorio",
it: "Attacco Rotante",
pt: "Spinning Attack",
de: "Rundumangriff"
},
damage: 60,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 0
}
export default card