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

93 lines
2.9 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 '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Hatterene",
fr: "Sorcilence",
es: "Hatterene",
it: "Hatterene",
pt: "Hatterene",
de: "Silembrim"
},
illustrator: "chibi",
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
evolveFrom: {
en: "Hattrem",
fr: "Chapotus"
},
abilities: [{
type: "Ability",
name: {
en: "Witch Rondo",
fr: "Rondo Envoûtant",
es: "Rondó de Hechicera",
it: "Stregarondò",
pt: "Cântico Bruxo",
de: "Hexenrondo"
},
effect: {
en: "Once during your turn, you may switch your Active Pokémon with 1 of your Benched Pokémon. If you do, your opponent switches their Active Pokémon with 1 of their Benched Pokémon.",
fr: "Une fois pendant votre tour, vous pouvez échanger votre Pokémon Actif contre lun de vos Pokémon de Banc. Dans ce cas, votre adversaire échange son Pokémon Actif contre lun de ses Pokémon de Banc.",
es: "Una vez durante tu turno, puedes cambiar tu Pokémon Activo por 1 de tus Pokémon en Banca. Si lo haces, tu rival cambia su Pokémon Activo por 1 de sus Pokémon en Banca.",
it: "Una sola volta durante il tuo turno, puoi scambiare il tuo Pokémon attivo con uno della tua panchina. Se lo fai, il tuo avversario scambia il suo Pokémon attivo con uno della sua panchina.",
pt: "Uma vez durante o seu turno, você poderá trocar o seu Pokémon Ativo por 1 dos seus Pokémon no Banco. Se fizer isto, o seu oponente trocará o próprio Pokémon Ativo por 1 dos Pokémon no Banco dele(a).",
de: "Einmal während deines Zuges kannst du dein Aktives Pokémon gegen 1 Pokémon auf deiner Bank austauschen. Wenn du das machst, tauscht dein Gegner sein Aktives Pokémon gegen 1 Pokémon auf seiner Bank aus."
}
}],
attacks: [{
name: {
en: "Psychic",
fr: "Psyko",
es: "Psíquico",
it: "Psichico",
pt: "Psíquico",
de: "Psychokinese"
},
effect: {
en: "This attack does 50 more damage for each Energy attached to your opponents Active Pokémon.",
fr: "Cette attaque inflige 50 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Actif de votre adversaire.",
es: "Este ataque hace 50 puntos de daño más por cada Energía unida al Pokémon Activo de tu rival.",
it: "Questo attacco infligge 50 danni in più per ogni Energia assegnata al Pokémon attivo del tuo avversario.",
pt: "Este ataque causa 50 pontos de dano a mais para cada Energia ligada ao Pokémon Ativo do seu oponente.",
de: "Diese Attacke fügt für jede an das Aktive Pokémon deines Gegners angelegte Energie 50 Schadenspunkte mehr zu."
},
damage: "30+",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "E",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card