mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Add shrouded fable cards (#525)
This commit is contained in:
61
data/Scarlet & Violet/Shrouded Fable/067.ts
Normal file
61
data/Scarlet & Violet/Shrouded Fable/067.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shrouded Fable"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Horsea",
|
||||
fr: "Hypotrempe",
|
||||
es: "Horsea",
|
||||
it: "Horsea",
|
||||
pt: "Horsea",
|
||||
de: "Seeper"
|
||||
},
|
||||
|
||||
rarity: "Illustration rare",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Water"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
en: "Hold Still",
|
||||
fr: "Ne Bougez Pas",
|
||||
es: "Permanecer Inmóvil",
|
||||
it: "Immobile",
|
||||
pt: "Ficar Parado",
|
||||
de: "Stillhalten"
|
||||
},
|
||||
|
||||
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."
|
||||
}
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Razor Fin",
|
||||
fr: "Aileron-Rasoir",
|
||||
es: "Aleta Afilada",
|
||||
it: "Pinnalama",
|
||||
pt: "Barbatana Cortante",
|
||||
de: "Rasierflosse"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user