mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 17:39:18 +00:00
feat: Add shrouded fable cards (#525)
This commit is contained in:
63
data/Scarlet & Violet/Shrouded Fable/014.ts
Normal file
63
data/Scarlet & Violet/Shrouded Fable/014.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shrouded Fable"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Weavile",
|
||||
fr: "Dimoret",
|
||||
es: "Weavile",
|
||||
it: "Weavile",
|
||||
pt: "Weavile",
|
||||
de: "Snibunna"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Water"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
en: "Slash",
|
||||
fr: "Tranche",
|
||||
es: "Cuchillada",
|
||||
it: "Lacerazione",
|
||||
pt: "Talho",
|
||||
de: "Schlitzer"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}, {
|
||||
cost: ["Water", "Water"],
|
||||
|
||||
name: {
|
||||
en: "Hail Claw",
|
||||
fr: "Griffe Grêle",
|
||||
es: "Garra Granizo",
|
||||
it: "Artiglio di Grandine",
|
||||
pt: "Garra de Granizo",
|
||||
de: "Hagelklaue"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard all Energy from this Pokémon. Your opponent's Active Pokémon is now Paralyzed.",
|
||||
fr: "Défaussez toutes les Énergies de ce Pokémon. Le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||||
es: "Descarta todas las Energías de este Pokémon. El Pokémon Activo de tu rival pasa a estar Paralizado.",
|
||||
it: "Scarta tutte le Energie da questo Pokémon. Il Pokémon attivo del tuo avversario viene paralizzato.",
|
||||
pt: "Descarte todas as Energias deste Pokémon. O Pokémon Ativo do seu oponente agora está Paralisado.",
|
||||
de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel. Das Aktive Pokémon deines Gegners ist jetzt paralysiert."
|
||||
},
|
||||
|
||||
damage: 70
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user