1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

103 lines
2.8 KiB
TypeScript
Raw Permalink 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 '../Team Up'
const card: Card = {
name: {
en: "Tyranitar",
fr: "Tyranocif",
es: "Tyranitar",
it: "Tyranitar",
pt: "Tyranitar",
de: "Despotar"
},
illustrator: "Hasuno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
248,
],
hp: 170,
types: [
"Darkness",
],
evolveFrom: {
en: "Pupitar",
fr: "Ymphect",
},
stage: "Stage2",
attacks: [
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Spinning Tail",
fr: "Queue Tournante",
es: "Cola Giratoria",
it: "Coda Rotante",
pt: "Cauda Giratória",
de: "Kreisender Schweif"
},
effect: {
en: "This attack does 30 damage to each of your opponents Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 30 dégâts à chacun des Pokémon de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
es: "Este ataque hace 30 puntos de daño a cada uno de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
it: "Questo attacco infligge 30 danni a ciascuno dei Pokémon del tuo avversario. Ricorda che non puoi applicare debolezza e resistenza ai Pokémon in panchina.",
pt: "Este ataque causa 30 pontos de dano a cada um dos Pokémon do seu oponente (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
de: "Diese Attacke fügt jedem Pokémon deines Gegners 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Bite Off",
fr: "Arrachage",
es: "Despedazar",
it: "Addentare",
pt: "Mordida Estraçalhante",
de: "Abbeißen"
},
effect: {
en: "If your opponents Active Pokémon is a Pokémon-GX or a Pokémon-EX, this attack does 100 more damage.",
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-GX ou un Pokémon-EX, cette attaque inflige 100 dégâts supplémentaires.",
es: "Si el Pokémon Activo de tu rival es un Pokémon-GX o un Pokémon-EX, este ataque hace 100 puntos de daño más.",
it: "Se il Pokémon attivo del tuo avversario è un Pokémon-GX o un Pokémon-EX, questo attacco infligge 100 danni in più.",
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon-GX ou um Pokémon-EX, este ataque causará 100 pontos de dano a mais.",
de: "Wenn das Aktive Pokémon deines Gegners ein Pokémon-GX oder ein Pokémon-EX ist, fügt diese Attacke 100 Schadenspunkte mehr zu."
},
damage: "130+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 4,
}
export default card