mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
90 lines
3.0 KiB
TypeScript
90 lines
3.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../SWSH Black Star Promos'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Blastoise VMAX",
|
||
fr: "Tortank VMAX",
|
||
es: "Blastoise VMAX",
|
||
it: "Blastoise VMAX",
|
||
pt: "Blastoise VMAX",
|
||
de: "Turtok VMAX"
|
||
},
|
||
|
||
illustrator: "5ban Graphics",
|
||
rarity: "None",
|
||
category: "Pokemon",
|
||
hp: 330,
|
||
types: ["Water"],
|
||
|
||
evolveFrom: {
|
||
en: "Blastoise V"
|
||
},
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Grand Falls",
|
||
fr: "Cascade Grandiose",
|
||
es: "Gran Cascada",
|
||
it: "Cascata Maestosa",
|
||
pt: "Grand Falls",
|
||
de: "Gewaltige Fälle"
|
||
},
|
||
|
||
effect: {
|
||
en: "Search your deck for up to 3 Water Energy cards and attach them to your Benched Pokémon in any way you like. Then, shuffle your deck.",
|
||
fr: "Cherchez dans votre deck jusqu'à 3 cartes Énergie Water, puis attachez-les à vos Pokémon de Banc comme il vous plaît. Mélangez ensuite votre deck.",
|
||
es: "Busca en tu baraja hasta 3 cartas de Energía Water y únelas a tus Pokémon en Banca de la manera que desees. Después, baraja las cartas de tu baraja.",
|
||
it: "Cerca nel tuo mazzo fino a tre carte Energia Water e assegnale ai tuoi Pokémon in panchina nel modo che preferisci. Poi rimischia le carte del tuo mazzo.",
|
||
pt: "Search your deck for up to 3 Water Energy cards and attach them to your Benched Pokémon in any way you like. Then, shuffle your deck.",
|
||
de: "Durchsuche dein Deck nach bis zu 3 Water-Energiekarten und lege sie beliebig an die Pokémon auf deiner Bank an. Mische anschließend dein Deck."
|
||
},
|
||
|
||
damage: 120,
|
||
cost: ["Water", "Water", "Water"]
|
||
}, {
|
||
name: {
|
||
en: "G-Max Bombard",
|
||
fr: "Bombardement G-Max",
|
||
es: "Gigabombardeo",
|
||
it: "Gigabombardamento",
|
||
pt: "G-Max Bombard",
|
||
de: "Giga-Kanone"
|
||
},
|
||
|
||
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: "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.)",
|
||
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: 220,
|
||
cost: ["Water", "Water", "Water", "Water"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 3,
|
||
stage: "VMAX",
|
||
dexId: [9],
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card
|