mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-21 03:29:17 +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:
61
data/Scarlet & Violet/Obsidian Flames/017.ts
Normal file
61
data/Scarlet & Violet/Obsidian Flames/017.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Obsidian Flames"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Candine",
|
||||
en: "Steenee",
|
||||
es: "Steenee",
|
||||
it: "Steenee",
|
||||
pt: "Steenee",
|
||||
de: "Frubaila"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Grass"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass"],
|
||||
|
||||
name: {
|
||||
fr: "Aromathérapie",
|
||||
en: "Aromatherapy",
|
||||
es: "Aromaterapia",
|
||||
it: "Aromaterapia",
|
||||
pt: "Aromaterapia",
|
||||
de: "Aromakur"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Soignez 30 dégâts de chacun de vos Pokémon.",
|
||||
en: "Heal 30 damage from each of your Pokémon.",
|
||||
es: "Cura 30 puntos de daño a cada uno de tus Pokémon.",
|
||||
it: "Cura ciascuno dei tuoi Pokémon da 30 danni.",
|
||||
pt: "Cure 30 pontos de dano de cada um dos seus Pokémon.",
|
||||
de: "Heile 30 Schadenspunkte bei jedem deiner Pokémon."
|
||||
}
|
||||
}, {
|
||||
cost: ["Grass", "Grass"],
|
||||
|
||||
name: {
|
||||
fr: "Tranch'Herbe",
|
||||
en: "Razor Leaf",
|
||||
es: "Hoja Afilada",
|
||||
it: "Foglielama",
|
||||
pt: "Folha Navalha",
|
||||
de: "Rasierblatt"
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user