mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
94
data/Sword & Shield/Fusion Strike/67.ts
Normal file
94
data/Sword & Shield/Fusion Strike/67.ts
Normal file
@ -0,0 +1,94 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Gorebyss",
|
||||
fr: "Rosabyss",
|
||||
es: "Gorebyss",
|
||||
it: "Gorebyss",
|
||||
pt: "Gorebyss",
|
||||
de: "Saganabyss"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Water"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Clamperl",
|
||||
fr: "Coquiperl",
|
||||
es: "Clamperl",
|
||||
it: "Clamperl",
|
||||
pt: "Clamperl",
|
||||
de: "Perlu"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
retreat: 1,
|
||||
regulationMark: "E",
|
||||
illustrator: "Misa Tsutsui",
|
||||
|
||||
description: {
|
||||
en: "It sucks bodily fluids out of its prey. The leftover meat sinks to the seafloor, where it becomes food for other Pokémon."
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Rapid Strike Canceler",
|
||||
fr: "Inhibiteur de Mille Poings",
|
||||
es: "Cancelador de Golpe Fluido",
|
||||
it: "Annientamento Colpo Rapido",
|
||||
de: "Fließender-Angriff-Abwehr"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Rapid Strike Pokémon in play have no Abilities.",
|
||||
fr: "Les Pokémon Mille Poings en jeu de votre adversaire n'ont pas de talent.",
|
||||
es: "Los Pokémon Golpe Fluido en juego de tu rival no tienen ninguna habilidad.",
|
||||
it: "I Pokémon Colpo Rapido in gioco del tuo avversario non hanno abilità.",
|
||||
de: "Die Fließender-Angriff-Pokémon deines Gegners im Spiel haben keine Fähigkeiten."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Draining Kiss",
|
||||
fr: "Vampibaiser",
|
||||
es: "Beso Drenaje",
|
||||
it: "Assorbibacio",
|
||||
de: "Diebeskuss"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
|
||||
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.",
|
||||
de: "Heile 30 Schadenspunkte bei diesem Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user