mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Added Lost Origin datas (#360)
This commit is contained in:
55
data/Sword & Shield/Lost Origin/004.ts
Normal file
55
data/Sword & Shield/Lost Origin/004.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Lost Origin"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Paras",
|
||||
fr: "Paras",
|
||||
es: "Paras",
|
||||
it: "Paras",
|
||||
pt: "Paras",
|
||||
de: "Paras"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Absorb",
|
||||
fr: "Vole-Vie",
|
||||
es: "Absorber",
|
||||
it: "Assorbimento",
|
||||
pt: "Absorção",
|
||||
de: "Absorber"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Heal 10 damage from this Pokémon.",
|
||||
fr: "Soignez 10 dégâts de ce Pokémon.",
|
||||
es: "Cura 10 puntos de daño a este Pokémon.",
|
||||
it: "Cura questo Pokémon da 10 danni.",
|
||||
pt: "Cure 10 pontos de dano deste Pokémon.",
|
||||
de: "Heile 10 Schadenspunkte bei diesem Pokémon."
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F",
|
||||
variants: {
|
||||
"normal": true,
|
||||
"reverse": true,
|
||||
"holo": false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user