1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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
1.9 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 '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Tapu Fini",
fr: "Tokopisco",
es: "Tapu Fini",
it: "Tapu Fini",
pt: "Tapu Fini",
de: "Kapu-Kime"
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
hp: 120,
types: ["Water"],
attacks: [{
name: {
en: "Smash Turn",
fr: "Tour Fracassant",
es: "Golpe Giro",
it: "Girata Distruttiva",
pt: "Virada Esmagadora",
de: "Abdrehender Schmetterer"
},
effect: {
en: "You may switch this Pokémon with 1 of your Benched Pokémon.",
fr: "Vous pouvez échanger ce Pokémon contre lun de vos Pokémon de Banc.",
es: "Puedes cambiar este Pokémon por 1 de tus Pokémon en Banca.",
it: "Puoi scambiare questo Pokémon con uno della tua panchina.",
pt: "Você pode trocar este Pokémon por 1 dos seus Pokémon no Banco.",
de: "Du kannst dieses Pokémon gegen 1 Pokémon auf deiner Bank austauschen."
},
damage: 30,
cost: ["Water"]
}, {
name: {
en: "Ocean Loop",
fr: "Boucle Océanique",
es: "Bucle Oceánico",
it: "Circuito Oceanico",
pt: "Loop Oceânico",
de: "Meereskreislauf"
},
effect: {
en: "Put an Energy attached to this Pokémon into your hand.",
fr: "Ajoutez à votre main une Énergie attachée à ce Pokémon.",
es: "Pon 1 Energía unida a este Pokémon en tu mano.",
it: "Prendi unEnergia assegnata a questo Pokémon e aggiungila alle carte che hai in mano.",
pt: "Coloque 1 Energia ligada a este Pokémon na sua mão.",
de: "Nimm 1 an dieses Pokémon angelegte Energie auf deine Hand."
},
damage: 120,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "E",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card