1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

92 lines
1.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 '../Unleashed'
const card: Card = {
name: {
en: "Suicune & Entei LEGEND",
fr: "Suicune & Entei LÉGENDE (bas)",
de: "Suicune & Entei LEGENDE"
},
illustrator: "Shinji Higuchi + Sachiko Eba",
rarity: "LEGEND",
category: "Pokemon",
set: Set,
dexId: [
244,
],
hp: 160,
types: [
"Water",
"Fire",
],
suffix: "Legend",
attacks: [
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Torrent Blade",
fr: "Croc torrentiel",
de: "Schwallfang"
},
effect: {
en: "Return 2 Water Energy attached to Suicune & Entei LEGEND to your hand. Choose one of your opponents Benched Pokémon. This attack does 100 damage to that Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Reprenez dans votre main 2 cartes Énergie Water attachées à Suicune & Entei LÉGENDE. Cette attaque inflige 100 dégâts à l'un des Pokémon se trouvant sur le Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
de: "Nimm 2 -Energiekarten, die an Suicune & Entei-LEGENDE angelegt sind, zurück auf deine Hand. Dieser Angriff fügt 1 Pokémon auf der Bank deines Gegners 100 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Bursting Inferno",
fr: "Enfer explosif",
de: "Flammendes Inferno"
},
effect: {
en: "The Defending Pokémon is now Burned.",
fr: "Le Pokémon Défenseur est maintenant Brûlé.",
de: "Das Verteidigende Pokémon ist jetzt verbrannt."
},
damage: 80,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
{
type: "Water",
value: "×2"
},
],
retreat: 1,
stage: "Basic",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card