mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-11 00:11:58 +00:00
feat: Add Scarlet & violet three first sets (#446)
Some checks failed
Build / build (push) Failing after 59s
Some checks failed
Build / build (push) Failing after 59s
This commit is contained in:
69
data/Scarlet & Violet/Scarlet & Violet/124.ts
Normal file
69
data/Scarlet & Violet/Scarlet & Violet/124.ts
Normal file
@@ -0,0 +1,69 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Scarlet & Violet"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Koraidon",
|
||||
fr: "Koraidon",
|
||||
es: "Koraidon",
|
||||
it: "Koraidon",
|
||||
pt: "Koraidon",
|
||||
de: "Koraidon"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Claw Slash",
|
||||
fr: "Tranch'Griffe",
|
||||
es: "Cuchillada Garra",
|
||||
it: "Lacerartiglio",
|
||||
pt: "Golpe de Garra",
|
||||
de: "Klauenschlitzer"
|
||||
},
|
||||
|
||||
damage: 70
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting", "Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Rampaging Fang",
|
||||
fr: "Croc Furieux",
|
||||
es: "Colmillo Furioso",
|
||||
it: "Zanna Infuriata",
|
||||
pt: "Canino Feroz",
|
||||
de: "Tobende Fänge"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard 3 Energy from this Pokémon.",
|
||||
fr: "Défaussez 3 Énergies de ce Pokémon.",
|
||||
es: "Descarta 3 Energías de este Pokémon.",
|
||||
it: "Scarta tre Energie da questo Pokémon.",
|
||||
pt: "Descarte 3 Energias deste Pokémon.",
|
||||
de: "Lege 3 Energien von diesem Pokémon auf deinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 190
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G",
|
||||
illustrator: "Kouki Saitou",
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user