1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

104 lines
1.7 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 '../Unleashed'
const card: Card = {
name: {
en: "Tyranitar",
fr: "Tyranocif",
de: "Despotar"
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
248,
],
hp: 140,
types: [
"Darkness",
],
evolveFrom: {
en: "Pupitar",
fr: "Ymphect",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Tail Crush",
fr: "Destruqueue",
de: "Zerquetschender Schweif"
},
effect: {
en: "Flip a coin. If heads, this attack does 40 damage plus 20 more damage.",
fr: "Lancez une pièce. Si cest face, cette attaque inflige 40 dégâts plus 20 dégâts supplémentaires.",
de: "Wirf eine Münze. Bei \"Kopf\" fügt dieser Angriff 40 Schadenspunkte plus 20 weitere Schadenspunkte zu."
},
damage: "40+",
},
{
cost: [
"Darkness",
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Hyper Beam",
fr: "Ultralaser",
de: "Hyperstrahl"
},
effect: {
en: "Discard an Energy card attached to the Defending Pokémon.",
fr: "Défaussez une carte Énergie attachée au Pokémon Défenseur.",
de: "Lege eine Energiekarte, die am Verteidigenden Pokémon angelegt ist, auf den Ablagestapel deines Gegners."
},
damage: 80,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 3,
description: {
en: "Extremely strong, it can change the landscape. It has an insolent nature that makes it not care about others."
},
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card