mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +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:
63
data/Scarlet & Violet/Obsidian Flames/165.ts
Normal file
63
data/Scarlet & Violet/Obsidian Flames/165.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Obsidian Flames"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Kangourex",
|
||||
en: "Kangaskhan",
|
||||
es: "Kangaskhan",
|
||||
it: "Kangaskhan",
|
||||
pt: "Kangaskhan",
|
||||
de: "Kangama"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Coup d'Boule",
|
||||
en: "Headbutt",
|
||||
es: "Golpe Cabeza",
|
||||
it: "Bottintesta",
|
||||
pt: "Cabeçada",
|
||||
de: "Kopfnuss"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Pique-Pioche",
|
||||
en: "Spike Draw",
|
||||
es: "Robo Pico",
|
||||
it: "Battipesca",
|
||||
pt: "Comprada Espinhosa",
|
||||
de: "Stachelzug"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Piochez 2 cartes.",
|
||||
en: "Draw 2 cards.",
|
||||
es: "Roba 2 cartas.",
|
||||
it: "Pesca due carte.",
|
||||
pt: "Compre 2 cartas.",
|
||||
de: "Ziehe 2 Karten."
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user