mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
feat: Add Brilliant Stars (#250)
This commit is contained in:
parent
7a21171219
commit
7a5000c2f3
25
data/Sword & Shield/Brilliant Stars.ts
Normal file
25
data/Sword & Shield/Brilliant Stars.ts
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
import { Set } from '../../interfaces'
|
||||||
|
import serie from '../Sword & Shield'
|
||||||
|
|
||||||
|
const set: Set = {
|
||||||
|
id: "swsh9",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Brilliant Stars",
|
||||||
|
fr: "Stars Étincelantes",
|
||||||
|
es: "Astros Brillantes",
|
||||||
|
it: "Astri Lucenti",
|
||||||
|
de: "Strahlende Sterne",
|
||||||
|
pt: "Astros Cintilantes"
|
||||||
|
},
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
|
cardCount: {
|
||||||
|
official: 172
|
||||||
|
},
|
||||||
|
|
||||||
|
releaseDate: "2021-02-25"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default set
|
54
data/Sword & Shield/Brilliant Stars/001.ts
Normal file
54
data/Sword & Shield/Brilliant Stars/001.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Exeggcute",
|
||||||
|
fr: "Noeunoeuf",
|
||||||
|
es: "Exeggcute",
|
||||||
|
it: "Exeggcute",
|
||||||
|
pt: "Exeggcute",
|
||||||
|
de: "Owei"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Ram",
|
||||||
|
fr: "Collision",
|
||||||
|
es: "Apisonar",
|
||||||
|
it: "Carica",
|
||||||
|
pt: "Aríete",
|
||||||
|
de: "Ramme"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10
|
||||||
|
}, {
|
||||||
|
cost: ["Grass", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Seed Bomb",
|
||||||
|
fr: "Canon Graine",
|
||||||
|
es: "Bomba Germen",
|
||||||
|
it: "Semebomba",
|
||||||
|
pt: "Bomba de Sementes",
|
||||||
|
de: "Samenbomben"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/002.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/002.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Exeggutor",
|
||||||
|
fr: "Noadkoko",
|
||||||
|
es: "Exeggutor",
|
||||||
|
it: "Exeggutor",
|
||||||
|
pt: "Exeggutor",
|
||||||
|
de: "Kokowei"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 140,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Exeggcute",
|
||||||
|
fr: "Noeunoeuf",
|
||||||
|
es: "Exeggcute",
|
||||||
|
it: "Exeggcute",
|
||||||
|
pt: "Exeggcute",
|
||||||
|
de: "Owei"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Mega Drain",
|
||||||
|
fr: "Méga-Sangsue",
|
||||||
|
es: "Megaagotar",
|
||||||
|
it: "Megassorbimento",
|
||||||
|
pt: "Megadreno",
|
||||||
|
de: "Megasauger"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Heal 30 damage from this Pokémon.",
|
||||||
|
fr: "Soignez 30 dégâts de ce Pokémon.",
|
||||||
|
es: "Cura 30 puntos de daño a este Pokémon.",
|
||||||
|
it: "Cura questo Pokémon da 30 danni.",
|
||||||
|
pt: "Cure 30 pontos de dano deste Pokémon.",
|
||||||
|
de: "Heile 30 Schadenspunkte bei diesem Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 70
|
||||||
|
}, {
|
||||||
|
cost: ["Grass", "Colorless", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Seed Bomb",
|
||||||
|
fr: "Canon Graine",
|
||||||
|
es: "Bomba Germen",
|
||||||
|
it: "Semebomba",
|
||||||
|
pt: "Bomba de Sementes",
|
||||||
|
de: "Samenbomben"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 130
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
41
data/Sword & Shield/Brilliant Stars/003.ts
Normal file
41
data/Sword & Shield/Brilliant Stars/003.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Shroomish",
|
||||||
|
fr: "Balignon",
|
||||||
|
es: "Shroomish",
|
||||||
|
it: "Shroomish",
|
||||||
|
pt: "Shroomish",
|
||||||
|
de: "Knilz"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Headbutt",
|
||||||
|
fr: "Coup d'Boule",
|
||||||
|
es: "Golpe Cabeza",
|
||||||
|
it: "Bottintesta",
|
||||||
|
pt: "Cabeçada",
|
||||||
|
de: "Kopfnuss"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
82
data/Sword & Shield/Brilliant Stars/004.ts
Normal file
82
data/Sword & Shield/Brilliant Stars/004.ts
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Breloom",
|
||||||
|
fr: "Chapignon",
|
||||||
|
es: "Breloom",
|
||||||
|
it: "Breloom",
|
||||||
|
pt: "Breloom",
|
||||||
|
de: "Kapilz"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 110,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Shroomish",
|
||||||
|
fr: "Balignon",
|
||||||
|
es: "Shroomish",
|
||||||
|
it: "Shroomish",
|
||||||
|
pt: "Shroomish",
|
||||||
|
de: "Knilz"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Spore Ball",
|
||||||
|
fr: "Boule de Spores",
|
||||||
|
es: "Bola Espora",
|
||||||
|
it: "Pallaspore",
|
||||||
|
pt: "Bola de Esporos",
|
||||||
|
de: "Sporenbällchen"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Your opponent's Active Pokémon is now Asleep.",
|
||||||
|
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
|
||||||
|
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
|
||||||
|
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
|
||||||
|
pt: "O Pokémon Ativo do seu oponente agora está Adormecido.",
|
||||||
|
de: "Das Aktive Pokémon deines Gegners schläft jetzt."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30
|
||||||
|
}, {
|
||||||
|
cost: ["Grass"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Powdery Uppercut",
|
||||||
|
fr: "Uppercut Poudreux",
|
||||||
|
es: "Gancho Pulverizador",
|
||||||
|
it: "Montante Pulviscolare",
|
||||||
|
pt: "Gancho Espoderoso",
|
||||||
|
de: "Pudriger Kinnhaken"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "You can use this attack only if this Pokémon used Spore Ball during your last turn.",
|
||||||
|
fr: "Vous ne pouvez utiliser cette attaque que si ce Pokémon a utilisé Boule de Spores pendant votre dernier tour.",
|
||||||
|
es: "Puedes usar este ataque solo si este Pokémon usó Bola Espora durante tu último turno.",
|
||||||
|
it: "Puoi usare questo attacco solo se questo Pokémon ha usato Pallaspore durante il tuo ultimo turno.",
|
||||||
|
pt: "Você só poderá usar este ataque se este Pokémon usou Bola de Esporos durante o seu último turno.",
|
||||||
|
de: "Du kannst diese Attacke nur einsetzen, wenn dieses Pokémon während deines letzten Zuges Sporenbällchen eingesetzt hat."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 130
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
63
data/Sword & Shield/Brilliant Stars/005.ts
Normal file
63
data/Sword & Shield/Brilliant Stars/005.ts
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Tropius",
|
||||||
|
fr: "Tropius",
|
||||||
|
es: "Tropius",
|
||||||
|
it: "Tropius",
|
||||||
|
pt: "Tropius",
|
||||||
|
de: "Tropius"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 110,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Curative Bower",
|
||||||
|
fr: "Charmille Curative",
|
||||||
|
es: "Ramaje Curativo",
|
||||||
|
it: "Curapergola",
|
||||||
|
pt: "Recanto Curativo",
|
||||||
|
de: "Heilende Laube"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "All of your Pokémon that have Grass Energy attached can't be Confused, and if they are already Confused, they recover from that Special Condition.",
|
||||||
|
fr: "Tous vos Pokémon auxquels de l'Énergie Grass est attachée ne peuvent pas être Confus, et s'ils le sont déjà, ils guérissent de cet État Spécial.",
|
||||||
|
es: "Ninguno de tus Pokémon que tenga alguna Energía Grass unida a él puede pasar a estar Confundido, y, si ya está Confundido, se recupera de esa Condición Especial.",
|
||||||
|
it: "Tutti i tuoi Pokémon che hanno delle Energie Grass assegnate non possono venire confusi e, se sono già confusi, guariscono da quella condizione speciale.",
|
||||||
|
pt: "Todos os seus Pokémon que tenham Energia Grass ligada a eles não podem ficar Confusos, e se eles já estiverem Confusos, eles se recuperarão daquela Condição Especial.",
|
||||||
|
de: "Alle deine Pokémon, an die Grass-Energie angelegt ist, können nicht verwirrt werden, und wenn sie bereits verwirrt sind, erholen sie sich von jenem Speziellen Zustand."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass", "Grass", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Slicing Blade",
|
||||||
|
fr: "Lame Tranchante",
|
||||||
|
es: "Cuchilla Cortante",
|
||||||
|
it: "Affettalama",
|
||||||
|
pt: "Lâmina Fatiante",
|
||||||
|
de: "Schwertschneide"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 100
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Brilliant Stars/006.ts
Normal file
54
data/Sword & Shield/Brilliant Stars/006.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Turtwig",
|
||||||
|
fr: "Tortipouss",
|
||||||
|
es: "Turtwig",
|
||||||
|
it: "Turtwig",
|
||||||
|
pt: "Turtwig",
|
||||||
|
de: "Chelast"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bite",
|
||||||
|
fr: "Morsure",
|
||||||
|
es: "Mordisco",
|
||||||
|
it: "Morso",
|
||||||
|
pt: "Mordida",
|
||||||
|
de: "Biss"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10
|
||||||
|
}, {
|
||||||
|
cost: ["Grass", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Headbutt Bounce",
|
||||||
|
fr: "Culbute Surprise",
|
||||||
|
es: "Bote Cabezazo",
|
||||||
|
it: "Rimbalzo Bottintesta",
|
||||||
|
pt: "Cabeçada Ricochete",
|
||||||
|
de: "Abrupter Kopfstoß"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/007.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/007.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Grotle",
|
||||||
|
fr: "Boskara",
|
||||||
|
es: "Grotle",
|
||||||
|
it: "Grotle",
|
||||||
|
pt: "Grotle",
|
||||||
|
de: "Chelcarain"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 100,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Turtwig",
|
||||||
|
fr: "Tortipouss",
|
||||||
|
es: "Turtwig",
|
||||||
|
it: "Turtwig",
|
||||||
|
pt: "Turtwig",
|
||||||
|
de: "Chelast"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Sun-Drenched Shell",
|
||||||
|
fr: "Carapace Ensoleillée",
|
||||||
|
es: "Caparazón Soleado",
|
||||||
|
it: "Assolaguscio",
|
||||||
|
pt: "Casco Ensolarado",
|
||||||
|
de: "Sonnendurchtränkter Panzer"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Once during your turn, you may search your deck for a Grass Pokémon, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||||||
|
fr: "Une fois pendant votre tour, vous pouvez chercher dans votre deck un Pokémon Grass, le montrer, puis l'ajouter à votre main. Mélangez ensuite votre deck.",
|
||||||
|
es: "Una vez durante tu turno, puedes buscar en tu baraja 1 Pokémon Grass, enseñarlo y ponerlo en tu mano. Después, baraja las cartas de tu baraja.",
|
||||||
|
it: "Una sola volta durante il tuo turno, puoi cercare nel tuo mazzo un Pokémon Grass, mostrarlo e aggiungerlo alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
||||||
|
pt: "Uma vez durante o seu turno, você poderá procurar por 1 Pokémon Grass no seu baralho, revelá-lo e colocá-lo na sua mão. Em seguida, embaralhe o seu baralho.",
|
||||||
|
de: "Einmal während deines Zuges kannst du dein Deck nach 1 Grass-Pokémon durchsuchen, es deinem Gegner zeigen und auf deine Hand nehmen. Mische anschließend dein Deck."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Razor Leaf",
|
||||||
|
fr: "Tranch'Herbe",
|
||||||
|
es: "Hoja Afilada",
|
||||||
|
it: "Foglielama",
|
||||||
|
pt: "Folha Navalha",
|
||||||
|
de: "Rasierblatt"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 50
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/008.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/008.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Torterra",
|
||||||
|
fr: "Torterra",
|
||||||
|
es: "Torterra",
|
||||||
|
it: "Torterra",
|
||||||
|
pt: "Torterra",
|
||||||
|
de: "Chelterrar"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 190,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Grotle",
|
||||||
|
fr: "Boskara",
|
||||||
|
es: "Grotle",
|
||||||
|
it: "Grotle",
|
||||||
|
pt: "Grotle",
|
||||||
|
de: "Chelcarain"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage2",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Evopress",
|
||||||
|
fr: "Évopress",
|
||||||
|
es: "Evopresión",
|
||||||
|
it: "Evopressa",
|
||||||
|
pt: "Evocompressão",
|
||||||
|
de: "Evodruck"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 50 damage for each of your Evolution Pokémon in play.",
|
||||||
|
fr: "Cette attaque inflige 50 dégâts pour chacun de vos Pokémon Évolutifs en jeu.",
|
||||||
|
es: "Este ataque hace 50 puntos de daño por cada uno de tus Pokémon Evolución en juego.",
|
||||||
|
it: "Questo attacco infligge 50 danni per ogni tuo Pokémon Evoluzione in gioco.",
|
||||||
|
pt: "Este ataque causa 50 pontos de dano para cada um dos seus Pokémon de Evolução em jogo.",
|
||||||
|
de: "Diese Attacke fügt für jedes deiner Entwicklungs-Pokémon im Spiel 50 Schadenspunkte zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "50×"
|
||||||
|
}, {
|
||||||
|
cost: ["Grass", "Colorless", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Hammer In",
|
||||||
|
fr: "Enfoncement",
|
||||||
|
es: "Martillear",
|
||||||
|
it: "Martello",
|
||||||
|
pt: "Martelada",
|
||||||
|
de: "Einhämmern"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 160
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 4,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
41
data/Sword & Shield/Brilliant Stars/009.ts
Normal file
41
data/Sword & Shield/Brilliant Stars/009.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Burmy",
|
||||||
|
fr: "Cheniti",
|
||||||
|
es: "Burmy",
|
||||||
|
it: "Burmy",
|
||||||
|
pt: "Burmy",
|
||||||
|
de: "Burmy"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Hang Down",
|
||||||
|
fr: "Suspension",
|
||||||
|
es: "Prender",
|
||||||
|
it: "Tirar Giù",
|
||||||
|
pt: "Dependurar",
|
||||||
|
de: "Herunterhängen"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
82
data/Sword & Shield/Brilliant Stars/010.ts
Normal file
82
data/Sword & Shield/Brilliant Stars/010.ts
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Wormadam",
|
||||||
|
fr: "Cheniselle",
|
||||||
|
es: "Wormadam",
|
||||||
|
it: "Wormadam",
|
||||||
|
pt: "Wormadam",
|
||||||
|
de: "Burmadame"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 110,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Burmy",
|
||||||
|
fr: "Cheniti",
|
||||||
|
es: "Burmy",
|
||||||
|
it: "Burmy",
|
||||||
|
pt: "Burmy",
|
||||||
|
de: "Burmy"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Matron's Anger",
|
||||||
|
fr: "Dame Colérique",
|
||||||
|
es: "Enfado de Dama",
|
||||||
|
it: "Ira della Dama",
|
||||||
|
pt: "Fúria Matriarcal",
|
||||||
|
de: "Zorn der Dame"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 10 more damage for each Pokémon in your discard pile.",
|
||||||
|
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque Pokémon dans votre pile de défausse.",
|
||||||
|
es: "Este ataque hace 10 puntos de daño más por cada Pokémon en tu pila de descartes.",
|
||||||
|
it: "Questo attacco infligge 10 danni in più per ogni Pokémon nella tua pila degli scarti.",
|
||||||
|
pt: "Este ataque causa 10 pontos de dano a mais para cada Pokémon na sua pilha de descarte.",
|
||||||
|
de: "Diese Attacke fügt für jedes Pokémon in deinem Ablagestapel 10 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30+"
|
||||||
|
}, {
|
||||||
|
cost: ["Grass", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Leaf Drain",
|
||||||
|
fr: "Feuille Sangsue",
|
||||||
|
es: "Hoja Drenante",
|
||||||
|
it: "Assorbifoglia",
|
||||||
|
pt: "Dreno Folha",
|
||||||
|
de: "Blattsauger"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Heal 30 damage from this Pokémon.",
|
||||||
|
fr: "Soignez 30 dégâts de ce Pokémon.",
|
||||||
|
es: "Cura 30 puntos de daño a este Pokémon.",
|
||||||
|
it: "Cura questo Pokémon da 30 danni.",
|
||||||
|
pt: "Cure 30 pontos de dano deste Pokémon.",
|
||||||
|
de: "Heile 30 Schadenspunkte bei diesem Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 80
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/011.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/011.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Mothim",
|
||||||
|
fr: "Papilord",
|
||||||
|
es: "Mothim",
|
||||||
|
it: "Mothim",
|
||||||
|
pt: "Mothim",
|
||||||
|
de: "Moterpel"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 110,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Burmy",
|
||||||
|
fr: "Cheniti",
|
||||||
|
es: "Burmy",
|
||||||
|
it: "Burmy",
|
||||||
|
pt: "Burmy",
|
||||||
|
de: "Burmy"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Raid",
|
||||||
|
fr: "Razzia Obscure",
|
||||||
|
es: "Raid Oscuro",
|
||||||
|
it: "Raid",
|
||||||
|
pt: "Reide",
|
||||||
|
de: "Überfall"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If this Pokémon evolved from Burmy during this turn, this attack does 90 more damage.",
|
||||||
|
fr: "Si ce Pokémon a évolué de Cheniti pendant ce tour, cette attaque inflige 90 dégâts supplémentaires.",
|
||||||
|
es: "Si este Pokémon ha evolucionado de Burmy durante este turno, este ataque hace 90 puntos de daño más.",
|
||||||
|
it: "Se questo Pokémon si è evoluto da Burmy durante questo turno, questo attacco infligge 90 danni in più.",
|
||||||
|
pt: "Se este Pokémon evoluiu de Burmy durante este turno, este ataque causará 90 pontos de dano a mais.",
|
||||||
|
de: "Wenn sich dieses Pokémon während dieses Zuges aus Burmy entwickelt hat, fügt diese Attacke 90 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30+"
|
||||||
|
}, {
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Gust",
|
||||||
|
fr: "Tornade",
|
||||||
|
es: "Tornado",
|
||||||
|
it: "Raffica",
|
||||||
|
pt: "Lufada de Vento",
|
||||||
|
de: "Windstoß"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 80
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 0,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
63
data/Sword & Shield/Brilliant Stars/012.ts
Normal file
63
data/Sword & Shield/Brilliant Stars/012.ts
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Cherubi",
|
||||||
|
fr: "Ceribou",
|
||||||
|
es: "Cherubi",
|
||||||
|
it: "Cherubi",
|
||||||
|
pt: "Cherubi",
|
||||||
|
de: "Kikugi"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 40,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Lively Fruit",
|
||||||
|
fr: "Fruit Enjoué",
|
||||||
|
es: "Fruta Vivaracha",
|
||||||
|
it: "Fruttovispo",
|
||||||
|
pt: "Fruta Feliz",
|
||||||
|
de: "Aufpäppelnde Frucht"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Prevent all effects of attacks from your opponent's Pokémon done to this Pokémon. (Damage is not an effect.)",
|
||||||
|
fr: "Évitez tous les effets d'attaques infligés à ce Pokémon par les Pokémon de votre adversaire. (Les dégâts ne sont pas un effet.)",
|
||||||
|
es: "Evita todos los efectos de los ataques de los Pokémon de tu rival infligidos a este Pokémon. (El daño no es un efecto).",
|
||||||
|
it: "Previeni tutti gli effetti degli attacchi inflitti a questo Pokémon dai Pokémon del tuo avversario. I danni non sono un effetto.",
|
||||||
|
pt: "Previna todos os efeitos de ataques dos Pokémon do seu oponente causados a este Pokémon (dano não é um efeito).",
|
||||||
|
de: "Verhindere alle Effekte von Attacken der Pokémon deines Gegners, die diesem Pokémon zugefügt werden. (Schaden ist kein Effekt.)"
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Leafage",
|
||||||
|
fr: "Feuillage",
|
||||||
|
es: "Follaje",
|
||||||
|
it: "Fogliame",
|
||||||
|
pt: "Folhagem",
|
||||||
|
de: "Blattwerk"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "E"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
64
data/Sword & Shield/Brilliant Stars/013.ts
Normal file
64
data/Sword & Shield/Brilliant Stars/013.ts
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Shaymin V",
|
||||||
|
fr: "Shaymin V",
|
||||||
|
es: "Shaymin V",
|
||||||
|
it: "Shaymin V",
|
||||||
|
pt: "Shaymin V",
|
||||||
|
de: "Shaymin V"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 190,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
suffix: "V",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Flap",
|
||||||
|
fr: "Battement",
|
||||||
|
es: "Aleteo",
|
||||||
|
it: "Alabattito",
|
||||||
|
pt: "Asa",
|
||||||
|
de: "Flattern"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30
|
||||||
|
}, {
|
||||||
|
cost: ["Grass", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Revenge Blast",
|
||||||
|
fr: "Explo-Vengeance",
|
||||||
|
es: "Estallido Venganza",
|
||||||
|
it: "Vendicabomba",
|
||||||
|
pt: "Raio de Vingança",
|
||||||
|
de: "Rachestoß"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 40 more damage for each Prize card your opponent has taken.",
|
||||||
|
fr: "Cette attaque inflige 40 dégâts supplémentaires pour chaque carte Récompense que votre adversaire a récupérée.",
|
||||||
|
es: "Este ataque hace 40 puntos de daño más por cada carta de Premio que haya cogido tu rival.",
|
||||||
|
it: "Questo attacco infligge 40 danni in più per ogni carta Premio presa dal tuo avversario.",
|
||||||
|
pt: "Este ataque causa 40 pontos de dano a mais para cada carta de Prêmio que seu oponente pegou.",
|
||||||
|
de: "Diese Attacke fügt für jede von deinem Gegner genommene Preiskarte 40 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "60+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
61
data/Sword & Shield/Brilliant Stars/014.ts
Normal file
61
data/Sword & Shield/Brilliant Stars/014.ts
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Shaymin VSTAR",
|
||||||
|
fr: "Shaymin VSTAR",
|
||||||
|
es: "Shaymin V-ASTRO",
|
||||||
|
it: "Shaymin V ASTRO",
|
||||||
|
pt: "Shaymin V-ASTRO",
|
||||||
|
de: "Shaymin VSTAR"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 250,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Shaymin V",
|
||||||
|
fr: "Shaymin-V",
|
||||||
|
es: "Shaymin V",
|
||||||
|
it: "Shaymin-V",
|
||||||
|
pt: "Shaymin V",
|
||||||
|
de: "Shaymin-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "VSTAR",
|
||||||
|
suffix: "V",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Revenge Blast",
|
||||||
|
fr: "Explo-Vengeance",
|
||||||
|
es: "Estallido Venganza",
|
||||||
|
it: "Vendicabomba",
|
||||||
|
pt: "Raio de Vingança",
|
||||||
|
de: "Rachestoß"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 40 more damage for each Prize card your opponent has taken.",
|
||||||
|
fr: "Cette attaque inflige 40 dégâts supplémentaires pour chaque carte Récompense que votre adversaire a récupérée.",
|
||||||
|
es: "Este ataque hace 40 puntos de daño más por cada carta de Premio que haya cogido tu rival.",
|
||||||
|
it: "Questo attacco infligge 40 danni in più per ogni carta Premio presa dal tuo avversario.",
|
||||||
|
pt: "Este ataque causa 40 pontos de dano a mais para cada carta de Prêmio que seu oponente pegou.",
|
||||||
|
de: "Diese Attacke fügt für jede von deinem Gegner genommene Preiskarte 40 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "120+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
41
data/Sword & Shield/Brilliant Stars/015.ts
Normal file
41
data/Sword & Shield/Brilliant Stars/015.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Karrablast",
|
||||||
|
fr: "Carabing",
|
||||||
|
es: "Karrablast",
|
||||||
|
it: "Karrablast",
|
||||||
|
pt: "Karrablast",
|
||||||
|
de: "Laukaps"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Peck",
|
||||||
|
fr: "Picpic",
|
||||||
|
es: "Picotazo",
|
||||||
|
it: "Beccata",
|
||||||
|
pt: "Bicada",
|
||||||
|
de: "Pikser"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/016.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/016.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Zarude V",
|
||||||
|
fr: "Zarude V",
|
||||||
|
es: "Zarude V",
|
||||||
|
it: "Zarude V",
|
||||||
|
pt: "Zarude V",
|
||||||
|
de: "Zarude V"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 220,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
suffix: "V",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Leap to Leap",
|
||||||
|
fr: "Sur Saut",
|
||||||
|
es: "De Rama en Rama",
|
||||||
|
it: "Salto Doppio",
|
||||||
|
pt: "De Galho em Galho",
|
||||||
|
de: "Doppelsprung"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||||
|
fr: "Cette attaque inflige aussi 30 dégâts à l'un des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||||||
|
es: "Este ataque también hace 30 puntos de daño a 1 de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
|
||||||
|
it: "Questo attacco infligge anche 30 danni a uno dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.",
|
||||||
|
pt: "Este ataque também causa 30 pontos de dano a 1 um dos Pokémon no Banco do seu oponente (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
|
||||||
|
de: "Diese Attacke fügt auch 1 Pokémon auf der Bank deines Gegners 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30
|
||||||
|
}, {
|
||||||
|
cost: ["Grass", "Grass", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Jungle Rage",
|
||||||
|
fr: "Jungle en Furie",
|
||||||
|
es: "Furia Selvática",
|
||||||
|
it: "Giunglafuria",
|
||||||
|
pt: "Ira Selvática",
|
||||||
|
de: "Dschungelwut"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If your opponent's Active Pokémon is a Pokémon V, this attack does 120 more damage.",
|
||||||
|
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-V, cette attaque inflige 120 dégâts supplémentaires.",
|
||||||
|
es: "Si el Pokémon Activo de tu rival es un Pokémon V, este ataque hace 120 puntos de daño más.",
|
||||||
|
it: "Se il Pokémon attivo del tuo avversario è un Pokémon-V, questo attacco infligge 120 danni in più.",
|
||||||
|
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon V, este ataque causará 120 pontos de dano a mais.",
|
||||||
|
de: "Wenn das Aktive Pokémon deines Gegners ein Pokémon-V ist, fügt diese Attacke 120 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "120+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
64
data/Sword & Shield/Brilliant Stars/017.ts
Normal file
64
data/Sword & Shield/Brilliant Stars/017.ts
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Charizard V",
|
||||||
|
fr: "Dracaufeu V",
|
||||||
|
es: "Charizard V",
|
||||||
|
it: "Charizard V",
|
||||||
|
pt: "Charizard V",
|
||||||
|
de: "Glurak V"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 220,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Basic",
|
||||||
|
suffix: "V",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire", "Fire", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Incinerate",
|
||||||
|
fr: "Calcination",
|
||||||
|
es: "Calcinación",
|
||||||
|
it: "Bruciatutto",
|
||||||
|
pt: "Incinerar",
|
||||||
|
de: "Einäschern"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Before doing damage, discard all Pokémon Tools from your opponent's Active Pokémon.",
|
||||||
|
fr: "Avant d'infliger des dégâts, défaussez tous les Outils Pokémon du Pokémon Actif de votre adversaire.",
|
||||||
|
es: "Antes de infligir daño, descarta todas las Herramientas Pokémon del Pokémon Activo de tu rival.",
|
||||||
|
it: "Prima di infliggere danni, scarta tutte le carte Oggetto Pokémon dal Pokémon attivo del tuo avversario.",
|
||||||
|
pt: "Antes de causar dano, descarte todas as Ferramentas Pokémon do Pokémon Ativo do seu oponente.",
|
||||||
|
de: "Bevor du Schaden zufügst, lege alle Pokémon-Ausrüstungen vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 90
|
||||||
|
}, {
|
||||||
|
cost: ["Fire", "Fire", "Fire", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Heat Blast",
|
||||||
|
fr: "Explosion de Chaleur",
|
||||||
|
es: "Explosión de Calor",
|
||||||
|
it: "Caldobomba",
|
||||||
|
pt: "Raio de Calor",
|
||||||
|
de: "Hitzestoß"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 180
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
83
data/Sword & Shield/Brilliant Stars/018.ts
Normal file
83
data/Sword & Shield/Brilliant Stars/018.ts
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Charizard VSTAR",
|
||||||
|
fr: "Dracaufeu VSTAR",
|
||||||
|
es: "Charizard V-ASTRO",
|
||||||
|
it: "Charizard V ASTRO",
|
||||||
|
pt: "Charizard V-ASTRO",
|
||||||
|
de: "Glurak VSTAR"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 280,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Charizard V",
|
||||||
|
fr: "Dracaufeu-V",
|
||||||
|
es: "Charizard V",
|
||||||
|
it: "Charizard-V",
|
||||||
|
pt: "Charizard V",
|
||||||
|
de: "Glurak-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "VSTAR",
|
||||||
|
suffix: "V",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire", "Fire", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Explosive Fire",
|
||||||
|
fr: "Feu Explosif",
|
||||||
|
es: "Fuego Explosivo",
|
||||||
|
it: "Fuoco Esplosivo",
|
||||||
|
pt: "Explosão de Fogo",
|
||||||
|
de: "Explosives Feuer"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If this Pokémon has any damage counters on it, this attack does 100 more damage.",
|
||||||
|
fr: "Si au moins un marqueur de dégâts est placé sur ce Pokémon, cette attaque inflige 100 dégâts supplémentaires.",
|
||||||
|
es: "Si este Pokémon tiene algún contador de daño sobre él, este ataque hace 100 puntos de daño más.",
|
||||||
|
it: "Se questo Pokémon ha dei segnalini danno, questo attacco infligge 100 danni in più.",
|
||||||
|
pt: "Se este Pokémon tiver algum contador de dano nele, este ataque causará 100 pontos de dano a mais.",
|
||||||
|
de: "Wenn auf diesem Pokémon mindestens 1 Schadensmarke liegt, fügt diese Attacke 100 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "130+"
|
||||||
|
}, {
|
||||||
|
cost: ["Fire", "Fire", "Fire", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Star Blaze",
|
||||||
|
fr: "Brasier Star",
|
||||||
|
es: "Llamarada Astro",
|
||||||
|
it: "Astro Fiammata",
|
||||||
|
pt: "Incêndio Astral",
|
||||||
|
de: "Sternengroßbrand"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard 2 Energy from this Pokémon. (You can't use more than 1 VSTAR Power in a game.)",
|
||||||
|
fr: "Défaussez 2 Énergies de ce Pokémon. (Vous ne pouvez utiliser qu'une seule Puissance VSTAR par partie.)",
|
||||||
|
es: "Descarta 2 Energías de este Pokémon. (No puedes usar más de 1 Poder V-ASTRO en una partida).",
|
||||||
|
it: "Scarta due Energie da questo Pokémon. Non puoi usare più di un Potere V ASTRO a partita.",
|
||||||
|
pt: "Descarte 2 Energias deste Pokémon (você não pode usar mais de 1 Poder V-ASTRO por partida).",
|
||||||
|
de: "Lege 2 Energien von diesem Pokémon auf deinen Ablagestapel. (Du kannst pro Spiel nur 1 VSTAR-Power einsetzen.)"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 320
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Brilliant Stars/019.ts
Normal file
54
data/Sword & Shield/Brilliant Stars/019.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Magmar",
|
||||||
|
fr: "Magmar",
|
||||||
|
es: "Magmar",
|
||||||
|
it: "Magmar",
|
||||||
|
pt: "Magmar",
|
||||||
|
de: "Magmar"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Low Kick",
|
||||||
|
fr: "Balayage",
|
||||||
|
es: "Patada Baja",
|
||||||
|
it: "Colpo Basso",
|
||||||
|
pt: "Rasteira",
|
||||||
|
de: "Fußkick"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20
|
||||||
|
}, {
|
||||||
|
cost: ["Fire", "Fire", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fiery Punch",
|
||||||
|
fr: "Poing de Feu",
|
||||||
|
es: "Puño Ardiente",
|
||||||
|
it: "Pugnodifuoco",
|
||||||
|
pt: "Soco Ardente",
|
||||||
|
de: "Flammenschlag"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 70
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/020.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/020.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Magmortar",
|
||||||
|
fr: "Maganon",
|
||||||
|
es: "Magmortar",
|
||||||
|
it: "Magmortar",
|
||||||
|
pt: "Magmortar",
|
||||||
|
de: "Magbrant"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 140,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Magmar",
|
||||||
|
fr: "Magmar",
|
||||||
|
es: "Magmar",
|
||||||
|
it: "Magmar",
|
||||||
|
pt: "Magmar",
|
||||||
|
de: "Magmar"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Mega Punch",
|
||||||
|
fr: "Ultimapoing",
|
||||||
|
es: "Megapuño",
|
||||||
|
it: "Megapugno",
|
||||||
|
pt: "Megassoco",
|
||||||
|
de: "Megahieb"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 50
|
||||||
|
}, {
|
||||||
|
cost: ["Fire", "Fire", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Boltsplosion",
|
||||||
|
fr: "Explofoudre",
|
||||||
|
es: "Rayoexplosión",
|
||||||
|
it: "Esplodifulmine",
|
||||||
|
pt: "Explorraio",
|
||||||
|
de: "Blitzplosion"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If Electivire is on your Bench, this attack does 120 more damage.",
|
||||||
|
fr: "Si Élekable est sur votre Banc, cette attaque inflige 120 dégâts supplémentaires.",
|
||||||
|
es: "Si Electivire está en tu Banca, este ataque hace 120 puntos de daño más.",
|
||||||
|
it: "Se Electivire è nella tua panchina, questo attacco infligge 120 danni in più.",
|
||||||
|
pt: "Se Electivire estiver no seu Banco, este ataque causará 120 pontos de dano a mais.",
|
||||||
|
de: "Wenn sich Elevoltek auf deiner Bank befindet, fügt diese Attacke 120 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "120+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Brilliant Stars/021.ts
Normal file
50
data/Sword & Shield/Brilliant Stars/021.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Moltres",
|
||||||
|
fr: "Sulfura",
|
||||||
|
es: "Moltres",
|
||||||
|
it: "Moltres",
|
||||||
|
pt: "Moltres",
|
||||||
|
de: "Lavados"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Inferno Wings",
|
||||||
|
fr: "Ailes Infernales",
|
||||||
|
es: "Alas Infernales",
|
||||||
|
it: "Ali Infernali",
|
||||||
|
pt: "Asas Infernais",
|
||||||
|
de: "Inferno-Flügel"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If this Pokémon has any damage counters on it, this attack does 70 more damage. This attack's damage isn't affected by Weakness.",
|
||||||
|
fr: "Si au moins un marqueur de dégâts est placé sur ce Pokémon, cette attaque inflige 70 dégâts supplémentaires. Les dégâts de cette attaque ne sont pas affectés par la Faiblesse.",
|
||||||
|
es: "Si este Pokémon tiene algún contador de daño sobre él, este ataque hace 70 puntos de daño más. El daño de este ataque no se ve afectado por Debilidad.",
|
||||||
|
it: "Se questo Pokémon ha dei segnalini danno, questo attacco infligge 70 danni in più. I danni di questo attacco non sono influenzati dalla debolezza.",
|
||||||
|
pt: "Se este Pokémon tiver algum contador de dano nele, este ataque causará 70 pontos de dano a mais. O dano deste ataque não é afetado por Fraqueza.",
|
||||||
|
de: "Wenn auf diesem Pokémon mindestens 1 Schadensmarke liegt, fügt diese Attacke 70 Schadenspunkte mehr zu. Der Schaden dieser Attacke wird durch Schwäche nicht verändert."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/022.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/022.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Entei V",
|
||||||
|
fr: "Entei V",
|
||||||
|
es: "Entei V",
|
||||||
|
it: "Entei V",
|
||||||
|
pt: "Entei V",
|
||||||
|
de: "Entei V"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 230,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Basic",
|
||||||
|
suffix: "V",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fleet-Footed",
|
||||||
|
fr: "Pas Agiles",
|
||||||
|
es: "Celeridad",
|
||||||
|
it: "Corsalesta",
|
||||||
|
pt: "Ligeirinho",
|
||||||
|
de: "Leichtfüßig"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Once during your turn, if this Pokémon is in the Active Spot, you may draw a card.",
|
||||||
|
fr: "Une fois pendant votre tour, si ce Pokémon est sur le Poste Actif, vous pouvez piocher une carte.",
|
||||||
|
es: "Una vez durante tu turno, si este Pokémon está en el Puesto Activo, puedes robar 1 carta.",
|
||||||
|
it: "Una sola volta durante il tuo turno, se questo Pokémon è in posizione attiva, puoi pescare una carta.",
|
||||||
|
pt: "Uma vez durante o seu turno, se este Pokémon estiver no Campo Ativo, você poderá comprar 1 carta.",
|
||||||
|
de: "Einmal während deines Zuges, wenn dieses Pokémon in der Aktiven Position ist, kannst du 1 Karte ziehen."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Burning Rondo",
|
||||||
|
fr: "Rondo Brûlant",
|
||||||
|
es: "Rondó Ardiente",
|
||||||
|
it: "Bruciarondò",
|
||||||
|
pt: "Cântico Incandescente",
|
||||||
|
de: "Feuerrondo"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 20 more damage for each Benched Pokémon (both yours and your opponent's).",
|
||||||
|
fr: "Cette attaque inflige 20 dégâts supplémentaires pour chaque Pokémon de Banc (les vôtres et ceux de votre adversaire).",
|
||||||
|
es: "Este ataque hace 20 puntos de daño más por cada Pokémon en Banca (tanto tuyos como de tu rival).",
|
||||||
|
it: "Questo attacco infligge 20 danni in più per ogni Pokémon in panchina, sia tuo che del tuo avversario.",
|
||||||
|
pt: "Este ataque causa 20 pontos de dano a mais para cada Pokémon no Banco (seus e do seu oponente).",
|
||||||
|
de: "Diese Attacke fügt für jedes Pokémon auf der Bank (deiner und der deines Gegners) 20 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
72
data/Sword & Shield/Brilliant Stars/023.ts
Normal file
72
data/Sword & Shield/Brilliant Stars/023.ts
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Torkoal",
|
||||||
|
fr: "Chartor",
|
||||||
|
es: "Torkoal",
|
||||||
|
it: "Torkoal",
|
||||||
|
pt: "Torkoal",
|
||||||
|
de: "Qurtel"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Firebreathing",
|
||||||
|
fr: "Souffle-Feu",
|
||||||
|
es: "Aliento de Fuego",
|
||||||
|
it: "Fuocospiro",
|
||||||
|
pt: "Hálito de Fogo",
|
||||||
|
de: "Feuerhauch"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, this attack does 30 more damage.",
|
||||||
|
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts supplémentaires.",
|
||||||
|
es: "Lanza 1 moneda. Si sale cara, este ataque hace 30 puntos de daño más.",
|
||||||
|
it: "Lancia una moneta. Se esce testa, questo attacco infligge 30 danni in più.",
|
||||||
|
pt: "Jogue 1 moeda. Se sair cara, este ataque causará 30 pontos de dano a mais.",
|
||||||
|
de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 30 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30+"
|
||||||
|
}, {
|
||||||
|
cost: ["Fire", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Guard Press",
|
||||||
|
fr: "Pression de Garde",
|
||||||
|
es: "Presión de Guardia",
|
||||||
|
it: "Pressadifesa",
|
||||||
|
pt: "Aperto Protetor",
|
||||||
|
de: "Schutzdruck"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "During your opponent's next turn, this Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
|
||||||
|
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
|
||||||
|
es: "Durante el próximo turno de tu rival, los ataques hacen 30 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).",
|
||||||
|
it: "Durante il prossimo turno del tuo avversario, questo Pokémon subisce 30 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.",
|
||||||
|
pt: "Durante o próximo turno do seu oponente, este Pokémon receberá 30 pontos de dano a menos de ataques (depois de aplicar Fraqueza e Resistência).",
|
||||||
|
de: "Während des nächsten Zuges deines Gegners werden diesem Pokémon durch Attacken 30 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 90
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Brilliant Stars/024.ts
Normal file
50
data/Sword & Shield/Brilliant Stars/024.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Chimchar",
|
||||||
|
fr: "Ouisticram",
|
||||||
|
es: "Chimchar",
|
||||||
|
it: "Chimchar",
|
||||||
|
pt: "Chimchar",
|
||||||
|
de: "Panflam"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Ember",
|
||||||
|
fr: "Flammèche",
|
||||||
|
es: "Ascuas",
|
||||||
|
it: "Braciere",
|
||||||
|
pt: "Brasa",
|
||||||
|
de: "Glut"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard an Energy from this Pokémon.",
|
||||||
|
fr: "Défaussez une Énergie de ce Pokémon.",
|
||||||
|
es: "Descarta 1 Energía de este Pokémon.",
|
||||||
|
it: "Scarta un'Energia da questo Pokémon.",
|
||||||
|
pt: "Descarte 1 Energia deste Pokémon.",
|
||||||
|
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/025.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/025.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Monferno",
|
||||||
|
fr: "Chimpenfeu",
|
||||||
|
es: "Monferno",
|
||||||
|
it: "Monferno",
|
||||||
|
pt: "Monferno",
|
||||||
|
de: "Panpyro"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Chimchar",
|
||||||
|
fr: "Ouisticram",
|
||||||
|
es: "Chimchar",
|
||||||
|
it: "Chimchar",
|
||||||
|
pt: "Chimchar",
|
||||||
|
de: "Panflam"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Flare",
|
||||||
|
fr: "Flamboiement",
|
||||||
|
es: "Llama",
|
||||||
|
it: "Fiammata",
|
||||||
|
pt: "Chama",
|
||||||
|
de: "Flackern"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30
|
||||||
|
}, {
|
||||||
|
cost: ["Fire", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Flamethrower",
|
||||||
|
fr: "Lance-Flammes",
|
||||||
|
es: "Lanzallamas",
|
||||||
|
it: "Lanciafiamme",
|
||||||
|
pt: "Lança-chamas",
|
||||||
|
de: "Flammenwurf"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard an Energy from this Pokémon.",
|
||||||
|
fr: "Défaussez une Énergie de ce Pokémon.",
|
||||||
|
es: "Descarta 1 Energía de este Pokémon.",
|
||||||
|
it: "Scarta un'Energia da questo Pokémon.",
|
||||||
|
pt: "Descarte 1 Energia deste Pokémon.",
|
||||||
|
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 50
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
82
data/Sword & Shield/Brilliant Stars/026.ts
Normal file
82
data/Sword & Shield/Brilliant Stars/026.ts
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Infernape",
|
||||||
|
fr: "Simiabraz",
|
||||||
|
es: "Infernape",
|
||||||
|
it: "Infernape",
|
||||||
|
pt: "Infernape",
|
||||||
|
de: "Panferno"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 150,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Monferno",
|
||||||
|
fr: "Chimpenfeu",
|
||||||
|
es: "Monferno",
|
||||||
|
it: "Monferno",
|
||||||
|
pt: "Monferno",
|
||||||
|
de: "Panpyro"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage2",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Infernal Vortex",
|
||||||
|
fr: "Vortex Infernal",
|
||||||
|
es: "Vórtice Infernal",
|
||||||
|
it: "Vortice Infernale",
|
||||||
|
pt: "Vórtice Infernal",
|
||||||
|
de: "Infernalischer Wirbel"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Reveal the top 5 cards of your deck. This attack does 80 damage for each Energy card you find there. Then, discard those Energy cards and shuffle the other cards back into your deck.",
|
||||||
|
fr: "Montrez les 5 cartes du dessus de votre deck. Cette attaque inflige 80 dégâts pour chaque carte Énergie que vous y trouvez. Défaussez ensuite ces cartes Énergie et mélangez les autres cartes avec votre deck.",
|
||||||
|
es: "Enseña las 5 primeras cartas de tu baraja. Este ataque hace 80 puntos de daño por cada carta de Energía que encuentres entre ellas. Después, descarta esas cartas de Energía, pon el resto de las cartas de nuevo en tu baraja y barájalas todas.",
|
||||||
|
it: "Mostra le prime cinque carte del tuo mazzo. Questo attacco infligge 80 danni per ogni carta Energia presente tra quelle carte. Poi scarta quelle carte Energia e rimischia le altre carte nel tuo mazzo.",
|
||||||
|
pt: "Revele as 5 cartas de cima do seu baralho. Este ataque causa 80 pontos de dano para cada carta de Energia que encontrar lá. Em seguida, descarte aquelas cartas de Energia e embaralhe as demais cartas de volta no seu baralho.",
|
||||||
|
de: "Zeige deinem Gegner die obersten 5 Karten deines Decks. Diese Attacke fügt für jede Energiekarte, die du dort findest, 80 Schadenspunkte zu. Lege anschließend jene Energiekarten auf deinen Ablagestapel und mische die anderen Karten zurück in dein Deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "80×"
|
||||||
|
}, {
|
||||||
|
cost: ["Fire", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Burning Kick",
|
||||||
|
fr: "Coup de Pied Brûlant",
|
||||||
|
es: "Patada Ardiente",
|
||||||
|
it: "Calcio Fiammeggiante",
|
||||||
|
pt: "Petardo",
|
||||||
|
de: "Brennender Schuss"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard all Energy from this Pokémon.",
|
||||||
|
fr: "Défaussez toute l'Énergie de ce Pokémon.",
|
||||||
|
es: "Descarta todas las Energías de este Pokémon.",
|
||||||
|
it: "Scarta tutte le Energie da questo Pokémon.",
|
||||||
|
pt: "Descarte todas as Energias deste Pokémon.",
|
||||||
|
de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 160
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/027.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/027.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Simisear V",
|
||||||
|
fr: "Flamoutan V",
|
||||||
|
es: "Simisear V",
|
||||||
|
it: "Simisear V",
|
||||||
|
pt: "Simisear V",
|
||||||
|
de: "Grillchita V"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 210,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Basic",
|
||||||
|
suffix: "V",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bursting Power",
|
||||||
|
fr: "Puissance Explosive",
|
||||||
|
es: "Poder Explosivo",
|
||||||
|
it: "Potere Ustionante",
|
||||||
|
pt: "Poder Explosivo",
|
||||||
|
de: "Auflodernde Macht"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "You may attach up to 2 basic Energy cards from your hand to your Pokémon in any way you like.",
|
||||||
|
fr: "Vous pouvez attacher jusqu'à 2 cartes Énergie de base de votre main à vos Pokémon comme il vous plaît.",
|
||||||
|
es: "Puedes unir hasta 2 cartas de Energía Básica de tu mano a tus Pokémon de la manera que desees.",
|
||||||
|
it: "Puoi assegnare ai tuoi Pokémon fino a due carte Energia base dalla tua mano nel modo che preferisci.",
|
||||||
|
pt: "Você pode ligar até 2 cartas de Energia básica da sua mão aos seus Pokémon como desejar.",
|
||||||
|
de: "Du kannst bis zu 2 Basis-Energiekarten aus deiner Hand beliebig an deine Pokémon anlegen."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20
|
||||||
|
}, {
|
||||||
|
cost: ["Fire", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Flare Juggling",
|
||||||
|
fr: "Jonglage Enflammé",
|
||||||
|
es: "Fuegos Malabares",
|
||||||
|
it: "Giocoleria Fiammeggiante",
|
||||||
|
pt: "Malabarismo de Chamas",
|
||||||
|
de: "Flammen-Jongleur"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 30 more damage for each Energy attached to your opponent's Active Pokémon.",
|
||||||
|
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Actif de votre adversaire.",
|
||||||
|
es: "Este ataque hace 30 puntos de daño más por cada Energía unida al Pokémon Activo de tu rival.",
|
||||||
|
it: "Questo attacco infligge 30 danni in più per ogni Energia assegnata al Pokémon attivo del tuo avversario.",
|
||||||
|
pt: "Este ataque causa 30 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 30 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "90+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
71
data/Sword & Shield/Brilliant Stars/028.ts
Normal file
71
data/Sword & Shield/Brilliant Stars/028.ts
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Kingler V",
|
||||||
|
fr: "Krabboss V",
|
||||||
|
es: "Kingler V",
|
||||||
|
it: "Kingler V",
|
||||||
|
pt: "Kingler V",
|
||||||
|
de: "Kingler V"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 220,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
suffix: "V",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Falling Bubbles",
|
||||||
|
fr: "Chute de Bulles",
|
||||||
|
es: "Lluvia de Burbujas",
|
||||||
|
it: "Bolle Cadenti",
|
||||||
|
pt: "Desabar de Bolhas",
|
||||||
|
de: "Wie die Tropfen fallen"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, search your deck for up to 5 Water Energy cards and attach them to your Pokémon in any way you like. Then, shuffle your deck.",
|
||||||
|
fr: "Lancez une pièce. Si c'est face, cherchez dans votre deck jusqu'à 5 cartes Énergie Water, puis attachez-les à vos Pokémon comme il vous plaît. Mélangez ensuite votre deck.",
|
||||||
|
es: "Lanza 1 moneda. Si sale cara, busca en tu baraja hasta 5 cartas de Energía Water y únelas a tus Pokémon de la manera que desees. Después, baraja las cartas de tu baraja.",
|
||||||
|
it: "Lancia una moneta. Se esce testa, cerca nel tuo mazzo fino a cinque carte Energia Water e assegnale ai tuoi Pokémon nel modo che preferisci. Poi rimischia le carte del tuo mazzo.",
|
||||||
|
pt: "Jogue 1 moeda. Se sair cara, procure por até 5 cartas de Energia Water no seu baralho e ligue-as aos seus Pokémon como desejar. Em seguida, embaralhe o seu baralho.",
|
||||||
|
de: "Wirf 1 Münze. Durchsuche bei Kopf dein Deck nach bis zu 5 Water-Energiekarten und lege sie beliebig an deine Pokémon an. Mische anschließend dein Deck."
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
cost: ["Water", "Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Raging Pincer",
|
||||||
|
fr: "Pince Enragée",
|
||||||
|
es: "Tenaza Furiosa",
|
||||||
|
it: "Chela Furiosa",
|
||||||
|
pt: "Pinça Indomada",
|
||||||
|
de: "Tobende Kneifer"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This Pokémon also does 30 damage to itself.",
|
||||||
|
fr: "Ce Pokémon s'inflige aussi 30 dégâts.",
|
||||||
|
es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.",
|
||||||
|
it: "Questo Pokémon infligge anche 30 danni a se stesso.",
|
||||||
|
pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.",
|
||||||
|
de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 200
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
80
data/Sword & Shield/Brilliant Stars/029.ts
Normal file
80
data/Sword & Shield/Brilliant Stars/029.ts
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Kingler VMAX",
|
||||||
|
fr: "Krabboss VMAX",
|
||||||
|
es: "Kingler VMAX",
|
||||||
|
it: "Kingler VMAX",
|
||||||
|
pt: "Kingler VMAX",
|
||||||
|
de: "Kingler VMAX"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 330,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Kingler V",
|
||||||
|
fr: "Krabboss-V",
|
||||||
|
es: "Kingler V",
|
||||||
|
it: "Kingler-V",
|
||||||
|
pt: "Kingler V",
|
||||||
|
de: "Kingler-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "VMAX",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bubbles Galore",
|
||||||
|
fr: "Bulles Abondantes",
|
||||||
|
es: "Burbujas a Raudales",
|
||||||
|
it: "Bolle a Volontà",
|
||||||
|
pt: "Mundaréu de Bolhas",
|
||||||
|
de: "Tropfenparty"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Search your deck for up to 5 Water Energy cards and attach them to your Pokémon in any way you like. Then, shuffle your deck.",
|
||||||
|
fr: "Cherchez dans votre deck jusqu'à 5 cartes Énergie Water, puis attachez-les à vos Pokémon comme il vous plaît. Mélangez ensuite votre deck.",
|
||||||
|
es: "Busca en tu baraja hasta 5 cartas de Energía Water y únelas a tus Pokémon de la manera que desees. Después, baraja las cartas de tu baraja.",
|
||||||
|
it: "Cerca nel tuo mazzo fino a cinque carte Energia Water e assegnale ai tuoi Pokémon nel modo che preferisci. Poi rimischia le carte del tuo mazzo.",
|
||||||
|
pt: "Procure por até 5 cartas de Energia Water no seu baralho e ligue-as aos seus Pokémon como desejar. Em seguida, embaralhe o seu baralho.",
|
||||||
|
de: "Durchsuche dein Deck nach bis zu 5 Water-Energiekarten und lege sie beliebig an deine Pokémon an. Mische anschließend dein Deck."
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
cost: ["Water", "Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "G-Max Pincer",
|
||||||
|
fr: "Pince G-Max",
|
||||||
|
es: "Gigatenaza",
|
||||||
|
it: "Gigachela",
|
||||||
|
pt: "Pinça G-Max",
|
||||||
|
de: "Giga-Kneifer"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This Pokémon also does 30 damage to itself.",
|
||||||
|
fr: "Ce Pokémon s'inflige aussi 30 dégâts.",
|
||||||
|
es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.",
|
||||||
|
it: "Questo Pokémon infligge anche 30 danni a se stesso.",
|
||||||
|
pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.",
|
||||||
|
de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 240
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Brilliant Stars/030.ts
Normal file
50
data/Sword & Shield/Brilliant Stars/030.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Staryu",
|
||||||
|
fr: "Stari",
|
||||||
|
es: "Staryu",
|
||||||
|
it: "Staryu",
|
||||||
|
pt: "Staryu",
|
||||||
|
de: "Sterndu"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Double Spin",
|
||||||
|
fr: "Double Tour",
|
||||||
|
es: "Doble Giro",
|
||||||
|
it: "Doppioturbo",
|
||||||
|
pt: "Giro Duplo",
|
||||||
|
de: "Doppeldreher"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip 2 coins. This attack does 10 damage for each heads.",
|
||||||
|
fr: "Lancez 2 pièces. Cette attaque inflige 10 dégâts pour chaque côté face.",
|
||||||
|
es: "Lanza 2 monedas. Este ataque hace 10 puntos de daño por cada cara.",
|
||||||
|
it: "Lancia due volte una moneta. Questo attacco infligge 10 danni ogni volta che esce testa.",
|
||||||
|
pt: "Jogue 2 moedas. Este ataque causa 10 pontos de dano para cada cara.",
|
||||||
|
de: "Wirf 2 Münzen. Diese Attacke fügt 10 Schadenspunkte pro Kopf zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10×"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Brilliant Stars/031.ts
Normal file
50
data/Sword & Shield/Brilliant Stars/031.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Lapras",
|
||||||
|
fr: "Lokhlass",
|
||||||
|
es: "Lapras",
|
||||||
|
it: "Lapras",
|
||||||
|
pt: "Lapras",
|
||||||
|
de: "Lapras"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 130,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Raging Freeze",
|
||||||
|
fr: "Gel Acharné",
|
||||||
|
es: "Congelación Embravecida",
|
||||||
|
it: "Furiagelo",
|
||||||
|
pt: "Congelamento Estarrecedor",
|
||||||
|
de: "Wutstarre"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If any of your Pokémon were Knocked Out by damage from an attack from your opponent's Pokémon during their last turn, your opponent's Active Pokémon is now Paralyzed.",
|
||||||
|
fr: "Si au moins l'un de vos Pokémon a été mis K.O. par les dégâts d'une attaque d'un Pokémon de votre adversaire pendant son dernier tour, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||||||
|
es: "Si alguno de tus Pokémon quedó Fuera de Combate por el daño de un ataque de los Pokémon de tu rival durante su último turno, el Pokémon Activo de tu rival pasa a estar Paralizado.",
|
||||||
|
it: "Se uno qualsiasi dei tuoi Pokémon è stato messo KO dai danni inflitti da un attacco di un Pokémon del tuo avversario durante il suo ultimo turno, il Pokémon attivo del tuo avversario viene paralizzato.",
|
||||||
|
pt: "Se algum dos seus Pokémon tiver sido Nocauteado pelo dano de um ataque dos Pokémon do seu oponente durante o último turno dele(a), o Pokémon Ativo do seu oponente ficará Paralisado.",
|
||||||
|
de: "Wenn mindestens 1 deiner Pokémon während des letzten Zuges deines Gegners durch Schaden einer Attacke der Pokémon deines Gegners kampfunfähig wurde, ist das Aktive Pokémon deines Gegners jetzt paralysiert."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 110
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Brilliant Stars/032.ts
Normal file
54
data/Sword & Shield/Brilliant Stars/032.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Corphish",
|
||||||
|
fr: "Écrapince",
|
||||||
|
es: "Corphish",
|
||||||
|
it: "Corphish",
|
||||||
|
pt: "Corphish",
|
||||||
|
de: "Krebscorps"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Water Gun",
|
||||||
|
fr: "Pistolet à O",
|
||||||
|
es: "Pistola Agua",
|
||||||
|
it: "Pistolacqua",
|
||||||
|
pt: "Revólver d'Água",
|
||||||
|
de: "Aquaknarre"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10
|
||||||
|
}, {
|
||||||
|
cost: ["Water", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Crabhammer",
|
||||||
|
fr: "Pince-Masse",
|
||||||
|
es: "Martillazo",
|
||||||
|
it: "Martellata",
|
||||||
|
pt: "Martelo Caranguejo",
|
||||||
|
de: "Krabbhammer"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 50
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/033.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/033.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Crawdaunt",
|
||||||
|
fr: "Colhomard",
|
||||||
|
es: "Crawdaunt",
|
||||||
|
it: "Crawdaunt",
|
||||||
|
pt: "Crawdaunt",
|
||||||
|
de: "Krebutack"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 130,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Corphish",
|
||||||
|
fr: "Écrapince",
|
||||||
|
es: "Corphish",
|
||||||
|
it: "Corphish",
|
||||||
|
pt: "Corphish",
|
||||||
|
de: "Krebscorps"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Corkscrew Punch",
|
||||||
|
fr: "Poing Tire-Bouchon",
|
||||||
|
es: "Puño Tirabuzón",
|
||||||
|
it: "Pugno Rotante",
|
||||||
|
pt: "Soco Saca-rolha",
|
||||||
|
de: "Korkenzieherhieb"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30
|
||||||
|
}, {
|
||||||
|
cost: ["Water", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Crab Impact",
|
||||||
|
fr: "Crabe Impactant",
|
||||||
|
es: "Impacto Cangrejo",
|
||||||
|
it: "Granchimpatto",
|
||||||
|
pt: "Impacto Caranguejo",
|
||||||
|
de: "Krabbeinschlag"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard 2 Energy from this Pokémon.",
|
||||||
|
fr: "Défaussez 2 Énergies de ce Pokémon.",
|
||||||
|
es: "Descarta 2 Energías de este Pokémon.",
|
||||||
|
it: "Scarta due Energie da questo Pokémon.",
|
||||||
|
pt: "Descarte 2 Energias deste Pokémon.",
|
||||||
|
de: "Lege 2 Energien von diesem Pokémon auf deinen Ablagestapel."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 150
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
61
data/Sword & Shield/Brilliant Stars/034.ts
Normal file
61
data/Sword & Shield/Brilliant Stars/034.ts
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Snorunt",
|
||||||
|
fr: "Stalgamin",
|
||||||
|
es: "Snorunt",
|
||||||
|
it: "Snorunt",
|
||||||
|
pt: "Snorunt",
|
||||||
|
de: "Schneppke"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Ice Breath",
|
||||||
|
fr: "Haleine de Glace",
|
||||||
|
es: "Aliento Gélido",
|
||||||
|
it: "Ghiacciospiro",
|
||||||
|
pt: "Hálito de Gelo",
|
||||||
|
de: "Eishauch"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
|
||||||
|
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||||||
|
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
|
||||||
|
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
|
||||||
|
pt: "Jogue 1 moeda. Se sair cara, o Pokémon Ativo do seu oponente ficará Paralisado.",
|
||||||
|
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert."
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
cost: ["Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Icy Snow",
|
||||||
|
fr: "Verglas",
|
||||||
|
es: "Nieve Helada",
|
||||||
|
it: "Geloneve",
|
||||||
|
pt: "Neve Congelada",
|
||||||
|
de: "Eisiger Schnee"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "E"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Brilliant Stars/035.ts
Normal file
50
data/Sword & Shield/Brilliant Stars/035.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Piplup",
|
||||||
|
fr: "Tiplouf",
|
||||||
|
es: "Piplup",
|
||||||
|
it: "Piplup",
|
||||||
|
pt: "Piplup",
|
||||||
|
de: "Plinfa"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bubble",
|
||||||
|
fr: "Écume",
|
||||||
|
es: "Burbuja",
|
||||||
|
it: "Bolla",
|
||||||
|
pt: "Bolha",
|
||||||
|
de: "Blubber"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
|
||||||
|
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||||||
|
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
|
||||||
|
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
|
||||||
|
pt: "Jogue 1 moeda. Se sair cara, o Pokémon Ativo do seu oponente ficará Paralisado.",
|
||||||
|
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
51
data/Sword & Shield/Brilliant Stars/036.ts
Normal file
51
data/Sword & Shield/Brilliant Stars/036.ts
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Prinplup",
|
||||||
|
fr: "Prinplouf",
|
||||||
|
es: "Prinplup",
|
||||||
|
it: "Prinplup",
|
||||||
|
pt: "Prinplup",
|
||||||
|
de: "Pliprin"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Piplup",
|
||||||
|
fr: "Tiplouf",
|
||||||
|
es: "Piplup",
|
||||||
|
it: "Piplup",
|
||||||
|
pt: "Piplup",
|
||||||
|
de: "Plinfa"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Peck",
|
||||||
|
fr: "Picpic",
|
||||||
|
es: "Picotazo",
|
||||||
|
it: "Beccata",
|
||||||
|
pt: "Bicada",
|
||||||
|
de: "Pikser"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
80
data/Sword & Shield/Brilliant Stars/037.ts
Normal file
80
data/Sword & Shield/Brilliant Stars/037.ts
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Empoleon",
|
||||||
|
fr: "Pingoléon",
|
||||||
|
es: "Empoleon",
|
||||||
|
it: "Empoleon",
|
||||||
|
pt: "Empoleon",
|
||||||
|
de: "Impoleon"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 160,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Prinplup",
|
||||||
|
fr: "Prinplouf",
|
||||||
|
es: "Prinplup",
|
||||||
|
it: "Prinplup",
|
||||||
|
pt: "Prinplup",
|
||||||
|
de: "Pliprin"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage2",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Emergency Surfacing",
|
||||||
|
fr: "Remontée d'Urgence",
|
||||||
|
es: "Reflote de Emergencia",
|
||||||
|
it: "Emersione di Emergenza",
|
||||||
|
pt: "Emersão Emergencial",
|
||||||
|
de: "Notauftauchen"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Once during your turn, if this Pokémon is in your discard pile and you have no cards in your hand, you may put this Pokémon onto your Bench. If you do, draw 3 cards.",
|
||||||
|
fr: "Une fois pendant votre tour, si ce Pokémon est dans votre pile de défausse et que vous n'avez aucune carte dans votre main, vous pouvez placer ce Pokémon sur votre Banc. Dans ce cas, piochez 3 cartes.",
|
||||||
|
es: "Una vez durante tu turno, si este Pokémon está en tu pila de descartes y no tienes ninguna carta en tu mano, puedes poner este Pokémon en tu Banca. Si lo haces, roba 3 cartas.",
|
||||||
|
it: "Una sola volta durante il tuo turno, se questo Pokémon è nella tua pila degli scarti e non hai carte in mano, puoi mettere questo Pokémon nella tua panchina. Se lo fai, pesca tre carte.",
|
||||||
|
pt: "Uma vez durante o seu turno, se este Pokémon estiver na sua pilha de descarte e você não tiver cartas na sua mão, você poderá colocá-lo no seu Banco. Se fizer isto, compre 3 cartas.",
|
||||||
|
de: "Einmal während deines Zuges, wenn dieses Pokémon in deinem Ablagestapel ist und du keine Karten auf deiner Hand hast, kannst du dieses Pokémon auf deine Bank legen. Wenn du das machst, ziehe 3 Karten."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Water Arrow",
|
||||||
|
fr: "Flèche d'Eau",
|
||||||
|
es: "Flecha de Agua",
|
||||||
|
it: "Idrofreccia",
|
||||||
|
pt: "Flecha d'Água",
|
||||||
|
de: "Wasserpfeil"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 60 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||||
|
fr: "Cette attaque inflige 60 dégâts à l'un des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||||||
|
es: "Este ataque hace 60 puntos de daño a 1 de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
|
||||||
|
it: "Questo attacco infligge 60 danni a uno dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.",
|
||||||
|
pt: "Este ataque causa 60 pontos de dano a 1 dos Pokémon do seu oponente (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
|
||||||
|
de: "Diese Attacke fügt 1 Pokémon deines Gegners 60 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Brilliant Stars/038.ts
Normal file
50
data/Sword & Shield/Brilliant Stars/038.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Buizel",
|
||||||
|
fr: "Mustébouée",
|
||||||
|
es: "Buizel",
|
||||||
|
it: "Buizel",
|
||||||
|
pt: "Buizel",
|
||||||
|
de: "Bamelin"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Agility",
|
||||||
|
fr: "Hâte",
|
||||||
|
es: "Agilidad",
|
||||||
|
it: "Agilità",
|
||||||
|
pt: "Agilidade",
|
||||||
|
de: "Agilität"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage from and effects of attacks done to this Pokémon.",
|
||||||
|
fr: "Lancez une pièce. Si c'est face, pendant le prochain tour de votre adversaire, évitez tous les dégâts et les effets d'attaques infligés à ce Pokémon.",
|
||||||
|
es: "Lanza 1 moneda. Si sale cara, durante el próximo turno de tu rival, evita todo el daño y todos los efectos de los ataques infligidos a este Pokémon.",
|
||||||
|
it: "Lancia una moneta. Se esce testa, durante il prossimo turno del tuo avversario, previeni sia i danni che gli effetti degli attacchi inflitti a questo Pokémon.",
|
||||||
|
pt: "Jogue 1 moeda. Se sair cara, durante o próximo turno do seu oponente, previna todo o dano e os efeitos de ataques causados a este Pokémon.",
|
||||||
|
de: "Wirf 1 Münze. Verhindere bei Kopf während des nächsten Zuges deines Gegners allen Schaden durch und alle Effekte von Attacken, die diesem Pokémon zugefügt werden."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
71
data/Sword & Shield/Brilliant Stars/039.ts
Normal file
71
data/Sword & Shield/Brilliant Stars/039.ts
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Floatzel",
|
||||||
|
fr: "Mustéflott",
|
||||||
|
es: "Floatzel",
|
||||||
|
it: "Floatzel",
|
||||||
|
pt: "Floatzel",
|
||||||
|
de: "Bojelin"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 110,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Buizel",
|
||||||
|
fr: "Mustébouée",
|
||||||
|
es: "Buizel",
|
||||||
|
it: "Buizel",
|
||||||
|
pt: "Buizel",
|
||||||
|
de: "Bamelin"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Floatify",
|
||||||
|
fr: "Flottifier",
|
||||||
|
es: "Flotación",
|
||||||
|
it: "Galleggiamento",
|
||||||
|
pt: "Flutualizador",
|
||||||
|
de: "Floaten"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Put up to 2 Item cards from your discard pile into your hand.",
|
||||||
|
fr: "Ajoutez jusqu'à 2 cartes Objet de votre pile de défausse à votre main.",
|
||||||
|
es: "Pon hasta 2 cartas de Objeto de tu pila de descartes en tu mano.",
|
||||||
|
it: "Prendi fino a due carte Strumento dalla tua pila degli scarti e aggiungile alle carte che hai in mano.",
|
||||||
|
pt: "Coloque até 2 cartas de Item da sua pilha de descarte na sua mão.",
|
||||||
|
de: "Nimm bis zu 2 Itemkarten aus deinem Ablagestapel auf deine Hand."
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
cost: ["Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Water Gun",
|
||||||
|
fr: "Pistolet à O",
|
||||||
|
es: "Pistola Agua",
|
||||||
|
it: "Pistolacqua",
|
||||||
|
pt: "Revólver d'Água",
|
||||||
|
de: "Aquaknarre"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 60
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/040.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/040.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Lumineon V",
|
||||||
|
fr: "Luminéon V",
|
||||||
|
es: "Lumineon V",
|
||||||
|
it: "Lumineon V",
|
||||||
|
pt: "Lumineon V",
|
||||||
|
de: "Lumineon V"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 170,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
suffix: "V",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Luminous Sign",
|
||||||
|
fr: "Signe Lumineux",
|
||||||
|
es: "Señal Luminosa",
|
||||||
|
it: "Segnale Luminoso",
|
||||||
|
pt: "Sinal Luminoso",
|
||||||
|
de: "Luminöses Zeichen"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "When you play this Pokémon from your hand onto your Bench during your turn, you may search your deck for a Supporter card, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||||||
|
fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez chercher dans votre deck une carte Supporter, la montrer, puis l'ajouter à votre main. Mélangez ensuite votre deck.",
|
||||||
|
es: "Cuando juegas este Pokémon de tu mano a tu Banca durante tu turno, puedes buscar en tu baraja 1 carta de Partidario, enseñarla y ponerla en tu mano. Después, baraja las cartas de tu baraja.",
|
||||||
|
it: "Quando giochi questo Pokémon dalla tua mano e lo metti in panchina durante il tuo turno, puoi cercare nel tuo mazzo una carta Aiuto, mostrarla e aggiungerla alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
||||||
|
pt: "Quando você jogar este Pokémon da sua mão para o seu Banco durante o seu turno, você poderá procurar por 1 carta de Apoiador no seu baralho, revelá-la e colocá-la na sua mão. Em seguida, embaralhe o seu baralho.",
|
||||||
|
de: "Wenn du dieses Pokémon während deines Zuges aus deiner Hand auf deine Bank spielst, kannst du dein Deck nach 1 Unterstützerkarte durchsuchen, sie deinem Gegner zeigen und sie auf deine Hand nehmen. Mische anschließend dein Deck."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Aqua Return",
|
||||||
|
fr: "Retour Aquatique",
|
||||||
|
es: "Retorno Acuático",
|
||||||
|
it: "Idroritorno",
|
||||||
|
pt: "Retorno Aquático",
|
||||||
|
de: "Aquarückkehr"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Shuffle this Pokémon and all attached cards into your deck.",
|
||||||
|
fr: "Mélangez avec votre deck ce Pokémon et toutes les cartes attachées.",
|
||||||
|
es: "Pon este Pokémon y todas las cartas unidas a él en tu baraja, y baraja todas las cartas.",
|
||||||
|
it: "Rimischia questo Pokémon e tutte le carte a esso assegnate nel tuo mazzo.",
|
||||||
|
pt: "Embaralhe este Pokémon e todas as cartas ligadas a ele no seu baralho.",
|
||||||
|
de: "Mische dieses Pokémon und alle angelegten Karten in dein Deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 120
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
63
data/Sword & Shield/Brilliant Stars/041.ts
Normal file
63
data/Sword & Shield/Brilliant Stars/041.ts
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Manaphy",
|
||||||
|
fr: "Manaphy",
|
||||||
|
es: "Manaphy",
|
||||||
|
it: "Manaphy",
|
||||||
|
pt: "Manaphy",
|
||||||
|
de: "Manaphy"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Wave Veil",
|
||||||
|
fr: "Voile Houleux",
|
||||||
|
es: "Velo de Olas",
|
||||||
|
it: "Ondavelo",
|
||||||
|
pt: "Véu de Ondas",
|
||||||
|
de: "Wellenschleier"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Prevent all damage done to your Benched Pokémon by attacks from your opponent's Pokémon.",
|
||||||
|
fr: "Évitez tous les dégâts infligés à vos Pokémon de Banc par les attaques des Pokémon de votre adversaire.",
|
||||||
|
es: "Evita todo el daño infligido a tus Pokémon en Banca por ataques de los Pokémon de tu rival.",
|
||||||
|
it: "Previeni tutti i danni inflitti ai tuoi Pokémon in panchina dagli attacchi dei Pokémon del tuo avversario.",
|
||||||
|
pt: "Previna todo o dano causado aos seus Pokémon no Banco por ataques dos Pokémon do seu oponente.",
|
||||||
|
de: "Verhindere allen Schaden, der den Pokémon auf deiner Bank durch Attacken von Pokémon deines Gegners zugefügt wird."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Rain Splash",
|
||||||
|
fr: "Pluie Éclaboussante",
|
||||||
|
es: "Golpe de Lluvia",
|
||||||
|
it: "Spruzzapioggia",
|
||||||
|
pt: "Chuva Borrifante",
|
||||||
|
de: "Regenplatscher"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
41
data/Sword & Shield/Brilliant Stars/042.ts
Normal file
41
data/Sword & Shield/Brilliant Stars/042.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Cubchoo",
|
||||||
|
fr: "Polarhume",
|
||||||
|
es: "Cubchoo",
|
||||||
|
it: "Cubchoo",
|
||||||
|
pt: "Cubchoo",
|
||||||
|
de: "Petznief"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Chilly",
|
||||||
|
fr: "Glacial",
|
||||||
|
es: "Fresquito",
|
||||||
|
it: "Addiaccio",
|
||||||
|
pt: "Frio",
|
||||||
|
de: "Frösteln"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/043.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/043.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Beartic",
|
||||||
|
fr: "Polagriffe",
|
||||||
|
es: "Beartic",
|
||||||
|
it: "Beartic",
|
||||||
|
pt: "Beartic",
|
||||||
|
de: "Siberio"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 140,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Cubchoo",
|
||||||
|
fr: "Polarhume",
|
||||||
|
es: "Cubchoo",
|
||||||
|
it: "Cubchoo",
|
||||||
|
pt: "Cubchoo",
|
||||||
|
de: "Petznief"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Sheer Cold",
|
||||||
|
fr: "Glaciation",
|
||||||
|
es: "Frío Polar",
|
||||||
|
it: "Purogelo",
|
||||||
|
pt: "Frio Extremo",
|
||||||
|
de: "Eiseskälte"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "During your opponent's next turn, the Defending Pokémon can't attack.",
|
||||||
|
fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas attaquer.",
|
||||||
|
es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede atacar.",
|
||||||
|
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può attaccare.",
|
||||||
|
pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá atacar.",
|
||||||
|
de: "Während des nächsten Zuges deines Gegners kann das Verteidigende Pokémon nicht angreifen."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 40
|
||||||
|
}, {
|
||||||
|
cost: ["Water", "Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Frost Smash",
|
||||||
|
fr: "Impact Glacial",
|
||||||
|
es: "Golpe Gélido",
|
||||||
|
it: "Gelocolpo",
|
||||||
|
pt: "Pancada Congelada",
|
||||||
|
de: "Frostschlag"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 130
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
61
data/Sword & Shield/Brilliant Stars/044.ts
Normal file
61
data/Sword & Shield/Brilliant Stars/044.ts
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Eiscue",
|
||||||
|
fr: "Bekaglaçon",
|
||||||
|
es: "Eiscue",
|
||||||
|
it: "Eiscue",
|
||||||
|
pt: "Eiscue",
|
||||||
|
de: "Kubuin"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 110,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Block Slider",
|
||||||
|
fr: "Pousse Cube",
|
||||||
|
es: "Bloque Deslizante",
|
||||||
|
it: "Blocco Scivoloso",
|
||||||
|
pt: "Bloco Deslizante",
|
||||||
|
de: "Blockgleiter"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 40 damage to 1 of your opponent's Pokémon for each Fusion Strike Energy attached to all of your Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||||
|
fr: "Cette attaque inflige 40 dégâts à l'un des Pokémon de votre adversaire pour chaque Énergie Poing de Fusion attachée à tous vos Pokémon. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||||||
|
es: "Este ataque hace 40 puntos de daño a 1 de los Pokémon de tu rival por cada Energía Golpe Fusión unida a todos tus Pokémon. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
|
||||||
|
it: "Questo attacco infligge 40 danni a uno dei Pokémon del tuo avversario per ogni Energia Colpo Fusione assegnata ai tuoi Pokémon. Non applicare debolezza e resistenza ai Pokémon in panchina.",
|
||||||
|
pt: "Este ataque causa 40 pontos de dano a 1 dos Pokémon do seu oponente para cada Energia Golpe Fusão ligada a todos os seus Pokémon (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
|
||||||
|
de: "Diese Attacke fügt 1 Pokémon deines Gegners für jede an alle deine Pokémon angelegte Fusionsangriff-Energie 40 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
cost: ["Water", "Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Icicle Missile",
|
||||||
|
fr: "Missile Stalactite",
|
||||||
|
es: "Misil Carámbano",
|
||||||
|
it: "Missilghiaccio",
|
||||||
|
pt: "Míssil Gélido",
|
||||||
|
de: "Eiszapfenrakete"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 100
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "E"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
71
data/Sword & Shield/Brilliant Stars/045.ts
Normal file
71
data/Sword & Shield/Brilliant Stars/045.ts
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Raichu V",
|
||||||
|
fr: "Raichu V",
|
||||||
|
es: "Raichu V",
|
||||||
|
it: "Raichu V",
|
||||||
|
pt: "Raichu V",
|
||||||
|
de: "Raichu V"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 200,
|
||||||
|
types: ["Lightning"],
|
||||||
|
stage: "Basic",
|
||||||
|
suffix: "V",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Lightning"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fast Charge",
|
||||||
|
fr: "Charge Express",
|
||||||
|
es: "Carga Veloz",
|
||||||
|
it: "Velocicarica",
|
||||||
|
pt: "Carga Veloz",
|
||||||
|
de: "Schneller Ladevorgang"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If you go first, you can use this attack during your first turn. Search your deck for a Lightning Energy card and attach it to this Pokémon. Then, shuffle your deck.",
|
||||||
|
fr: "Si vous jouez en premier, vous pouvez utiliser cette attaque pendant votre premier tour. Cherchez dans votre deck une carte Énergie Lightning, puis attachez-la à ce Pokémon. Mélangez ensuite votre deck.",
|
||||||
|
es: "Si sales primero, puedes usar este ataque durante tu primer turno. Busca en tu baraja 1 carta de Energía Lightning y únela a este Pokémon. Después, baraja las cartas de tu baraja.",
|
||||||
|
it: "Se inizi per primo, puoi usare questo attacco durante il tuo primo turno. Cerca nel tuo mazzo una carta Energia Lightning e assegnala a questo Pokémon. Poi rimischia le carte del tuo mazzo.",
|
||||||
|
pt: "Se você for primeiro, poderá usar este ataque no seu primeiro turno. Procure por 1 carta de Energia Lightning no seu baralho e ligue-a a este Pokémon. Em seguida, embaralhe o seu baralho.",
|
||||||
|
de: "Wenn du als Erster am Zug bist, kannst du diese Attacke während deines ersten Zuges einsetzen. Durchsuche dein Deck nach 1 Lightning-Energiekarte und lege sie an dieses Pokémon an. Mische anschließend dein Deck."
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
cost: ["Lightning", "Lightning"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Dynamic Spark",
|
||||||
|
fr: "Étincelle Dynamique",
|
||||||
|
es: "Chispa Dinámica",
|
||||||
|
it: "Dinamiscintilla",
|
||||||
|
pt: "Faísca Dinâmica",
|
||||||
|
de: "Dynamischer Funke"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "You may discard any amount of Lightning Energy from your Pokémon. This attack does 60 damage for each card you discarded in this way.",
|
||||||
|
fr: "Vous pouvez défausser autant d'Énergie Lightning que vous le voulez de vos Pokémon. Cette attaque inflige 60 dégâts pour chaque carte défaussée de cette façon.",
|
||||||
|
es: "Puedes descartar cualquier cantidad de Energías Lightning de tus Pokémon. Este ataque hace 60 puntos de daño por cada carta que hayas descartado de esta manera.",
|
||||||
|
it: "Puoi scartare tutte le Energie Lightning che vuoi dai tuoi Pokémon. Questo attacco infligge 60 danni per ogni carta che hai scartato in questo modo.",
|
||||||
|
pt: "Você pode descartar qualquer quantidade de Energia Lightning dos seus Pokémon. Este ataque causa 60 pontos de dano para cada carta descartada desta forma.",
|
||||||
|
de: "Du kannst beliebig viele Lightning-Energien von deinen Pokémon auf deinen Ablagestapel legen. Diese Attacke fügt für jede auf diese Weise abgelegte Karte 60 Schadenspunkte zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "60×"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
61
data/Sword & Shield/Brilliant Stars/046.ts
Normal file
61
data/Sword & Shield/Brilliant Stars/046.ts
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Electabuzz",
|
||||||
|
fr: "Élektek",
|
||||||
|
es: "Electabuzz",
|
||||||
|
it: "Electabuzz",
|
||||||
|
pt: "Electabuzz",
|
||||||
|
de: "Elektek"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Lightning"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Lightning"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Thunder Wave",
|
||||||
|
fr: "Cage Éclair",
|
||||||
|
es: "Onda Trueno",
|
||||||
|
it: "Tuononda",
|
||||||
|
pt: "Onda de Trovão",
|
||||||
|
de: "Donnerwelle"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
|
||||||
|
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||||||
|
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
|
||||||
|
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
|
||||||
|
pt: "Jogue 1 moeda. Se sair cara, o Pokémon Ativo do seu oponente ficará Paralisado.",
|
||||||
|
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert."
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
cost: ["Lightning", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Head Bolt",
|
||||||
|
fr: "Éclair Frontal",
|
||||||
|
es: "Rayo de Cabeza",
|
||||||
|
it: "Zuccalampo",
|
||||||
|
pt: "Raio de Cabeça",
|
||||||
|
de: "Kopf-Blitz"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
80
data/Sword & Shield/Brilliant Stars/047.ts
Normal file
80
data/Sword & Shield/Brilliant Stars/047.ts
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Electivire",
|
||||||
|
fr: "Élekable",
|
||||||
|
es: "Electivire",
|
||||||
|
it: "Electivire",
|
||||||
|
pt: "Electivire",
|
||||||
|
de: "Elevoltek"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 140,
|
||||||
|
types: ["Lightning"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Electabuzz",
|
||||||
|
fr: "Élektek",
|
||||||
|
es: "Electabuzz",
|
||||||
|
it: "Electabuzz",
|
||||||
|
pt: "Electabuzz",
|
||||||
|
de: "Elektek"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Lightning"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Explosive Bolt",
|
||||||
|
fr: "Foudre Explosive",
|
||||||
|
es: "Rayo Explosivo",
|
||||||
|
it: "Lampo Esplosivo",
|
||||||
|
pt: "Raio Explosivo",
|
||||||
|
de: "Explosiver Blitz"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If any of your Benched Magmortar have any damage counters on them, this attack does 90 more damage.",
|
||||||
|
fr: "Si au moins un marqueur de dégâts est placé sur l'un de vos Maganon de Banc, cette attaque inflige 90 dégâts supplémentaires.",
|
||||||
|
es: "Si alguno de tus Magmortar en Banca tiene algún contador de daño sobre él, este ataque hace 90 puntos de daño más.",
|
||||||
|
it: "Se uno qualsiasi dei tuoi Magmortar in panchina ha dei segnalini danno, questo attacco infligge 90 danni in più.",
|
||||||
|
pt: "Se algum dos seus Magmortar no Banco tiver algum contador de dano nele, este ataque causará 90 pontos de dano a mais.",
|
||||||
|
de: "Wenn auf mindestens 1 Magbrant auf deiner Bank mindestens 1 Schadensmarke liegt, fügt diese Attacke 90 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30+"
|
||||||
|
}, {
|
||||||
|
cost: ["Lightning", "Lightning", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "High-Voltage Current",
|
||||||
|
fr: "Courant Haute-Tension",
|
||||||
|
es: "Corriente de Alta Tensión",
|
||||||
|
it: "Corrente Folgorante",
|
||||||
|
pt: "Corrente de Alta Tensão",
|
||||||
|
de: "Hochspannungsstrom"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 50 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||||
|
fr: "Cette attaque inflige 50 dégâts à chacun des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||||||
|
es: "Este ataque hace 50 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 50 danni a ciascuno dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.",
|
||||||
|
pt: "Este ataque causa 50 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 50 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/048.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/048.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Raikou V",
|
||||||
|
fr: "Raikou V",
|
||||||
|
es: "Raikou V",
|
||||||
|
it: "Raikou V",
|
||||||
|
pt: "Raikou V",
|
||||||
|
de: "Raikou V"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 200,
|
||||||
|
types: ["Lightning"],
|
||||||
|
stage: "Basic",
|
||||||
|
suffix: "V",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fleet-Footed",
|
||||||
|
fr: "Pas Agiles",
|
||||||
|
es: "Celeridad",
|
||||||
|
it: "Corsalesta",
|
||||||
|
pt: "Ligeirinho",
|
||||||
|
de: "Leichtfüßig"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Once during your turn, if this Pokémon is in the Active Spot, you may draw a card.",
|
||||||
|
fr: "Une fois pendant votre tour, si ce Pokémon est sur le Poste Actif, vous pouvez piocher une carte.",
|
||||||
|
es: "Una vez durante tu turno, si este Pokémon está en el Puesto Activo, puedes robar 1 carta.",
|
||||||
|
it: "Una sola volta durante il tuo turno, se questo Pokémon è in posizione attiva, puoi pescare una carta.",
|
||||||
|
pt: "Uma vez durante o seu turno, se este Pokémon estiver no Campo Ativo, você poderá comprar 1 carta.",
|
||||||
|
de: "Einmal während deines Zuges, wenn dieses Pokémon in der Aktiven Position ist, kannst du 1 Karte ziehen."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Lightning", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Lightning Rondo",
|
||||||
|
fr: "Rondo Foudroyant",
|
||||||
|
es: "Rondó Relámpago",
|
||||||
|
it: "Elettrorondò",
|
||||||
|
pt: "Cântico Relampejante",
|
||||||
|
de: "Blitzrondo"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 20 more damage for each Benched Pokémon (both yours and your opponent's).",
|
||||||
|
fr: "Cette attaque inflige 20 dégâts supplémentaires pour chaque Pokémon de Banc (les vôtres et ceux de votre adversaire).",
|
||||||
|
es: "Este ataque hace 20 puntos de daño más por cada Pokémon en Banca (tanto tuyos como de tu rival).",
|
||||||
|
it: "Questo attacco infligge 20 danni in più per ogni Pokémon in panchina, sia tuo che del tuo avversario.",
|
||||||
|
pt: "Este ataque causa 20 pontos de dano a mais para cada Pokémon no Banco (seus e do seu oponente).",
|
||||||
|
de: "Diese Attacke fügt für jedes Pokémon auf der Bank (deiner und der deines Gegners) 20 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
41
data/Sword & Shield/Brilliant Stars/049.ts
Normal file
41
data/Sword & Shield/Brilliant Stars/049.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Shinx",
|
||||||
|
fr: "Lixy",
|
||||||
|
es: "Shinx",
|
||||||
|
it: "Shinx",
|
||||||
|
pt: "Shinx",
|
||||||
|
de: "Sheinux"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 40,
|
||||||
|
types: ["Lightning"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Lightning"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Gnaw",
|
||||||
|
fr: "Ronge",
|
||||||
|
es: "Roer",
|
||||||
|
it: "Rosicchiamento",
|
||||||
|
pt: "Roída",
|
||||||
|
de: "Nagen"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 0,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
60
data/Sword & Shield/Brilliant Stars/050.ts
Normal file
60
data/Sword & Shield/Brilliant Stars/050.ts
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Luxio",
|
||||||
|
fr: "Luxio",
|
||||||
|
es: "Luxio",
|
||||||
|
it: "Luxio",
|
||||||
|
pt: "Luxio",
|
||||||
|
de: "Luxio"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Lightning"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Shinx",
|
||||||
|
fr: "Lixy",
|
||||||
|
es: "Shinx",
|
||||||
|
it: "Shinx",
|
||||||
|
pt: "Shinx",
|
||||||
|
de: "Sheinux"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Lightning"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Thunder Shock",
|
||||||
|
fr: "Éclair",
|
||||||
|
es: "Impactrueno",
|
||||||
|
it: "Tuonoshock",
|
||||||
|
pt: "Trovoada de Choques",
|
||||||
|
de: "Donnerschock"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
|
||||||
|
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||||||
|
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
|
||||||
|
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
|
||||||
|
pt: "Jogue 1 moeda. Se sair cara, o Pokémon Ativo do seu oponente ficará Paralisado.",
|
||||||
|
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
82
data/Sword & Shield/Brilliant Stars/051.ts
Normal file
82
data/Sword & Shield/Brilliant Stars/051.ts
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Luxray",
|
||||||
|
fr: "Luxray",
|
||||||
|
es: "Luxray",
|
||||||
|
it: "Luxray",
|
||||||
|
pt: "Luxray",
|
||||||
|
de: "Luxtra"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 150,
|
||||||
|
types: ["Lightning"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Luxio",
|
||||||
|
fr: "Luxio",
|
||||||
|
es: "Luxio",
|
||||||
|
it: "Luxio",
|
||||||
|
pt: "Luxio",
|
||||||
|
de: "Luxio"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage2",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Lightning"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Energy Crush",
|
||||||
|
fr: "Écras'Énergie",
|
||||||
|
es: "Comprimir Energía",
|
||||||
|
it: "Sgretolenergia",
|
||||||
|
pt: "Esmagamento de Energia",
|
||||||
|
de: "Zermalmende Energie"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 50 damage for each Energy attached to all of your opponent's Pokémon.",
|
||||||
|
fr: "Cette attaque inflige 50 dégâts pour chaque Énergie attachée à tous les Pokémon de votre adversaire.",
|
||||||
|
es: "Este ataque hace 50 puntos de daño por cada Energía unida a todos los Pokémon de tu rival.",
|
||||||
|
it: "Questo attacco infligge 50 danni per ogni Energia assegnata ai Pokémon del tuo avversario.",
|
||||||
|
pt: "Este ataque causa 50 pontos de dano para cada Energia ligada a todos os Pokémon do seu oponente.",
|
||||||
|
de: "Diese Attacke fügt für jede an alle Pokémon deines Gegners angelegte Energie 50 Schadenspunkte zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "50×"
|
||||||
|
}, {
|
||||||
|
cost: ["Lightning"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Flash Impact",
|
||||||
|
fr: "Impact-Flash",
|
||||||
|
es: "Impacto Resplandor",
|
||||||
|
it: "Impattoflash",
|
||||||
|
pt: "Impacto Lampejante",
|
||||||
|
de: "Blitzeinschlag"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack also does 30 damage to 1 of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||||
|
fr: "Cette attaque inflige aussi 30 dégâts à l'un de vos Pokémon de Banc. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||||||
|
es: "Este ataque también hace 30 puntos de daño a 1 de tus Pokémon en Banca. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
|
||||||
|
it: "Questo attacco infligge anche 30 danni a uno dei tuoi Pokémon in panchina. Non applicare debolezza e resistenza ai Pokémon in panchina.",
|
||||||
|
pt: "Este ataque também causa 30 pontos de dano a 1 dos seus Pokémon no Banco (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
|
||||||
|
de: "Diese Attacke fügt auch 1 Pokémon auf deiner Bank 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 110
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Brilliant Stars/052.ts
Normal file
50
data/Sword & Shield/Brilliant Stars/052.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Pachirisu",
|
||||||
|
fr: "Pachirisu",
|
||||||
|
es: "Pachirisu",
|
||||||
|
it: "Pachirisu",
|
||||||
|
pt: "Pachirisu",
|
||||||
|
de: "Pachirisu"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Lightning"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Lightning", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Windup Thunder",
|
||||||
|
fr: "Tonnerre Mécanique",
|
||||||
|
es: "Trueno a Cuerda",
|
||||||
|
it: "Tuono Caricato",
|
||||||
|
pt: "Trovão de Corda",
|
||||||
|
de: "Aufziehdonner"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 30 damage for each Pokémon Tool attached to all of your Pokémon.",
|
||||||
|
fr: "Cette attaque inflige 30 dégâts pour chaque Outil Pokémon attaché à tous vos Pokémon.",
|
||||||
|
es: "Este ataque hace 30 puntos de daño por cada Herramienta Pokémon unida a todos tus Pokémon.",
|
||||||
|
it: "Questo attacco infligge 30 danni per ogni carta Oggetto Pokémon assegnata ai tuoi Pokémon.",
|
||||||
|
pt: "Este ataque causa 30 pontos de dano para cada Ferramenta Pokémon ligada a todos os seus Pokémon.",
|
||||||
|
de: "Diese Attacke fügt für jede an alle deine Pokémon angelegte Pokémon-Ausrüstung 30 Schadenspunkte zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30×"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Brilliant Stars/053.ts
Normal file
54
data/Sword & Shield/Brilliant Stars/053.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Clefairy",
|
||||||
|
fr: "Mélofée",
|
||||||
|
es: "Clefairy",
|
||||||
|
it: "Clefairy",
|
||||||
|
pt: "Clefairy",
|
||||||
|
de: "Piepi"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Psychic"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Pound",
|
||||||
|
fr: "Écras'Face",
|
||||||
|
es: "Destructor",
|
||||||
|
it: "Botta",
|
||||||
|
pt: "Pancada",
|
||||||
|
de: "Klaps"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10
|
||||||
|
}, {
|
||||||
|
cost: ["Psychic", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Magical Shot",
|
||||||
|
fr: "Coup Magique",
|
||||||
|
es: "Disparo Mágico",
|
||||||
|
it: "Magicolpo",
|
||||||
|
pt: "Tiro Mágico",
|
||||||
|
de: "Magischer Schuss"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
71
data/Sword & Shield/Brilliant Stars/054.ts
Normal file
71
data/Sword & Shield/Brilliant Stars/054.ts
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Clefable",
|
||||||
|
fr: "Mélodelfe",
|
||||||
|
es: "Clefable",
|
||||||
|
it: "Clefable",
|
||||||
|
pt: "Clefable",
|
||||||
|
de: "Pixi"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 100,
|
||||||
|
types: ["Psychic"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Clefairy",
|
||||||
|
fr: "Mélofée",
|
||||||
|
es: "Clefairy",
|
||||||
|
it: "Clefairy",
|
||||||
|
pt: "Clefairy",
|
||||||
|
de: "Piepi"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Moonlit Miracle",
|
||||||
|
fr: "Miracle Lunaire",
|
||||||
|
es: "Milagro Luz Lunar",
|
||||||
|
it: "Prodigio Chiarodiluna",
|
||||||
|
pt: "Milagre Enluarado",
|
||||||
|
de: "Mondscheinwunder"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip 3 coins. Choose a number of your Pokémon in play up to the number of heads. For each of those Pokémon, search your deck for a card that evolves from that Pokémon and put it onto that Pokémon to evolve it. Then, shuffle your deck.",
|
||||||
|
fr: "Lancez 3 pièces. Parmi vos Pokémon en jeu, choisissez un nombre de Pokémon inférieur ou égal au nombre de côtés face obtenus. Pour chacun de ces Pokémon, cherchez dans votre deck une carte Évolution de ce Pokémon-là, puis placez-la sur ce dernier pour le faire évoluer. Mélangez ensuite votre deck.",
|
||||||
|
es: "Lanza 3 monedas. Elige una cantidad de tus Pokémon en juego igual o inferior al número de caras que te hayan salido. Para cada uno de esos Pokémon, busca en tu baraja 1 carta que evolucione de ese Pokémon y ponla sobre ese Pokémon para hacerlo evolucionar. Después, baraja las cartas de tu baraja.",
|
||||||
|
it: "Lancia tre volte una moneta. Scegli un numero di Pokémon che hai in gioco uguale o inferiore al numero di volte in cui è uscito testa. Per ognuno di quei Pokémon, cerca nel tuo mazzo una carta che si evolve da quel Pokémon e metticela sopra per farlo evolvere. Poi rimischia le carte del tuo mazzo.",
|
||||||
|
pt: "Jogue 3 moedas. Escolha um número dos seus Pokémon em jogo até o número de caras. Para cada um daqueles Pokémon, procure por 1 carta no seu baralho que evolua daquele Pokémon e coloque-a sobre aquele Pokémon para evoluí-lo. Em seguida, embaralhe o seu baralho.",
|
||||||
|
de: "Wirf 3 Münzen. Wähle bis zu so viele deiner Pokémon im Spiel, wie du Kopf geworfen hast. Durchsuche für jedes jener Pokémon dein Deck nach 1 Karte, die sich aus jenem Pokémon entwickelt, und lege sie auf jenes Pokémon, um es zu entwickeln. Mische anschließend dein Deck."
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
cost: ["Psychic", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Magical Shot",
|
||||||
|
fr: "Coup Magique",
|
||||||
|
es: "Disparo Mágico",
|
||||||
|
it: "Magicolpo",
|
||||||
|
pt: "Tiro Mágico",
|
||||||
|
de: "Magischer Schuss"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 90
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/055.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/055.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Starmie",
|
||||||
|
fr: "Staross",
|
||||||
|
es: "Starmie",
|
||||||
|
it: "Starmie",
|
||||||
|
pt: "Starmie",
|
||||||
|
de: "Starmie"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Psychic"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Staryu",
|
||||||
|
fr: "Stari",
|
||||||
|
es: "Staryu",
|
||||||
|
it: "Staryu",
|
||||||
|
pt: "Staryu",
|
||||||
|
de: "Sterndu"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Psychic"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Psychic",
|
||||||
|
fr: "Psyko",
|
||||||
|
es: "Psíquico",
|
||||||
|
it: "Psichico",
|
||||||
|
pt: "Psíquico",
|
||||||
|
de: "Psychokinese"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 30 more damage for each Energy attached to your opponent's Active Pokémon.",
|
||||||
|
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Actif de votre adversaire.",
|
||||||
|
es: "Este ataque hace 30 puntos de daño más por cada Energía unida al Pokémon Activo de tu rival.",
|
||||||
|
it: "Questo attacco infligge 30 danni in più per ogni Energia assegnata al Pokémon attivo del tuo avversario.",
|
||||||
|
pt: "Este ataque causa 30 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 30 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10+"
|
||||||
|
}, {
|
||||||
|
cost: ["Psychic"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Power Gem",
|
||||||
|
fr: "Rayon Gemme",
|
||||||
|
es: "Joya de Luz",
|
||||||
|
it: "Gemmoforza",
|
||||||
|
pt: "Gema Poderosa",
|
||||||
|
de: "Juwelenkraft"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 60
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 0,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
63
data/Sword & Shield/Brilliant Stars/056.ts
Normal file
63
data/Sword & Shield/Brilliant Stars/056.ts
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Mewtwo",
|
||||||
|
fr: "Mewtwo",
|
||||||
|
es: "Mewtwo",
|
||||||
|
it: "Mewtwo",
|
||||||
|
pt: "Mewtwo",
|
||||||
|
de: "Mewtu"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 130,
|
||||||
|
types: ["Psychic"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Psychic"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Life Sucker",
|
||||||
|
fr: "Aspire-Vie",
|
||||||
|
es: "Sorbevidas",
|
||||||
|
it: "Aspiravita",
|
||||||
|
pt: "Sugador de Vida",
|
||||||
|
de: "Lebenssauger"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Heal 20 damage from this Pokémon.",
|
||||||
|
fr: "Soignez 20 dégâts de ce Pokémon.",
|
||||||
|
es: "Cura 20 puntos de daño a este Pokémon.",
|
||||||
|
it: "Cura questo Pokémon da 20 danni.",
|
||||||
|
pt: "Cure 20 pontos de dano deste Pokémon.",
|
||||||
|
de: "Heile 20 Schadenspunkte bei diesem Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20
|
||||||
|
}, {
|
||||||
|
cost: ["Psychic", "Psychic", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Psyburn",
|
||||||
|
fr: "Brûlure Psy",
|
||||||
|
es: "Psicoquemadura",
|
||||||
|
it: "Psicobrucia",
|
||||||
|
pt: "Queimadura Psíquica",
|
||||||
|
de: "Psychoverbrennung"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 110
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/057.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/057.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Granbull V",
|
||||||
|
fr: "Granbull V",
|
||||||
|
es: "Granbull V",
|
||||||
|
it: "Granbull V",
|
||||||
|
pt: "Granbull V",
|
||||||
|
de: "Granbull V"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 210,
|
||||||
|
types: ["Psychic"],
|
||||||
|
stage: "Basic",
|
||||||
|
suffix: "V",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Chomp",
|
||||||
|
fr: "Mâche",
|
||||||
|
es: "Masticar",
|
||||||
|
it: "Biascicamento",
|
||||||
|
pt: "Nhoc",
|
||||||
|
de: "Mampf"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 10 more damage for each damage counter on this Pokémon.",
|
||||||
|
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts sur ce Pokémon.",
|
||||||
|
es: "Este ataque hace 10 puntos de daño más por cada contador de daño en este Pokémon.",
|
||||||
|
it: "Questo attacco infligge 10 danni in più per ogni segnalino danno presente su questo Pokémon.",
|
||||||
|
pt: "Este ataque causa 10 pontos de dano a mais para cada contador de dano neste Pokémon.",
|
||||||
|
de: "Diese Attacke fügt für jede Schadensmarke auf diesem Pokémon 10 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30+"
|
||||||
|
}, {
|
||||||
|
cost: ["Psychic", "Psychic", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bull Dash",
|
||||||
|
fr: "Ruée Frontale",
|
||||||
|
es: "Choque Bravo",
|
||||||
|
it: "Corsa Bull",
|
||||||
|
pt: "Arremetida Violenta",
|
||||||
|
de: "Bullspurt"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This Pokémon also does 30 damage to itself.",
|
||||||
|
fr: "Ce Pokémon s'inflige aussi 30 dégâts.",
|
||||||
|
es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.",
|
||||||
|
it: "Questo Pokémon infligge anche 30 danni a se stesso.",
|
||||||
|
pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.",
|
||||||
|
de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 190
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Brilliant Stars/058.ts
Normal file
50
data/Sword & Shield/Brilliant Stars/058.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Baltoy",
|
||||||
|
fr: "Balbuto",
|
||||||
|
es: "Baltoy",
|
||||||
|
it: "Baltoy",
|
||||||
|
pt: "Baltoy",
|
||||||
|
de: "Puppance"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Psychic"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Triple Spin",
|
||||||
|
fr: "Triple Tour",
|
||||||
|
es: "Triple Giro",
|
||||||
|
it: "Triploturbo",
|
||||||
|
pt: "Giro Triplo",
|
||||||
|
de: "Dreifachdreher"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip 3 coins. This attack does 20 damage for each heads.",
|
||||||
|
fr: "Lancez 3 pièces. Cette attaque inflige 20 dégâts pour chaque côté face.",
|
||||||
|
es: "Lanza 3 monedas. Este ataque hace 20 puntos de daño por cada cara.",
|
||||||
|
it: "Lancia tre volte una moneta. Questo attacco infligge 20 danni ogni volta che esce testa.",
|
||||||
|
pt: "Jogue 3 moedas. Este ataque causa 20 pontos de dano para cada cara.",
|
||||||
|
de: "Wirf 3 Münzen. Diese Attacke fügt 20 Schadenspunkte pro Kopf zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20×"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/059.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/059.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Claydol",
|
||||||
|
fr: "Kaorine",
|
||||||
|
es: "Claydol",
|
||||||
|
it: "Claydol",
|
||||||
|
pt: "Claydol",
|
||||||
|
de: "Lepumentas"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 110,
|
||||||
|
types: ["Psychic"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Baltoy",
|
||||||
|
fr: "Balbuto",
|
||||||
|
es: "Baltoy",
|
||||||
|
it: "Baltoy",
|
||||||
|
pt: "Baltoy",
|
||||||
|
de: "Puppance"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Spinning Attack",
|
||||||
|
fr: "Attaque Tournante",
|
||||||
|
es: "Ataque Giratorio",
|
||||||
|
it: "Attacco Rotante",
|
||||||
|
pt: "Ataque Giratório",
|
||||||
|
de: "Rundumangriff"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 40
|
||||||
|
}, {
|
||||||
|
cost: ["Psychic", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Coinciding Figures",
|
||||||
|
fr: "Caractères Correspondants",
|
||||||
|
es: "Figuras Coincidentes",
|
||||||
|
it: "Statue Identiche",
|
||||||
|
pt: "Figuras Espelhadas",
|
||||||
|
de: "Übereinstimmende Zahlen"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If you and your opponent have the same number of Benched Pokémon, this attack does 90 more damage.",
|
||||||
|
fr: "Si vous avez le même nombre de Pokémon de Banc que votre adversaire, cette attaque inflige 90 dégâts supplémentaires.",
|
||||||
|
es: "Si tu rival y tú tenéis la misma cantidad de Pokémon en Banca, este ataque hace 90 puntos de daño más.",
|
||||||
|
it: "Se tu e il tuo avversario avete lo stesso numero di Pokémon in panchina, questo attacco infligge 90 danni in più.",
|
||||||
|
pt: "Se você e o seu oponente tiverem o mesmo número de Pokémon no Banco, este ataque causará 90 pontos de dano a mais.",
|
||||||
|
de: "Wenn du genauso viele Pokémon auf der Bank hast wie dein Gegner, fügt diese Attacke 90 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "90+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Brilliant Stars/060.ts
Normal file
50
data/Sword & Shield/Brilliant Stars/060.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Duskull",
|
||||||
|
fr: "Skelénox",
|
||||||
|
es: "Duskull",
|
||||||
|
it: "Duskull",
|
||||||
|
pt: "Duskull",
|
||||||
|
de: "Zwirrlicht"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Psychic"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Psychic"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Perplex",
|
||||||
|
fr: "Affolement",
|
||||||
|
es: "Desconcierto",
|
||||||
|
it: "Sconcerto",
|
||||||
|
pt: "Perplexo",
|
||||||
|
de: "Perplex"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Confused.",
|
||||||
|
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Confus.",
|
||||||
|
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Confundido.",
|
||||||
|
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene confuso.",
|
||||||
|
pt: "Jogue 1 moeda. Se sair cara, o Pokémon Ativo do seu oponente ficará Confuso.",
|
||||||
|
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt verwirrt."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
60
data/Sword & Shield/Brilliant Stars/061.ts
Normal file
60
data/Sword & Shield/Brilliant Stars/061.ts
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Dusclops",
|
||||||
|
fr: "Téraclope",
|
||||||
|
es: "Dusclops",
|
||||||
|
it: "Dusclops",
|
||||||
|
pt: "Dusclops",
|
||||||
|
de: "Zwirrklop"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Psychic"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Duskull",
|
||||||
|
fr: "Skelénox",
|
||||||
|
es: "Duskull",
|
||||||
|
it: "Duskull",
|
||||||
|
pt: "Duskull",
|
||||||
|
de: "Zwirrlicht"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Psychic"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fade to Black",
|
||||||
|
fr: "Fondu au Noir",
|
||||||
|
es: "Ennegrecer",
|
||||||
|
it: "Svanire nel Buio",
|
||||||
|
pt: "Breu",
|
||||||
|
de: "Schwarz vor Augen"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Your opponent's Active Pokémon is now Confused.",
|
||||||
|
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
|
||||||
|
es: "El Pokémon Activo de tu rival pasa a estar Confundido.",
|
||||||
|
it: "Il Pokémon attivo del tuo avversario viene confuso.",
|
||||||
|
pt: "O Pokémon Ativo do seu oponente agora está Confuso.",
|
||||||
|
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/062.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/062.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Dusknoir",
|
||||||
|
fr: "Noctunoir",
|
||||||
|
es: "Dusknoir",
|
||||||
|
it: "Dusknoir",
|
||||||
|
pt: "Dusknoir",
|
||||||
|
de: "Zwirrfinst"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 160,
|
||||||
|
types: ["Psychic"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Dusclops",
|
||||||
|
fr: "Téraclope",
|
||||||
|
es: "Dusclops",
|
||||||
|
it: "Dusclops",
|
||||||
|
pt: "Dusclops",
|
||||||
|
de: "Zwirrklop"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage2",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Special Transfer",
|
||||||
|
fr: "Transfert Spécial",
|
||||||
|
es: "Transferencia Especial",
|
||||||
|
it: "Transfer Speciale",
|
||||||
|
pt: "Transferência Especial",
|
||||||
|
de: "Spezialtransfer"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "As often as you like during your turn, you may move a Special Energy from 1 of your Pokémon to another of your Pokémon.",
|
||||||
|
fr: "Autant de fois que vous le voulez pendant votre tour, vous pouvez déplacer une Énergie spéciale de l'un de vos Pokémon vers un autre de vos Pokémon.",
|
||||||
|
es: "Todas las veces que quieras durante tu turno, puedes mover 1 Energía Especial de 1 de tus Pokémon a otro de tus Pokémon.",
|
||||||
|
it: "Durante il tuo turno, puoi spostare un'Energia speciale da uno a un altro dei tuoi Pokémon tutte le volte che vuoi.",
|
||||||
|
pt: "Quantas vezes desejar durante o seu turno, você poderá mover 1 Energia Especial de 1 dos seus Pokémon para outro Pokémon seu.",
|
||||||
|
de: "Beliebig oft während deines Zuges kannst du 1 Spezial-Energie von 1 deiner Pokémon auf 1 anderes deiner Pokémon verschieben."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Psychic", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Devour Soul",
|
||||||
|
fr: "Dévoreur d'Âmes",
|
||||||
|
es: "Devorar Almas",
|
||||||
|
it: "Divoranima",
|
||||||
|
pt: "Devorador de Almas",
|
||||||
|
de: "Seelenverschlinger"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 120
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
61
data/Sword & Shield/Brilliant Stars/063.ts
Normal file
61
data/Sword & Shield/Brilliant Stars/063.ts
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Chimecho",
|
||||||
|
fr: "Éoko",
|
||||||
|
es: "Chimecho",
|
||||||
|
it: "Chimecho",
|
||||||
|
pt: "Chimecho",
|
||||||
|
de: "Palimpalim"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Psychic"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Clear Tone",
|
||||||
|
fr: "Tonalité Libre",
|
||||||
|
es: "Tono Claro",
|
||||||
|
it: "Tono Chiaro",
|
||||||
|
pt: "Tom Inconfundível",
|
||||||
|
de: "Klarer Ton"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Search your deck for up to 2 Special Energy cards, reveal them, and put them into your hand. Then, shuffle your deck.",
|
||||||
|
fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie spéciale, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
|
||||||
|
es: "Busca en tu baraja hasta 2 cartas de Energía Especial, enséñalas y ponlas en tu mano. Después, baraja las cartas de tu baraja.",
|
||||||
|
it: "Cerca nel tuo mazzo fino a due carte Energia speciale, mostrale e aggiungile alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
||||||
|
pt: "Procure por até 2 cartas de Energia Especial no seu baralho, revele-as e coloque-as na sua mão. Em seguida, embaralhe o seu baralho.",
|
||||||
|
de: "Durchsuche dein Deck nach bis zu 2 Spezial-Energiekarten, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Hang Down",
|
||||||
|
fr: "Suspension",
|
||||||
|
es: "Prender",
|
||||||
|
it: "Tirar Giù",
|
||||||
|
pt: "Dependurar",
|
||||||
|
de: "Herunterhängen"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/064.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/064.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Whimsicott V",
|
||||||
|
fr: "Farfaduvet V",
|
||||||
|
es: "Whimsicott V",
|
||||||
|
it: "Whimsicott V",
|
||||||
|
pt: "Whimsicott V",
|
||||||
|
de: "Elfun V"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 190,
|
||||||
|
types: ["Psychic"],
|
||||||
|
stage: "Basic",
|
||||||
|
suffix: "V",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Psychic"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fluff Gets in the Way",
|
||||||
|
fr: "C'est Coton",
|
||||||
|
es: "Pelusa Molesta",
|
||||||
|
it: "Morbidostacolo",
|
||||||
|
pt: "Algodão Inconveniente",
|
||||||
|
de: "Flauschiges Hindernis"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If the Defending Pokémon is a Basic Pokémon, it can't attack during your opponent's next turn.",
|
||||||
|
fr: "Si le Pokémon Défenseur est un Pokémon de base, il ne peut pas attaquer pendant le prochain tour de votre adversaire.",
|
||||||
|
es: "Si el Pokémon Defensor es un Pokémon Básico, no puede atacar durante el próximo turno de tu rival.",
|
||||||
|
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può attaccare se è un Pokémon Base.",
|
||||||
|
pt: "Se o Pokémon Defensor for um Pokémon Básico, ele não poderá atacar durante o próximo turno do seu oponente.",
|
||||||
|
de: "Wenn das Verteidigende Pokémon ein Basis-Pokémon ist, kann es während des nächsten Zuges deines Gegners nicht angreifen."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20
|
||||||
|
}, {
|
||||||
|
cost: ["Psychic", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Cotton Guard",
|
||||||
|
fr: "Cotogarde",
|
||||||
|
es: "Rizo Algodón",
|
||||||
|
it: "Cotonscudo",
|
||||||
|
pt: "Proteção de Algodão",
|
||||||
|
de: "Watteschild"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "During your opponent's next turn, this Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
|
||||||
|
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
|
||||||
|
es: "Durante el próximo turno de tu rival, los ataques hacen 30 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).",
|
||||||
|
it: "Durante il prossimo turno del tuo avversario, questo Pokémon subisce 30 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.",
|
||||||
|
pt: "Durante o próximo turno do seu oponente, este Pokémon receberá 30 pontos de dano a menos de ataques (depois de aplicar Fraqueza e Resistência).",
|
||||||
|
de: "Während des nächsten Zuges deines Gegners werden diesem Pokémon durch Attacken 30 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 90
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
81
data/Sword & Shield/Brilliant Stars/065.ts
Normal file
81
data/Sword & Shield/Brilliant Stars/065.ts
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Whimsicott VSTAR",
|
||||||
|
fr: "Farfaduvet VSTAR",
|
||||||
|
es: "Whimsicott V-ASTRO",
|
||||||
|
it: "Whimsicott V ASTRO",
|
||||||
|
pt: "Whimsicott V-ASTRO",
|
||||||
|
de: "Elfun VSTAR"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 250,
|
||||||
|
types: ["Psychic"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Whimsicott V",
|
||||||
|
fr: "Farfaduvet-V",
|
||||||
|
es: "Whimsicott V",
|
||||||
|
it: "Whimsicott-V",
|
||||||
|
pt: "Whimsicott V",
|
||||||
|
de: "Elfun-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "VSTAR",
|
||||||
|
suffix: "V",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Psychic", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Trick Wind",
|
||||||
|
fr: "Vent Piégeux",
|
||||||
|
es: "Viento Travieso",
|
||||||
|
it: "Furbovento",
|
||||||
|
pt: "Vento Travesso",
|
||||||
|
de: "Trickwind"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "During your opponent's next turn, they can't play any Pokémon Tool or Special Energy cards from their hand.",
|
||||||
|
fr: "Pendant le prochain tour de votre adversaire, il ne peut pas jouer de cartes Outil Pokémon ou Énergie spéciale de sa main.",
|
||||||
|
es: "Durante el próximo turno de tu rival, este no puede jugar ninguna carta de Herramienta Pokémon o de Energía Especial de su mano.",
|
||||||
|
it: "Durante il suo prossimo turno, il tuo avversario non può giocare le carte Oggetto Pokémon o Energia speciale che ha in mano.",
|
||||||
|
pt: "Durante o próximo turno do seu oponente, ele(a) não poderá jogar nenhuma carta de Ferramenta Pokémon ou de Energia Especial da própria mão.",
|
||||||
|
de: "Dein Gegner kann während seines nächsten Zuges keine Pokémon-Ausrüstungen oder Spezial-Energiekarten aus seiner Hand spielen."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 160
|
||||||
|
}, {
|
||||||
|
cost: ["Psychic"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fluffball Star",
|
||||||
|
fr: "Douillet Star",
|
||||||
|
es: "Astro Pelusa",
|
||||||
|
it: "Astro Batuffolo",
|
||||||
|
pt: "Bola Felpuda Astral",
|
||||||
|
de: "Flauschballstern"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 60 damage to 1 of your opponent's Pokémon for each Energy attached to this Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) (You can't use more than 1 VSTAR Power in a game.)",
|
||||||
|
fr: "Cette attaque inflige 60 dégâts à l'un des Pokémon de votre adversaire pour chaque Énergie attachée à ce Pokémon. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)(Vous ne pouvez utiliser qu'une seule Puissance VSTAR par partie.)",
|
||||||
|
es: "Este ataque hace 60 puntos de daño a 1 de los Pokémon de tu rival por cada Energía unida a este Pokémon. (No apliques Debilidad y Resistencia a los Pokémon en Banca). (No puedes usar más de 1 Poder V-ASTRO en una partida).",
|
||||||
|
it: "Questo attacco infligge 60 danni a uno dei Pokémon del tuo avversario per ogni Energia assegnata a questo Pokémon. Non applicare debolezza e resistenza ai Pokémon in panchina.Non puoi usare più di un Potere V ASTRO a partita.",
|
||||||
|
pt: "Este ataque causa 60 pontos de dano a 1 um dos Pokémon do seu oponente para cada Energia ligada a este Pokémon (não aplique Fraqueza e Resistência aos Pokémon no Banco). (Você não pode usar mais de 1 Poder V-ASTRO por partida.)",
|
||||||
|
de: "Diese Attacke fügt für jede an dieses Pokémon angelegte Energie 1 Pokémon deines Gegners 60 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.) (Du kannst pro Spiel nur 1 VSTAR-Power einsetzen.)"
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
70
data/Sword & Shield/Brilliant Stars/066.ts
Normal file
70
data/Sword & Shield/Brilliant Stars/066.ts
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Sigilyph",
|
||||||
|
fr: "Cryptéro",
|
||||||
|
es: "Sigilyph",
|
||||||
|
it: "Sigilyph",
|
||||||
|
pt: "Sigilyph",
|
||||||
|
de: "Symvolara"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 110,
|
||||||
|
types: ["Psychic"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Psychic"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Tri Recharge",
|
||||||
|
fr: "Triple Recharge",
|
||||||
|
es: "Triple Recarga",
|
||||||
|
it: "Ricarica Tripla",
|
||||||
|
pt: "Trirrecarga",
|
||||||
|
de: "Dreifache Aufladung"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip 3 coins. Attach a number of basic Energy cards up to the number of heads from your discard pile to your Benched Pokémon in any way you like.",
|
||||||
|
fr: "Lancez 3 pièces. Attachez comme il vous plaît de votre pile de défausse à vos Pokémon de Banc un nombre de cartes Énergie de base inférieur ou égal au nombre de côtés face obtenus.",
|
||||||
|
es: "Lanza 3 monedas. Une una cantidad de cartas de Energía Básica, igual o inferior al número de caras que te hayan salido, de tu pila de descartes a tus Pokémon en Banca de la manera que desees.",
|
||||||
|
it: "Lancia tre volte una moneta. Assegna ai tuoi Pokémon in panchina un numero di carte Energia base dalla tua pila degli scarti uguale o inferiore al numero di volte in cui è uscito testa nel modo che preferisci.",
|
||||||
|
pt: "Jogue 3 moedas. Ligue um número de cartas de Energia básica da sua pilha de descarte até o número de caras aos seus Pokémon no Banco como desejar.",
|
||||||
|
de: "Wirf 3 Münzen. Lege bis zu so viele Basis-Energiekarten, wie du Kopf geworfen hast, aus deinem Ablagestapel beliebig an die Pokémon auf deiner Bank an."
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
cost: ["Psychic", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Psychic",
|
||||||
|
fr: "Psyko",
|
||||||
|
es: "Psíquico",
|
||||||
|
it: "Psichico",
|
||||||
|
pt: "Psíquico",
|
||||||
|
de: "Psychokinese"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 30 more damage for each Energy attached to your opponent's Active Pokémon.",
|
||||||
|
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Actif de votre adversaire.",
|
||||||
|
es: "Este ataque hace 30 puntos de daño más por cada Energía unida al Pokémon Activo de tu rival.",
|
||||||
|
it: "Questo attacco infligge 30 danni in più per ogni Energia assegnata al Pokémon attivo del tuo avversario.",
|
||||||
|
pt: "Este ataque causa 30 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 30 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Brilliant Stars/067.ts
Normal file
50
data/Sword & Shield/Brilliant Stars/067.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Dedenne",
|
||||||
|
fr: "Dedenne",
|
||||||
|
es: "Dedenne",
|
||||||
|
it: "Dedenne",
|
||||||
|
pt: "Dedenne",
|
||||||
|
de: "Dedenne"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Psychic"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Psychic"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Dede-Flash",
|
||||||
|
fr: "Dede-Flash",
|
||||||
|
es: "Dede-Flash",
|
||||||
|
it: "Dedeflash",
|
||||||
|
pt: "Dedeclarão",
|
||||||
|
de: "Dedeblitz"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If your opponent has exactly 1 Prize card remaining, this attack does 60 more damage, and your opponent's Active Pokémon is now Confused.",
|
||||||
|
fr: "S'il reste exactement une carte Récompense à votre adversaire, cette attaque inflige 60 dégâts supplémentaires, et le Pokémon Actif de votre adversaire est maintenant Confus.",
|
||||||
|
es: "Si a tu rival le queda exactamente 1 carta de Premio, este ataque hace 60 puntos de daño más, y el Pokémon Activo de tu rival pasa a estar Confundido.",
|
||||||
|
it: "Se il tuo avversario ha esattamente una carta Premio rimanente, questo attacco infligge 60 danni in più e il Pokémon attivo del tuo avversario viene confuso.",
|
||||||
|
pt: "Se o seu oponente tiver exatamente 1 carta de Prêmio restante, este ataque causará 60 pontos de dano a mais e o Pokémon Ativo do seu oponente ficará Confuso.",
|
||||||
|
de: "Wenn dein Gegner genau 1 verbleibende Preiskarte hat, fügt diese Attacke 60 Schadenspunkte mehr zu und das Aktive Pokémon deines Gegners ist jetzt verwirrt."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "E"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
71
data/Sword & Shield/Brilliant Stars/068.ts
Normal file
71
data/Sword & Shield/Brilliant Stars/068.ts
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Mimikyu V",
|
||||||
|
fr: "Mimiqui V",
|
||||||
|
es: "Mimikyu V",
|
||||||
|
it: "Mimikyu V",
|
||||||
|
pt: "Mimikyu V",
|
||||||
|
de: "Mimigma V"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 160,
|
||||||
|
types: ["Psychic"],
|
||||||
|
stage: "Basic",
|
||||||
|
suffix: "V",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Dummy Doll",
|
||||||
|
fr: "Poupée Mannequin",
|
||||||
|
es: "Muñeco Ficticio",
|
||||||
|
it: "Fantoccio",
|
||||||
|
pt: "Boneco Postiço",
|
||||||
|
de: "Attrappenpuppe"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "When you play this Pokémon from your hand onto your Bench during your turn, you may prevent all damage done to this Mimikyu V by attacks from your opponent's Pokémon until the end of your opponent's next turn.",
|
||||||
|
fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez éviter tous les dégâts infligés à ce Mimiqui-V par les attaques des Pokémon de votre adversaire jusqu'à la fin du prochain tour de celui-ci.",
|
||||||
|
es: "Cuando juegas este Pokémon de tu mano a tu Banca durante tu turno, puedes evitar todo el daño infligido a este Mimikyu V por ataques de los Pokémon de tu rival hasta el final del próximo turno de tu rival.",
|
||||||
|
it: "Quando giochi questo Pokémon dalla tua mano e lo metti in panchina durante il tuo turno, puoi prevenire tutti i danni inflitti a questo Mimikyu-V dagli attacchi dei Pokémon del tuo avversario fino alla fine del suo prossimo turno.",
|
||||||
|
pt: "Quando você jogar este Pokémon da sua mão para o seu Banco durante o seu turno, você poderá prevenir todo o dano causado a este Mimikyu V por ataques dos Pokémon do seu oponente até o final do próximo turno do seu oponente.",
|
||||||
|
de: "Wenn du dieses Pokémon während deines Zuges aus deiner Hand auf deine Bank spielst, kannst du bis zum Ende des nächsten Zuges deines Gegners allen Schaden, der diesem Mimigma-V durch Attacken der Pokémon deines Gegners zugefügt wird, verhindern."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Psychic"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Jealous Eyes",
|
||||||
|
fr: "Regard Envieux",
|
||||||
|
es: "Ojos Celosos",
|
||||||
|
it: "Sguardo Invidioso",
|
||||||
|
pt: "Olhar Invejoso",
|
||||||
|
de: "Neidische Augen"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Put 3 damage counters on your opponent's Active Pokémon for each Prize card your opponent has taken.",
|
||||||
|
fr: "Placez 3 marqueurs de dégâts sur le Pokémon Actif de votre adversaire pour chaque carte Récompense que votre adversaire a récupérée.",
|
||||||
|
es: "Pon 3 contadores de daño en el Pokémon Activo de tu rival por cada carta de Premio que haya cogido tu rival.",
|
||||||
|
it: "Metti tre segnalini danno sul Pokémon attivo del tuo avversario per ogni carta Premio che ha preso.",
|
||||||
|
pt: "Coloque 3 contadores de dano no Pokémon Ativo do seu oponente para cada carta de Prêmio que seu oponente pegou.",
|
||||||
|
de: "Lege für jede von deinem Gegner genommene Preiskarte 3 Schadensmarken auf das Aktive Pokémon deines Gegners."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "E"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
80
data/Sword & Shield/Brilliant Stars/069.ts
Normal file
80
data/Sword & Shield/Brilliant Stars/069.ts
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Mimikyu VMAX",
|
||||||
|
fr: "Mimiqui VMAX",
|
||||||
|
es: "Mimikyu VMAX",
|
||||||
|
it: "Mimikyu VMAX",
|
||||||
|
pt: "Mimikyu VMAX",
|
||||||
|
de: "Mimigma VMAX"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 300,
|
||||||
|
types: ["Psychic"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Mimikyu V",
|
||||||
|
fr: "Mimiqui-V",
|
||||||
|
es: "Mimikyu V",
|
||||||
|
it: "Mimikyu-V",
|
||||||
|
pt: "Mimikyu V",
|
||||||
|
de: "Mimigma-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "VMAX",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Ominous Numbers",
|
||||||
|
fr: "Compte Inquiétant",
|
||||||
|
es: "Números de Mal Agüero",
|
||||||
|
it: "Numeri Funesti",
|
||||||
|
pt: "Números Tenebrosos",
|
||||||
|
de: "Unheilvolle Zahlen"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Put 4 damage counters on your opponent's Pokémon in any way you like. If you played Acerola's Premonition from your hand during this turn, place 13 damage counters instead.",
|
||||||
|
fr: "Placez 4 marqueurs de dégâts sur les Pokémon de votre adversaire comme il vous plaît. Si vous avez joué Prémonition de Margie de votre main pendant ce tour, placez 13 marqueurs de dégâts à la place.",
|
||||||
|
es: "Pon 4 contadores de daño en los Pokémon de tu rival de la manera que desees. Si has jugado Presentimiento de Zarala de tu mano durante este turno, pon 13 contadores de daño en vez de 4.",
|
||||||
|
it: "Metti quattro segnalini danno sui Pokémon del tuo avversario nel modo che preferisci. Se hai giocato Premonizione di Malpi dalla tua mano durante questo turno, invece mettine 13.",
|
||||||
|
pt: "Coloque 4 contadores de dano nos Pokémon do seu oponente como desejar. Se você jogou Premonição da Acerola da sua mão durante este turno, coloque 13 contadores de dano ao invés de 4.",
|
||||||
|
de: "Lege 4 Schadensmarken beliebig auf die Pokémon deines Gegners. Wenn du Lolas Vorahnung während dieses Zuges aus deiner Hand gespielt hast, platziere stattdessen 13 Schadensmarken."
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
cost: ["Psychic", "Psychic"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Max Shadow",
|
||||||
|
fr: "Ombromax",
|
||||||
|
es: "Maxipenumbra",
|
||||||
|
it: "Dynaombra",
|
||||||
|
pt: "Sombra Max",
|
||||||
|
de: "Dyna-Schatten"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard a random card from your opponent's hand.",
|
||||||
|
fr: "Défaussez au hasard une carte de la main de votre adversaire.",
|
||||||
|
es: "Descarta 1 carta aleatoria de la mano de tu rival.",
|
||||||
|
it: "Scarta una carta a caso dalla mano del tuo avversario.",
|
||||||
|
pt: "Descarte 1 carta aleatória da mão do seu oponente.",
|
||||||
|
de: "Lege 1 zufällige Karte aus der Hand deines Gegners auf seinen Ablagestapel."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 120
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "E"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
61
data/Sword & Shield/Brilliant Stars/070.ts
Normal file
61
data/Sword & Shield/Brilliant Stars/070.ts
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Milcery",
|
||||||
|
fr: "Crèmy",
|
||||||
|
es: "Milcery",
|
||||||
|
it: "Milcery",
|
||||||
|
pt: "Milcery",
|
||||||
|
de: "Hokumil"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Psychic"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Psychic"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Lead",
|
||||||
|
fr: "Mentor",
|
||||||
|
es: "Liderazgo",
|
||||||
|
it: "Guidare",
|
||||||
|
pt: "Liderar",
|
||||||
|
de: "Führen"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Search your deck for a Supporter card, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||||||
|
fr: "Cherchez dans votre deck une carte Supporter, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
|
||||||
|
es: "Busca en tu baraja 1 carta de Partidario, enséñala y ponla en tu mano. Después, baraja las cartas de tu baraja.",
|
||||||
|
it: "Cerca nel tuo mazzo una carta Aiuto, mostrala e aggiungila a quelle che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
||||||
|
pt: "Procure por 1 carta de Apoiador no seu baralho, revele-a e coloque-a na sua mão. Em seguida, embaralhe o seu baralho.",
|
||||||
|
de: "Durchsuche dein Deck nach 1 Unterstützerkarte, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
cost: ["Psychic"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Ram",
|
||||||
|
fr: "Collision",
|
||||||
|
es: "Apisonar",
|
||||||
|
it: "Carica",
|
||||||
|
pt: "Aríete",
|
||||||
|
de: "Ramme"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "E"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
82
data/Sword & Shield/Brilliant Stars/071.ts
Normal file
82
data/Sword & Shield/Brilliant Stars/071.ts
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Alcremie",
|
||||||
|
fr: "Charmilly",
|
||||||
|
es: "Alcremie",
|
||||||
|
it: "Alcremie",
|
||||||
|
pt: "Alcremie",
|
||||||
|
de: "Pokusan"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Psychic"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Milcery",
|
||||||
|
fr: "Crèmy",
|
||||||
|
es: "Milcery",
|
||||||
|
it: "Milcery",
|
||||||
|
pt: "Milcery",
|
||||||
|
de: "Hokumil"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Additional Order",
|
||||||
|
fr: "Supplément",
|
||||||
|
es: "Pedido Adicional",
|
||||||
|
it: "Altra Ordinazione",
|
||||||
|
pt: "Pedido Extra",
|
||||||
|
de: "Zusätzliche Bestellung"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "As long as this Pokémon is in the Active Spot, your turn does not end when you use Café Master.",
|
||||||
|
fr: "Tant que ce Pokémon est sur le Poste Actif, lorsque vous utilisez Barista, votre tour ne se termine pas.",
|
||||||
|
es: "Mientras este Pokémon esté en el Puesto Activo, tu turno no termina cuando uses Barista.",
|
||||||
|
it: "Fintanto che questo Pokémon è in posizione attiva, il tuo turno non finisce quando usi Barista.",
|
||||||
|
pt: "Enquanto este Pokémon estiver no Campo Ativo, o seu turno não acabará quando você usar Mestre do Café.",
|
||||||
|
de: "Solange dieses Pokémon in der Aktiven Position ist, endet dein Zug nicht, wenn du Barista einsetzt."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Rainbow Flavor",
|
||||||
|
fr: "Goût Arc-en-Ciel",
|
||||||
|
es: "Sabor Arcoíris",
|
||||||
|
it: "Gusto Arcobaleno",
|
||||||
|
pt: "Sabor de Arco-íris",
|
||||||
|
de: "Regenbogengeschmack"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 40 more damage for each type of basic Energy attached to all of your Pokémon.",
|
||||||
|
fr: "Cette attaque inflige 40 dégâts supplémentaires pour chaque type d'Énergie de base attachée à tous vos Pokémon.",
|
||||||
|
es: "Este ataque hace 40 puntos de daño más por cada tipo de Energía Básica unida a todos tus Pokémon.",
|
||||||
|
it: "Questo attacco infligge 40 danni in più per ogni tipo di Energia base assegnata ai tuoi Pokémon.",
|
||||||
|
pt: "Este ataque causa 40 pontos de dano a mais para cada tipo de Energia básica ligada a todos os seus Pokémon.",
|
||||||
|
de: "Diese Attacke fügt für jeden an alle deine Pokémon angelegten Basis-Energietyp 40 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "E"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
63
data/Sword & Shield/Brilliant Stars/072.ts
Normal file
63
data/Sword & Shield/Brilliant Stars/072.ts
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Hitmontop",
|
||||||
|
fr: "Kapoera",
|
||||||
|
es: "Hitmontop",
|
||||||
|
it: "Hitmontop",
|
||||||
|
pt: "Hitmontop",
|
||||||
|
de: "Kapoera"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 100,
|
||||||
|
types: ["Fighting"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Spinning Draw",
|
||||||
|
fr: "Pioche Tournante",
|
||||||
|
es: "Robo Giratorio",
|
||||||
|
it: "Pesca Rotante",
|
||||||
|
pt: "Compra Giratória",
|
||||||
|
de: "Drehender Zug"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Draw a card.",
|
||||||
|
fr: "Piochez une carte.",
|
||||||
|
es: "Roba 1 carta.",
|
||||||
|
it: "Pesca una carta.",
|
||||||
|
pt: "Compre 1 carta.",
|
||||||
|
de: "Ziehe 1 Karte."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20
|
||||||
|
}, {
|
||||||
|
cost: ["Fighting", "Fighting", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Cyclone Kick",
|
||||||
|
fr: "Pied Cyclone",
|
||||||
|
es: "Patada Ciclón",
|
||||||
|
it: "Calciovento",
|
||||||
|
pt: "Chute Ciclone",
|
||||||
|
de: "Wirbeltritt"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 100
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
41
data/Sword & Shield/Brilliant Stars/073.ts
Normal file
41
data/Sword & Shield/Brilliant Stars/073.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Nosepass",
|
||||||
|
fr: "Tarinor",
|
||||||
|
es: "Nosepass",
|
||||||
|
it: "Nosepass",
|
||||||
|
pt: "Nosepass",
|
||||||
|
de: "Nasgnet"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Fighting"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Ram",
|
||||||
|
fr: "Collision",
|
||||||
|
es: "Apisonar",
|
||||||
|
it: "Carica",
|
||||||
|
pt: "Aríete",
|
||||||
|
de: "Ramme"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 4,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Brilliant Stars/074.ts
Normal file
50
data/Sword & Shield/Brilliant Stars/074.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Trapinch",
|
||||||
|
fr: "Kraknoix",
|
||||||
|
es: "Trapinch",
|
||||||
|
it: "Trapinch",
|
||||||
|
pt: "Trapinch",
|
||||||
|
de: "Knacklion"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Fighting"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fighting"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Rising Lunge",
|
||||||
|
fr: "Botte Secrète",
|
||||||
|
es: "Embestida Ascendente",
|
||||||
|
it: "Elevazione",
|
||||||
|
pt: "Investida Ascendente",
|
||||||
|
de: "Aufwärtsstoß"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, this attack does 10 more damage.",
|
||||||
|
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts supplémentaires.",
|
||||||
|
es: "Lanza 1 moneda. Si sale cara, este ataque hace 10 puntos de daño más.",
|
||||||
|
it: "Lancia una moneta. Se esce testa, questo attacco infligge 10 danni in più.",
|
||||||
|
pt: "Jogue 1 moeda. Se sair cara, este ataque causará 10 pontos de dano a mais.",
|
||||||
|
de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 10 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
51
data/Sword & Shield/Brilliant Stars/075.ts
Normal file
51
data/Sword & Shield/Brilliant Stars/075.ts
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Vibrava",
|
||||||
|
fr: "Vibraninf",
|
||||||
|
es: "Vibrava",
|
||||||
|
it: "Vibrava",
|
||||||
|
pt: "Vibrava",
|
||||||
|
de: "Vibrava"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Fighting"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Trapinch",
|
||||||
|
fr: "Kraknoix",
|
||||||
|
es: "Trapinch",
|
||||||
|
it: "Trapinch",
|
||||||
|
pt: "Trapinch",
|
||||||
|
de: "Knacklion"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fighting"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Razor Wing",
|
||||||
|
fr: "Aile Tranchante",
|
||||||
|
es: "Ala Cortante",
|
||||||
|
it: "Ala Tagliente",
|
||||||
|
pt: "Asa Cortante",
|
||||||
|
de: "Rasierflügel"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/076.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/076.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Flygon",
|
||||||
|
fr: "Libégon",
|
||||||
|
es: "Flygon",
|
||||||
|
it: "Flygon",
|
||||||
|
pt: "Flygon",
|
||||||
|
de: "Libelldra"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 150,
|
||||||
|
types: ["Fighting"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Vibrava",
|
||||||
|
fr: "Vibraninf",
|
||||||
|
es: "Vibrava",
|
||||||
|
it: "Vibrava",
|
||||||
|
pt: "Vibrava",
|
||||||
|
de: "Vibrava"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage2",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fighting"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Desert Pillar",
|
||||||
|
fr: "Pilier du Désert",
|
||||||
|
es: "Columna del Desierto",
|
||||||
|
it: "Pilastro del Deserto",
|
||||||
|
pt: "Coluna do Deserto",
|
||||||
|
de: "Wüstensäule"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 50 damage for each Colorless in your opponent's Active Pokémon's Retreat Cost.",
|
||||||
|
fr: "Cette attaque inflige 50 dégâts pour chaque Colorless dans le Coût de Retraite du Pokémon Actif de votre adversaire.",
|
||||||
|
es: "Este ataque hace 50 puntos de daño por cada Colorless en el Coste de Retirada del Pokémon Activo de tu rival.",
|
||||||
|
it: "Questo attacco infligge 50 danni per ogni Colorless nel costo di ritirata del Pokémon attivo del tuo avversario.",
|
||||||
|
pt: "Este ataque causa 50 pontos de dano para cada Colorless no custo de Recuo do Pokémon Ativo do seu oponente.",
|
||||||
|
de: "Diese Attacke fügt für jedes Colorless in den Rückzugskosten des Aktiven Pokémon deines Gegners 50 Schadenspunkte zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "50×"
|
||||||
|
}, {
|
||||||
|
cost: ["Fighting", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Blasting Wind",
|
||||||
|
fr: "Vent Impitoyable",
|
||||||
|
es: "Vientos Explosivos",
|
||||||
|
it: "Vento Distruttivo",
|
||||||
|
pt: "Vendaval Avassalador",
|
||||||
|
de: "Peitschender Wind"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 110
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
82
data/Sword & Shield/Brilliant Stars/077.ts
Normal file
82
data/Sword & Shield/Brilliant Stars/077.ts
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Wormadam",
|
||||||
|
fr: "Cheniselle",
|
||||||
|
es: "Wormadam",
|
||||||
|
it: "Wormadam",
|
||||||
|
pt: "Wormadam",
|
||||||
|
de: "Burmadame"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 110,
|
||||||
|
types: ["Fighting"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Burmy",
|
||||||
|
fr: "Cheniti",
|
||||||
|
es: "Burmy",
|
||||||
|
it: "Burmy",
|
||||||
|
pt: "Burmy",
|
||||||
|
de: "Burmy"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Matron's Anger",
|
||||||
|
fr: "Dame Colérique",
|
||||||
|
es: "Enfado de Dama",
|
||||||
|
it: "Ira della Dama",
|
||||||
|
pt: "Fúria Matriarcal",
|
||||||
|
de: "Zorn der Dame"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 10 more damage for each Pokémon in your discard pile.",
|
||||||
|
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque Pokémon dans votre pile de défausse.",
|
||||||
|
es: "Este ataque hace 10 puntos de daño más por cada Pokémon en tu pila de descartes.",
|
||||||
|
it: "Questo attacco infligge 10 danni in più per ogni Pokémon nella tua pila degli scarti.",
|
||||||
|
pt: "Este ataque causa 10 pontos de dano a mais para cada Pokémon na sua pilha de descarte.",
|
||||||
|
de: "Diese Attacke fügt für jedes Pokémon in deinem Ablagestapel 10 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30+"
|
||||||
|
}, {
|
||||||
|
cost: ["Fighting", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bind Down",
|
||||||
|
fr: "Astreinte",
|
||||||
|
es: "Amarrar",
|
||||||
|
it: "Legafermo",
|
||||||
|
pt: "Aprisionamento",
|
||||||
|
de: "Anbinden"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "During your opponent's next turn, the Defending Pokémon can't retreat.",
|
||||||
|
fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.",
|
||||||
|
es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.",
|
||||||
|
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.",
|
||||||
|
pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá recuar.",
|
||||||
|
de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 80
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
41
data/Sword & Shield/Brilliant Stars/078.ts
Normal file
41
data/Sword & Shield/Brilliant Stars/078.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Riolu",
|
||||||
|
fr: "Riolu",
|
||||||
|
es: "Riolu",
|
||||||
|
it: "Riolu",
|
||||||
|
pt: "Riolu",
|
||||||
|
de: "Riolu"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Fighting"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fighting", "Fighting"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Low Kick",
|
||||||
|
fr: "Balayage",
|
||||||
|
es: "Patada Baja",
|
||||||
|
it: "Colpo Basso",
|
||||||
|
pt: "Rasteira",
|
||||||
|
de: "Fußkick"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 50
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
82
data/Sword & Shield/Brilliant Stars/079.ts
Normal file
82
data/Sword & Shield/Brilliant Stars/079.ts
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Lucario",
|
||||||
|
fr: "Lucario",
|
||||||
|
es: "Lucario",
|
||||||
|
it: "Lucario",
|
||||||
|
pt: "Lucario",
|
||||||
|
de: "Lucario"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Fighting"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Riolu",
|
||||||
|
fr: "Riolu",
|
||||||
|
es: "Riolu",
|
||||||
|
it: "Riolu",
|
||||||
|
pt: "Riolu",
|
||||||
|
de: "Riolu"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Roaring Resolve",
|
||||||
|
fr: "Détermination Rugissante",
|
||||||
|
es: "Rugido Decisivo",
|
||||||
|
it: "Determinazione Ruggente",
|
||||||
|
pt: "Rugido Resoluto",
|
||||||
|
de: "Brüllender Entschluss"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Once during your turn, you may put 2 damage counters on this Pokémon. If you do, search your deck for a Fighting Energy card and attach it to this Pokémon. Then, shuffle your deck.",
|
||||||
|
fr: "Une fois pendant votre tour, vous pouvez placer 2 marqueurs de dégâts sur ce Pokémon. Dans ce cas, cherchez dans votre deck une carte Énergie Fighting, puis attachez-la à ce Pokémon. Mélangez ensuite votre deck.",
|
||||||
|
es: "Una vez durante tu turno, puedes poner 2 contadores de daño en este Pokémon. Si lo haces, busca en tu baraja 1 carta de Energía Fighting y únela a este Pokémon. Después, baraja las cartas de tu baraja.",
|
||||||
|
it: "Una sola volta durante il tuo turno, puoi mettere due segnalini danno su questo Pokémon. Se lo fai, cerca nel tuo mazzo una carta Energia Fighting e assegnala a questo Pokémon. Poi rimischia le carte del tuo mazzo.",
|
||||||
|
pt: "Uma vez durante o seu turno, você poderá colocar 2 contadores de dano neste Pokémon. Se fizer isto, procure por 1 carta de Energia Fighting no seu baralho e ligue-a a este Pokémon. Em seguida, embaralhe o seu baralho.",
|
||||||
|
de: "Einmal während deines Zuges kannst du 2 Schadensmarken auf dieses Pokémon legen. Wenn du das machst, durchsuche dein Deck nach 1 Fighting-Energiekarte und lege sie an dieses Pokémon an. Mische anschließend dein Deck."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fighting", "Fighting"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Aura Sphere Volley",
|
||||||
|
fr: "Volée Aurasphère",
|
||||||
|
es: "Volea Esfera Aural",
|
||||||
|
it: "Forzasfera al Volo",
|
||||||
|
pt: "Salva de Auras Esféricas",
|
||||||
|
de: "Aurasphäre-Volley"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard all Fighting Energy from this Pokémon. This attack does 60 more damage for each card you discarded in this way.",
|
||||||
|
fr: "Défaussez toute l'Énergie Fighting de ce Pokémon. Cette attaque inflige 60 dégâts supplémentaires pour chaque carte défaussée de cette façon.",
|
||||||
|
es: "Descarta todas las Energías Fighting de este Pokémon. Este ataque hace 60 puntos de daño más por cada carta que hayas descartado de esta manera.",
|
||||||
|
it: "Scarta tutte le Energie Fighting da questo Pokémon. Questo attacco infligge 60 danni in più per ogni carta che hai scartato in questo modo.",
|
||||||
|
pt: "Descarte todas as Energias Fighting deste Pokémon. Este ataque causa 60 pontos de dano a mais para cada carta descartada desta forma.",
|
||||||
|
de: "Lege alle Fighting-Energien von diesem Pokémon auf deinen Ablagestapel. Diese Attacke fügt für jede auf diese Weise abgelegte Karte 60 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Brilliant Stars/080.ts
Normal file
54
data/Sword & Shield/Brilliant Stars/080.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Throh",
|
||||||
|
fr: "Judokrak",
|
||||||
|
es: "Throh",
|
||||||
|
it: "Throh",
|
||||||
|
pt: "Throh",
|
||||||
|
de: "Jiutesto"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Fighting"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Lunge Out",
|
||||||
|
fr: "Allonger",
|
||||||
|
es: "Arremeter",
|
||||||
|
it: "Affondo Lungo",
|
||||||
|
pt: "Bote",
|
||||||
|
de: "Sprungangriff"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30
|
||||||
|
}, {
|
||||||
|
cost: ["Fighting", "Fighting", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Seismic Toss",
|
||||||
|
fr: "Frappe Atlas",
|
||||||
|
es: "Sísmico",
|
||||||
|
it: "Movimento Sismico",
|
||||||
|
pt: "Arremesso Sísmico",
|
||||||
|
de: "Geowurf"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 110
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Brilliant Stars/081.ts
Normal file
50
data/Sword & Shield/Brilliant Stars/081.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Sawk",
|
||||||
|
fr: "Karaclée",
|
||||||
|
es: "Sawk",
|
||||||
|
it: "Sawk",
|
||||||
|
pt: "Sawk",
|
||||||
|
de: "Karadonis"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Fighting"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fighting"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Sweep the Leg",
|
||||||
|
fr: "Balayage Jambier",
|
||||||
|
es: "Poner la Zancadilla",
|
||||||
|
it: "Spazzata",
|
||||||
|
pt: "Pernada",
|
||||||
|
de: "Fußfeger"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, discard an Energy from your opponent's Active Pokémon.",
|
||||||
|
fr: "Lancez une pièce. Si c'est face, défaussez une Énergie du Pokémon Actif de votre adversaire.",
|
||||||
|
es: "Lanza 1 moneda. Si sale cara, descarta 1 Energía del Pokémon Activo de tu rival.",
|
||||||
|
it: "Lancia una moneta. Se esce testa, scarta un'Energia dal Pokémon attivo del tuo avversario.",
|
||||||
|
pt: "Jogue 1 moeda. Se sair cara, descarte 1 Energia do Pokémon Ativo do seu oponente.",
|
||||||
|
de: "Wirf 1 Münze. Lege bei Kopf 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Brilliant Stars/082.ts
Normal file
54
data/Sword & Shield/Brilliant Stars/082.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Golett",
|
||||||
|
fr: "Gringolem",
|
||||||
|
es: "Golett",
|
||||||
|
it: "Golett",
|
||||||
|
pt: "Golett",
|
||||||
|
de: "Golbit"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 100,
|
||||||
|
types: ["Fighting"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fighting"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Mud-Slap",
|
||||||
|
fr: "Coud'Boue",
|
||||||
|
es: "Bofetón Lodo",
|
||||||
|
it: "Fangosberla",
|
||||||
|
pt: "Tapa de Lama",
|
||||||
|
de: "Lehmschelle"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10
|
||||||
|
}, {
|
||||||
|
cost: ["Fighting", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Pound",
|
||||||
|
fr: "Écras'Face",
|
||||||
|
es: "Destructor",
|
||||||
|
it: "Botta",
|
||||||
|
pt: "Pancada",
|
||||||
|
de: "Klaps"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 4,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/083.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/083.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Golurk",
|
||||||
|
fr: "Golemastoc",
|
||||||
|
es: "Golurk",
|
||||||
|
it: "Golurk",
|
||||||
|
pt: "Golurk",
|
||||||
|
de: "Golgantes"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 150,
|
||||||
|
types: ["Fighting"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Golett",
|
||||||
|
fr: "Gringolem",
|
||||||
|
es: "Golett",
|
||||||
|
it: "Golett",
|
||||||
|
pt: "Golett",
|
||||||
|
de: "Golbit"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Big Hand",
|
||||||
|
fr: "Grande Main",
|
||||||
|
es: "Manaza",
|
||||||
|
it: "Gran Mano",
|
||||||
|
pt: "Mãozona",
|
||||||
|
de: "Große Hand"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 10 more damage for each card in your hand.",
|
||||||
|
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque carte dans votre main.",
|
||||||
|
es: "Este ataque hace 10 puntos de daño más por cada carta en tu mano.",
|
||||||
|
it: "Questo attacco infligge 10 danni in più per ogni carta nella tua mano.",
|
||||||
|
pt: "Este ataque causa 10 pontos de dano a mais para cada carta na sua mão.",
|
||||||
|
de: "Diese Attacke fügt für jede Karte auf deiner Hand 10 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30+"
|
||||||
|
}, {
|
||||||
|
cost: ["Fighting", "Fighting", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Mega Punch",
|
||||||
|
fr: "Ultimapoing",
|
||||||
|
es: "Megapuño",
|
||||||
|
it: "Megapugno",
|
||||||
|
pt: "Megassoco",
|
||||||
|
de: "Megahieb"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 120
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 4,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
48
data/Sword & Shield/Brilliant Stars/084.ts
Normal file
48
data/Sword & Shield/Brilliant Stars/084.ts
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Grimer",
|
||||||
|
fr: "Tadmorv",
|
||||||
|
es: "Grimer",
|
||||||
|
it: "Grimer",
|
||||||
|
pt: "Grimer",
|
||||||
|
de: "Sleima"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Darkness"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Darkness"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Poison Gas",
|
||||||
|
fr: "Gaz Toxik",
|
||||||
|
es: "Gas Venenoso",
|
||||||
|
it: "Velenogas",
|
||||||
|
pt: "Gás Venenoso",
|
||||||
|
de: "Giftwolke"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Your opponent's Active Pokémon is now Poisoned.",
|
||||||
|
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
|
||||||
|
es: "El Pokémon Activo de tu rival pasa a estar Envenenado.",
|
||||||
|
it: "Il Pokémon attivo del tuo avversario viene avvelenato.",
|
||||||
|
pt: "O Pokémon Ativo do seu oponente agora está Envenenado.",
|
||||||
|
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
82
data/Sword & Shield/Brilliant Stars/085.ts
Normal file
82
data/Sword & Shield/Brilliant Stars/085.ts
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Muk",
|
||||||
|
fr: "Grotadmorv",
|
||||||
|
es: "Muk",
|
||||||
|
it: "Muk",
|
||||||
|
pt: "Muk",
|
||||||
|
de: "Sleimok"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 130,
|
||||||
|
types: ["Darkness"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Grimer",
|
||||||
|
fr: "Tadmorv",
|
||||||
|
es: "Grimer",
|
||||||
|
it: "Grimer",
|
||||||
|
pt: "Grimer",
|
||||||
|
de: "Sleima"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Sludge Street",
|
||||||
|
fr: "Passage Dégueu",
|
||||||
|
es: "Calle Lodo",
|
||||||
|
it: "Strada di Melma",
|
||||||
|
pt: "Lodo na Rua",
|
||||||
|
de: "Schlammstraße"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "The Retreat Cost of your opponent's Poisoned Pokémon is Colorless more.",
|
||||||
|
fr: "Le Coût de Retraite des Pokémon Empoisonnés de votre adversaire augmente de Colorless.",
|
||||||
|
es: "El Coste de Retirada de los Pokémon Envenenados de tu rival es de Colorless más.",
|
||||||
|
it: "Il costo di ritirata dei Pokémon avvelenati del tuo avversario aumenta di Colorless.",
|
||||||
|
pt: "O custo de Recuo dos Pokémon Envenenados do seu oponente é Colorless a mais.",
|
||||||
|
de: "Die Rückzugskosten der vergifteten Pokémon deines Gegners erhöhen sich um Colorless."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Darkness", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Shrieking Poison",
|
||||||
|
fr: "Poison Hurleur",
|
||||||
|
es: "Veneno Chillón",
|
||||||
|
it: "Velenostrido",
|
||||||
|
pt: "Veneno Gritante",
|
||||||
|
de: "Kreischendes Gift"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Your opponent's Active Pokémon is now Confused and Poisoned.",
|
||||||
|
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus et Empoisonné.",
|
||||||
|
es: "El Pokémon Activo de tu rival pasa a estar Confundido y Envenenado.",
|
||||||
|
it: "Il Pokémon attivo del tuo avversario viene confuso e avvelenato.",
|
||||||
|
pt: "O Pokémon Ativo do seu oponente agora está Confuso e Envenenado.",
|
||||||
|
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt und vergiftet."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 90
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Brilliant Stars/086.ts
Normal file
54
data/Sword & Shield/Brilliant Stars/086.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Sneasel",
|
||||||
|
fr: "Farfuret",
|
||||||
|
es: "Sneasel",
|
||||||
|
it: "Sneasel",
|
||||||
|
pt: "Sneasel",
|
||||||
|
de: "Sniebel"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Darkness"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Darkness"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Scratch",
|
||||||
|
fr: "Griffe",
|
||||||
|
es: "Arañazo",
|
||||||
|
it: "Graffio",
|
||||||
|
pt: "Arranhão",
|
||||||
|
de: "Kratzer"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10
|
||||||
|
}, {
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Slash",
|
||||||
|
fr: "Tranche",
|
||||||
|
es: "Cuchillada",
|
||||||
|
it: "Lacerazione",
|
||||||
|
pt: "Talho",
|
||||||
|
de: "Schlitzer"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
71
data/Sword & Shield/Brilliant Stars/087.ts
Normal file
71
data/Sword & Shield/Brilliant Stars/087.ts
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Weavile",
|
||||||
|
fr: "Dimoret",
|
||||||
|
es: "Weavile",
|
||||||
|
it: "Weavile",
|
||||||
|
pt: "Weavile",
|
||||||
|
de: "Snibunna"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Darkness"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Sneasel",
|
||||||
|
fr: "Farfuret",
|
||||||
|
es: "Sneasel",
|
||||||
|
it: "Sneasel",
|
||||||
|
pt: "Sneasel",
|
||||||
|
de: "Sniebel"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Darkness"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Ransack",
|
||||||
|
fr: "Rapine",
|
||||||
|
es: "Pillaje",
|
||||||
|
it: "Saccheggiamento",
|
||||||
|
pt: "Saquear",
|
||||||
|
de: "Durchwühlen"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip 2 coins. If either of them is heads, your opponent reveals their hand. For each heads, choose a card you find there and put it on the bottom of your opponent's deck in any order.",
|
||||||
|
fr: "Lancez 2 pièces. Si vous obtenez au moins un côté face, votre adversaire dévoile sa main. Pour chaque côté face, choisissez-y une carte, puis placez-la en dessous du deck de votre adversaire dans l'ordre de votre choix.",
|
||||||
|
es: "Lanza 2 monedas. Si sale cara en alguna de ellas, tu rival enseña las cartas de su mano. Por cada cara, elige 1 carta que encuentres entre ellas y ponla en la parte inferior de la baraja de tu rival en el orden que quieras.",
|
||||||
|
it: "Lancia due volte una moneta. Se esce almeno una volta testa, il tuo avversario mostra le carte che ha in mano. Ogni volta che esce testa, scegline una e mettila in fondo al mazzo del tuo avversario nell'ordine che preferisci.",
|
||||||
|
pt: "Jogue 2 moedas. Se qualquer uma delas sair cara, seu oponente revelará a própria mão. Para cada cara, escolha 1 carta que encontrar lá e coloque-a como a carta de baixo do baralho do seu oponente em qualquer ordem.",
|
||||||
|
de: "Wirf 2 Münzen. Wenn eine oder beide Münzen Kopf zeigen, zeigt dir dein Gegner seine Handkarten. Wähle pro Kopf 1 Karte, die du dort findest, und lege sie in beliebiger Reihenfolge unter das Deck deines Gegners."
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
cost: ["Darkness", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Slash",
|
||||||
|
fr: "Tranche",
|
||||||
|
es: "Cuchillada",
|
||||||
|
it: "Lacerazione",
|
||||||
|
pt: "Talho",
|
||||||
|
de: "Schlitzer"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 100
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/088.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/088.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Honchkrow V",
|
||||||
|
fr: "Corboss V",
|
||||||
|
es: "Honchkrow V",
|
||||||
|
it: "Honchkrow V",
|
||||||
|
pt: "Honchkrow V",
|
||||||
|
de: "Kramshef V"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 200,
|
||||||
|
types: ["Darkness"],
|
||||||
|
stage: "Basic",
|
||||||
|
suffix: "V",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Boss Pockets",
|
||||||
|
fr: "Poches de Boss",
|
||||||
|
es: "Bolsillos del Jefe",
|
||||||
|
it: "Tasche del Capo",
|
||||||
|
pt: "Bolsos do Chefão",
|
||||||
|
de: "Taschen des Bosses"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This Pokémon may have up to 4 Pokémon Tools attached to it. If it loses this Ability, discard Pokémon Tools from it until only 1 remains.",
|
||||||
|
fr: "Jusqu'à 4 Outils Pokémon peuvent être attachés à ce Pokémon. S'il perd ce talent, défaussez des Outils Pokémon jusqu'à ce qu'il ne lui en reste qu'un.",
|
||||||
|
es: "Este Pokémon puede tener hasta 4 Herramientas Pokémon unidas a él. Si pierde esta habilidad, descarta Herramientas Pokémon hasta que solo le quede 1.",
|
||||||
|
it: "Questo Pokémon può avere fino a quattro carte Oggetto Pokémon assegnate. Se perde questa abilità, scarta le carte Oggetto Pokémon assegnategli finché ne resta solo una.",
|
||||||
|
pt: "Este Pokémon pode ter até 4 Ferramentas Pokémon ligadas a ele. Se ele perder esta Habilidade, descarte Ferramentas Pokémon dele até restar apenas 1.",
|
||||||
|
de: "An dieses Pokémon können bis zu 4 Pokémon-Ausrüstungen angelegt sein. Wenn es diese Fähigkeit verliert, lege von ihm so lange Pokémon-Ausrüstungen auf deinen Ablagestapel, bis nur 1 übrig ist."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Darkness", "Darkness", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fearsome Shadow",
|
||||||
|
fr: "Ombre Redoutable",
|
||||||
|
es: "Sombra Imponente",
|
||||||
|
it: "Tremendombra",
|
||||||
|
pt: "Sombra Temível",
|
||||||
|
de: "Furchtbarer Schatten"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Your opponent reveals their hand.",
|
||||||
|
fr: "Votre adversaire dévoile sa main.",
|
||||||
|
es: "Tu rival enseña las cartas de su mano.",
|
||||||
|
it: "Il tuo avversario mostra le carte che ha in mano.",
|
||||||
|
pt: "Seu oponente revela a própria mão.",
|
||||||
|
de: "Dein Gegner zeigt dir seine Handkarten."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 130
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
68
data/Sword & Shield/Brilliant Stars/089.ts
Normal file
68
data/Sword & Shield/Brilliant Stars/089.ts
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Spiritomb",
|
||||||
|
fr: "Spiritomb",
|
||||||
|
es: "Spiritomb",
|
||||||
|
it: "Spiritomb",
|
||||||
|
pt: "Spiritomb",
|
||||||
|
de: "Kryppuk"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Darkness"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Ticking Terror",
|
||||||
|
fr: "Tic Tac Terreur",
|
||||||
|
es: "Terror Inminente",
|
||||||
|
it: "Terrore a Orologeria",
|
||||||
|
pt: "Tique-taque Tenebroso",
|
||||||
|
de: "Tickender Terror"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Until the end of your next turn, the Defending Pokémon's Weakness is now Darkness. (The amount of Weakness doesn't change.)",
|
||||||
|
fr: "Jusqu'à la fin de votre prochain tour, la Faiblesse du Pokémon Défenseur est maintenant de type Darkness. (La valeur de la Faiblesse ne change pas.)",
|
||||||
|
es: "Hasta el final de tu próximo turno, la Debilidad del Pokémon Defensor pasa a ser Darkness. (La cantidad de Debilidad no cambia).",
|
||||||
|
it: "Fino alla fine del tuo prossimo turno, la debolezza del Pokémon difensore diventa Darkness. Quanto è debole non cambia.",
|
||||||
|
pt: "Até o final do seu próximo turno, a Fraqueza do Pokémon Defensor será Darkness (a quantidade de Fraqueza não muda).",
|
||||||
|
de: "Bis zum Ende deines nächsten Zuges ist die Schwäche des Verteidigenden Pokémon jetzt Darkness. (Die Höhe der Schwäche ändert sich nicht.)"
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
cost: ["Darkness"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Cursed Drop",
|
||||||
|
fr: "Chute Maudite",
|
||||||
|
es: "Caída Maldita",
|
||||||
|
it: "Caduta Maledetta",
|
||||||
|
pt: "Queda Amaldiçoada",
|
||||||
|
de: "Verfluchter Fall"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Put 2 damage counters on your opponent's Pokémon in any way you like.",
|
||||||
|
fr: "Placez 2 marqueurs de dégâts sur les Pokémon de votre adversaire comme il vous plaît.",
|
||||||
|
es: "Pon 2 contadores de daño en los Pokémon de tu rival de la manera que desees.",
|
||||||
|
it: "Metti due segnalini danno sui Pokémon del tuo avversario nel modo che preferisci.",
|
||||||
|
pt: "Coloque 2 contadores de dano nos Pokémon do seu oponente como desejar.",
|
||||||
|
de: "Lege 2 Schadensmarken beliebig auf die Pokémon deines Gegners."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Brilliant Stars/090.ts
Normal file
50
data/Sword & Shield/Brilliant Stars/090.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Purrloin",
|
||||||
|
fr: "Chacripan",
|
||||||
|
es: "Purrloin",
|
||||||
|
it: "Purrloin",
|
||||||
|
pt: "Purrloin",
|
||||||
|
de: "Felilou"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Darkness"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Surprise Attack",
|
||||||
|
fr: "Attaque Surprise",
|
||||||
|
es: "Ataque Sorpresa",
|
||||||
|
it: "Attacco a Sorpresa",
|
||||||
|
pt: "Ataque Surpresa",
|
||||||
|
de: "Überraschungsangriff"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If tails, this attack does nothing.",
|
||||||
|
fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.",
|
||||||
|
es: "Lanza 1 moneda. Si sale cruz, este ataque no hace nada.",
|
||||||
|
it: "Lancia una moneta. Se esce croce, questo attacco non ha effetto.",
|
||||||
|
pt: "Jogue 1 moeda. Se sair coroa, este ataque não fará nada.",
|
||||||
|
de: "Wirf 1 Münze. Bei Zahl hat diese Attacke keine Auswirkungen."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/091.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/091.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Liepard",
|
||||||
|
fr: "Léopardus",
|
||||||
|
es: "Liepard",
|
||||||
|
it: "Liepard",
|
||||||
|
pt: "Liepard",
|
||||||
|
de: "Kleoparda"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 100,
|
||||||
|
types: ["Darkness"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Purrloin",
|
||||||
|
fr: "Chacripan",
|
||||||
|
es: "Purrloin",
|
||||||
|
it: "Purrloin",
|
||||||
|
pt: "Purrloin",
|
||||||
|
de: "Felilou"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Trade",
|
||||||
|
fr: "Troc",
|
||||||
|
es: "Intercambiar",
|
||||||
|
it: "Contraccambio",
|
||||||
|
pt: "Troca",
|
||||||
|
de: "Ersetzen"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "You must discard a card from your hand in order to use this Ability. Once during your turn, you may draw 2 cards.",
|
||||||
|
fr: "Vous devez défausser une carte de votre main pour pouvoir utiliser ce talent. Une fois pendant votre tour, vous pouvez piocher 2 cartes.",
|
||||||
|
es: "Debes descartar 1 carta de tu mano para poder usar esta habilidad. Una vez durante tu turno, puedes robar 2 cartas.",
|
||||||
|
it: "Devi scartare una carta che hai in mano per usare questa abilità. Una sola volta durante il tuo turno, puoi pescare due carte.",
|
||||||
|
pt: "Você deve descartar 1 carta da sua mão para usar esta Habilidade. Uma vez durante o seu turno, você poderá comprar 2 cartas.",
|
||||||
|
de: "Du musst 1 Karte aus deiner Hand auf deinen Ablagestapel legen, um diese Fähigkeit einzusetzen. Einmal während deines Zuges kannst du 2 Karten ziehen."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Slash",
|
||||||
|
fr: "Tranche",
|
||||||
|
es: "Cuchillada",
|
||||||
|
it: "Lacerazione",
|
||||||
|
pt: "Talho",
|
||||||
|
de: "Schlitzer"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 60
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
61
data/Sword & Shield/Brilliant Stars/092.ts
Normal file
61
data/Sword & Shield/Brilliant Stars/092.ts
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Impidimp",
|
||||||
|
fr: "Grimalin",
|
||||||
|
es: "Impidimp",
|
||||||
|
it: "Impidimp",
|
||||||
|
pt: "Impidimp",
|
||||||
|
de: "Bähmon"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Darkness"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Darkness"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Call for Family",
|
||||||
|
fr: "Appel à la Famille",
|
||||||
|
es: "Llamar a la Familia",
|
||||||
|
it: "Cerca Famiglia",
|
||||||
|
pt: "Chamar a Família",
|
||||||
|
de: "Familienruf"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Search your deck for a Basic Pokémon and put it onto your Bench. Then, shuffle your deck.",
|
||||||
|
fr: "Cherchez dans votre deck un Pokémon de base, puis placez-le sur votre Banc. Mélangez ensuite votre deck.",
|
||||||
|
es: "Busca en tu baraja 1 Pokémon Básico y ponlo en tu Banca. Después, baraja las cartas de tu baraja.",
|
||||||
|
it: "Cerca nel tuo mazzo un Pokémon Base e mettilo nella tua panchina. Poi rimischia le carte del tuo mazzo.",
|
||||||
|
pt: "Procure por 1 Pokémon Básico no seu baralho e coloque-o no seu Banco. Em seguida, embaralhe o seu baralho.",
|
||||||
|
de: "Durchsuche dein Deck nach 1 Basis-Pokémon und lege es auf deine Bank. Mische anschließend dein Deck."
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bite",
|
||||||
|
fr: "Morsure",
|
||||||
|
es: "Mordisco",
|
||||||
|
it: "Morso",
|
||||||
|
pt: "Mordida",
|
||||||
|
de: "Biss"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
64
data/Sword & Shield/Brilliant Stars/093.ts
Normal file
64
data/Sword & Shield/Brilliant Stars/093.ts
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Morgrem",
|
||||||
|
fr: "Fourbelin",
|
||||||
|
es: "Morgrem",
|
||||||
|
it: "Morgrem",
|
||||||
|
pt: "Morgrem",
|
||||||
|
de: "Pelzebub"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Darkness"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Impidimp",
|
||||||
|
fr: "Grimalin",
|
||||||
|
es: "Impidimp",
|
||||||
|
it: "Impidimp",
|
||||||
|
pt: "Impidimp",
|
||||||
|
de: "Bähmon"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Darkness"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Smash Kick",
|
||||||
|
fr: "Coud'Pattes",
|
||||||
|
es: "Patada Destrucción",
|
||||||
|
it: "Calcio Esplosivo",
|
||||||
|
pt: "Chute Poderoso",
|
||||||
|
de: "Schmetterkick"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30
|
||||||
|
}, {
|
||||||
|
cost: ["Darkness", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Pierce",
|
||||||
|
fr: "Transpercement",
|
||||||
|
es: "Perforar",
|
||||||
|
it: "Perforare",
|
||||||
|
pt: "Perfurar",
|
||||||
|
de: "Durchbohren"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 50
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
71
data/Sword & Shield/Brilliant Stars/094.ts
Normal file
71
data/Sword & Shield/Brilliant Stars/094.ts
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Grimmsnarl",
|
||||||
|
fr: "Angoliath",
|
||||||
|
es: "Grimmsnarl",
|
||||||
|
it: "Grimmsnarl",
|
||||||
|
pt: "Grimmsnarl",
|
||||||
|
de: "Olangaar"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 160,
|
||||||
|
types: ["Darkness"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Morgrem",
|
||||||
|
fr: "Fourbelin",
|
||||||
|
es: "Morgrem",
|
||||||
|
it: "Morgrem",
|
||||||
|
pt: "Morgrem",
|
||||||
|
de: "Pelzebub"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage2",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Darkness"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Longhair Shot",
|
||||||
|
fr: "Tir Chevelu",
|
||||||
|
es: "Disparo Melenudo",
|
||||||
|
it: "Colpo Capellone",
|
||||||
|
pt: "Disparo Cabeludo",
|
||||||
|
de: "Langhaarschuss"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 30 damage to 1 of your opponent's Pokémon for each Darkness Energy attached to this Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||||
|
fr: "Cette attaque inflige 30 dégâts à l'un des Pokémon de votre adversaire pour chaque Énergie Darkness attachée à ce Pokémon. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||||||
|
es: "Este ataque hace 30 puntos de daño a 1 de los Pokémon de tu rival por cada Energía Darkness unida a este Pokémon. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
|
||||||
|
it: "Questo attacco infligge 30 danni a uno dei Pokémon del tuo avversario per ogni Energia Darkness assegnata a questo Pokémon. Non applicare debolezza e resistenza ai Pokémon in panchina.",
|
||||||
|
pt: "Este ataque causa 30 pontos de dano a 1 dos Pokémon do seu oponente para cada Energia Darkness ligada a este Pokémon (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
|
||||||
|
de: "Diese Attacke fügt für jede an dieses Pokémon angelegte Darkness-Energie 1 Pokémon deines Gegners 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
cost: ["Darkness", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Darkness Fang",
|
||||||
|
fr: "Croc Obscur",
|
||||||
|
es: "Colmillo de Oscuridad",
|
||||||
|
it: "Oscurizanna",
|
||||||
|
pt: "Presa Sombria",
|
||||||
|
de: "Fänge der Dunkelheit"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 110
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/095.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/095.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Morpeko V",
|
||||||
|
fr: "Morpeko V",
|
||||||
|
es: "Morpeko V",
|
||||||
|
it: "Morpeko V",
|
||||||
|
pt: "Morpeko V",
|
||||||
|
de: "Morpeko V"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 190,
|
||||||
|
types: ["Darkness"],
|
||||||
|
stage: "Basic",
|
||||||
|
suffix: "V",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Gnaw and Run",
|
||||||
|
fr: "Ronger et Courir",
|
||||||
|
es: "Roer y Correr",
|
||||||
|
it: "Rosicchia e Fuggi",
|
||||||
|
pt: "Roer e Correr",
|
||||||
|
de: "Annagen und Abhauen"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "You may switch this Pokémon with 1 of your Benched Pokémon.",
|
||||||
|
fr: "Vous pouvez échanger ce Pokémon contre l'un 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: ["Darkness", "Darkness", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Hangry Spike",
|
||||||
|
fr: "Smash Affamé",
|
||||||
|
es: "Ascenso Voraz",
|
||||||
|
it: "Punta Panciavuota",
|
||||||
|
pt: "Espinho Voraz",
|
||||||
|
de: "Extremer Kohldampf"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If you played Marnie's Pride from your hand during this turn, this attack does 120 more damage.",
|
||||||
|
fr: "Si vous avez joué Fierté de Rosemary de votre main pendant ce tour, cette attaque inflige 120 dégâts supplémentaires.",
|
||||||
|
es: "Si has jugado 1 carta de Orgullo de Roxy de tu mano durante este turno, este ataque hace 120 puntos de daño más.",
|
||||||
|
it: "Se hai giocato Orgoglio di Mary dalla tua mano durante questo turno, questo attacco infligge 120 danni in più.",
|
||||||
|
pt: "Se você jogou Orgulho da Marine da sua mão durante este turno, este ataque causará 120 pontos de dano a mais.",
|
||||||
|
de: "Wenn du Marys Stolz während dieses Zuges aus deiner Hand gespielt hast, fügt diese Attacke 120 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "120+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/096.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/096.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Aggron V",
|
||||||
|
fr: "Galeking V",
|
||||||
|
es: "Aggron V",
|
||||||
|
it: "Aggron V",
|
||||||
|
pt: "Aggron V",
|
||||||
|
de: "Stolloss V"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 230,
|
||||||
|
types: ["Metal"],
|
||||||
|
stage: "Basic",
|
||||||
|
suffix: "V",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Metal", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Rock Slide",
|
||||||
|
fr: "Éboulement",
|
||||||
|
es: "Avalancha",
|
||||||
|
it: "Frana",
|
||||||
|
pt: "Deslize de Pedras",
|
||||||
|
de: "Steinhagel"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack also does 30 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||||
|
fr: "Cette attaque inflige aussi 30 dégâts à 2 des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||||||
|
es: "Este ataque también hace 30 puntos de daño a 2 de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
|
||||||
|
it: "Questo attacco infligge anche 30 danni a due dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.",
|
||||||
|
pt: "Este ataque também causa 30 pontos de dano a 2 dos Pokémon no Banco do seu oponente (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
|
||||||
|
de: "Diese Attacke fügt auch 2 Pokémon auf der Bank deines Gegners 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 90
|
||||||
|
}, {
|
||||||
|
cost: ["Metal", "Colorless", "Colorless", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Merciless Strike",
|
||||||
|
fr: "Impact Impitoyable",
|
||||||
|
es: "Golpe Despiadado",
|
||||||
|
it: "Colpo Implacabile",
|
||||||
|
pt: "Golpe Impiedoso",
|
||||||
|
de: "Gnadenloser Schlag"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If your opponent's Active Pokémon already has any damage counters on it, this attack does 150 more damage.",
|
||||||
|
fr: "Si le Pokémon Actif de votre adversaire a déjà au moins un marqueur de dégâts, cette attaque inflige 150 dégâts supplémentaires.",
|
||||||
|
es: "Si el Pokémon Activo de tu rival ya tiene algún contador de daño sobre él, este ataque hace 150 puntos de daño más.",
|
||||||
|
it: "Se il Pokémon attivo del tuo avversario ha già dei segnalini danno, questo attacco infligge 150 danni in più.",
|
||||||
|
pt: "Se o Pokémon Ativo do seu oponente já tiver algum contador de dano nele, este ataque causará 150 pontos de dano a mais.",
|
||||||
|
de: "Wenn auf dem Aktiven Pokémon deines Gegners mindestens 1 Schadensmarke liegt, fügt diese Attacke 150 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "150+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 4,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
82
data/Sword & Shield/Brilliant Stars/097.ts
Normal file
82
data/Sword & Shield/Brilliant Stars/097.ts
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Aggron VMAX",
|
||||||
|
fr: "Galeking VMAX",
|
||||||
|
es: "Aggron VMAX",
|
||||||
|
it: "Aggron VMAX",
|
||||||
|
pt: "Aggron VMAX",
|
||||||
|
de: "Stolloss VMAX"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 330,
|
||||||
|
types: ["Metal"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Aggron V",
|
||||||
|
fr: "Galeking-V",
|
||||||
|
es: "Aggron V",
|
||||||
|
it: "Aggron-V",
|
||||||
|
pt: "Aggron V",
|
||||||
|
de: "Stolloss-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "VMAX",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Metal", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Cracking Stomp",
|
||||||
|
fr: "Piétinement Écrasant",
|
||||||
|
es: "Pisotón Quebrantador",
|
||||||
|
it: "Spaccapestone",
|
||||||
|
pt: "Pisoteada Demolidora",
|
||||||
|
de: "Demolierender Stampfer"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard the top card of your opponent's deck.",
|
||||||
|
fr: "Défaussez la carte du dessus du deck de votre adversaire.",
|
||||||
|
es: "Descarta la primera carta de la baraja de tu rival.",
|
||||||
|
it: "Scarta la prima carta del mazzo del tuo avversario.",
|
||||||
|
pt: "Descarte a carta de cima do baralho do seu oponente.",
|
||||||
|
de: "Lege die oberste Karte des Decks deines Gegners auf seinen Ablagestapel."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 150
|
||||||
|
}, {
|
||||||
|
cost: ["Metal", "Metal", "Colorless", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Max Take Down",
|
||||||
|
fr: "Bélieromax",
|
||||||
|
es: "Maxiderribo",
|
||||||
|
it: "Dynariduttore",
|
||||||
|
pt: "Desmantelar Max",
|
||||||
|
de: "Dyna-Bodycheck"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This Pokémon also does 30 damage to itself.",
|
||||||
|
fr: "Ce Pokémon s'inflige aussi 30 dégâts.",
|
||||||
|
es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.",
|
||||||
|
it: "Questo Pokémon infligge anche 30 danni a se stesso.",
|
||||||
|
pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.",
|
||||||
|
de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 270
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 4,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
73
data/Sword & Shield/Brilliant Stars/098.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/098.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Wormadam",
|
||||||
|
fr: "Cheniselle",
|
||||||
|
es: "Wormadam",
|
||||||
|
it: "Wormadam",
|
||||||
|
pt: "Wormadam",
|
||||||
|
de: "Burmadame"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 110,
|
||||||
|
types: ["Metal"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Burmy",
|
||||||
|
fr: "Cheniti",
|
||||||
|
es: "Burmy",
|
||||||
|
it: "Burmy",
|
||||||
|
pt: "Burmy",
|
||||||
|
de: "Burmy"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Matron's Anger",
|
||||||
|
fr: "Dame Colérique",
|
||||||
|
es: "Enfado de Dama",
|
||||||
|
it: "Ira della Dama",
|
||||||
|
pt: "Fúria Matriarcal",
|
||||||
|
de: "Zorn der Dame"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 10 more damage for each Pokémon in your discard pile.",
|
||||||
|
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque Pokémon dans votre pile de défausse.",
|
||||||
|
es: "Este ataque hace 10 puntos de daño más por cada Pokémon en tu pila de descartes.",
|
||||||
|
it: "Questo attacco infligge 10 danni in più per ogni Pokémon nella tua pila degli scarti.",
|
||||||
|
pt: "Este ataque causa 10 pontos de dano a mais para cada Pokémon na sua pilha de descarte.",
|
||||||
|
de: "Diese Attacke fügt für jedes Pokémon in deinem Ablagestapel 10 Schadenspunkte mehr zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30+"
|
||||||
|
}, {
|
||||||
|
cost: ["Metal", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Scrap Drop",
|
||||||
|
fr: "Largage",
|
||||||
|
es: "Caída de Chatarra",
|
||||||
|
it: "Caduta Scarti",
|
||||||
|
pt: "Despejo de Sucata",
|
||||||
|
de: "Schrottentsorgung"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 90
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
80
data/Sword & Shield/Brilliant Stars/099.ts
Normal file
80
data/Sword & Shield/Brilliant Stars/099.ts
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Brilliant Stars"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Probopass",
|
||||||
|
fr: "Tarinorme",
|
||||||
|
es: "Probopass",
|
||||||
|
it: "Probopass",
|
||||||
|
pt: "Probopass",
|
||||||
|
de: "Voluminas"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 140,
|
||||||
|
types: ["Metal"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Nosepass",
|
||||||
|
fr: "Tarinor",
|
||||||
|
es: "Nosepass",
|
||||||
|
it: "Nosepass",
|
||||||
|
pt: "Nosepass",
|
||||||
|
de: "Nasgnet"
|
||||||
|
},
|
||||||
|
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Magnetic Tension",
|
||||||
|
fr: "Tension Magnétique",
|
||||||
|
es: "Tensión Magnética",
|
||||||
|
it: "Tensione Magnetica",
|
||||||
|
pt: "Tensão Magnética",
|
||||||
|
de: "Magnetspannung"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Switch 1 of your opponent's Benched Pokémon with their Active Pokémon. This attack does 40 damage to the new Active Pokémon.",
|
||||||
|
fr: "Échangez l'un des Pokémon de Banc de votre adversaire contre son Pokémon Actif. Cette attaque inflige 40 dégâts au nouveau Pokémon Actif.",
|
||||||
|
es: "Cambia 1 de los Pokémon en Banca de tu rival por su Pokémon Activo. Este ataque hace 40 puntos de daño al nuevo Pokémon Activo.",
|
||||||
|
it: "Scambia uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon attivo. Questo attacco infligge 40 danni al nuovo Pokémon attivo.",
|
||||||
|
pt: "Troque 1 dos Pokémon no Banco do seu oponente pelo Pokémon Ativo dele(a). Este ataque causa 40 pontos de dano ao novo Pokémon Ativo.",
|
||||||
|
de: "Tausche 1 Pokémon auf der Bank deines Gegners gegen sein Aktives Pokémon aus. Diese Attacke fügt dem neuen Aktiven Pokémon 40 Schadenspunkte zu."
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
cost: ["Metal", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Iron Tackle",
|
||||||
|
fr: "Charge de Fer",
|
||||||
|
es: "Bloqueo de Hierro",
|
||||||
|
it: "Azione Ferrea",
|
||||||
|
pt: "Golpe de Colisão Férreo",
|
||||||
|
de: "Eisentackle"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This Pokémon also does 20 damage to itself.",
|
||||||
|
fr: "Ce Pokémon s'inflige aussi 20 dégâts.",
|
||||||
|
es: "Este Pokémon también se hace 20 puntos de daño a sí mismo.",
|
||||||
|
it: "Questo Pokémon infligge anche 20 danni a se stesso.",
|
||||||
|
pt: "Este Pokémon também causa 20 pontos de dano a si mesmo.",
|
||||||
|
de: "Dieses Pokémon fügt auch sich selbst 20 Schadenspunkte zu."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 120
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 4,
|
||||||
|
regulationMark: "F"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user