1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

82 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Tapu Bulu",
fr: "Tokotoro",
es: "Tapu Bulu",
it: "Tapu Bulu",
pt: "Tapu Bulu",
de: "Kapu-Toro"
},
illustrator: "Ryota Murayama",
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Grass"],
attacks: [{
name: {
en: "Push Down",
fr: "Recul",
es: "Oprimir",
it: "Spintonare",
pt: "Rebaixar",
de: "Runterdrücken"
},
effect: {
en: "Your opponent switches their Active Pokémon with 1 of their Benched Pokémon.",
fr: "Votre adversaire échange son Pokémon Actif contre lun de ses Pokémon de Banc.",
es: "Tu rival cambia su Pokémon Activo por 1 de sus Pokémon en Banca.",
it: "Il tuo avversario scambia il suo Pokémon attivo con uno della sua panchina.",
pt: "Seu oponente troca o próprio Pokémon Ativo por 1 dos Pokémon no Banco dele(a).",
de: "Dein Gegner tauscht sein Aktives Pokémon gegen 1 Pokémon auf seiner Bank aus."
},
damage: 20,
cost: ["Grass"]
}, {
name: {
en: "Natures Judgment",
fr: "Jugement de la Nature",
es: "Sentencia de la Naturaleza",
it: "Giudizio della Natura",
pt: "Julgamento da Natureza",
de: "Gebot der Natur"
},
effect: {
en: "You may discard all Energy from this Pokémon. If you do, this attack does 80 more damage.",
fr: "Vous pouvez défausser toute lÉnergie de ce Pokémon. Dans ce cas, cette attaque inflige 80 dégâts supplémentaires.",
es: "Puedes descartar todas las Energías de este Pokémon. Si lo haces, este ataque hace 80 puntos de daño más.",
it: "Puoi scartare tutte le Energie da questo Pokémon. Se lo fai, questo attacco infligge 80 danni in più.",
pt: "Você pode descartar todas as Energias deste Pokémon. Se fizer isto, este ataque causará 80 pontos de dano a mais.",
de: "Du kannst alle Energien von diesem Pokémon auf deinen Ablagestapel legen. Wenn du das machst, fügt diese Attacke 80 Schadenspunkte mehr zu."
},
damage: "80+",
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "E",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card