1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-12 15:59:18 +00:00

feat: Add Fusion Strike (#162)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-11-12 12:42:38 +01:00
committed by GitHub
parent a0792cd72f
commit 2be1cb2be9
285 changed files with 16346 additions and 0 deletions

View 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