mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
feat: Added Lost Origin datas (#360)
This commit is contained in:
60
data/Sword & Shield/Lost Origin/042.ts
Normal file
60
data/Sword & Shield/Lost Origin/042.ts
Normal file
@ -0,0 +1,60 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Lost Origin"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Snover",
|
||||
fr: "Blizzi",
|
||||
es: "Snover",
|
||||
it: "Snover",
|
||||
pt: "Snover",
|
||||
de: "Shnebedeck"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Water"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
en: "Corkscrew Punch",
|
||||
fr: "Poing Tire-Bouchon",
|
||||
es: "Puño Tirabuzón",
|
||||
it: "Pugno Rotante",
|
||||
pt: "Soco Saca-rolha",
|
||||
de: "Korkenzieherhieb"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Water", "Water", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Icicle Missile",
|
||||
fr: "Missile Stalactite",
|
||||
es: "Misil Carámbano",
|
||||
it: "Missilghiaccio",
|
||||
pt: "Míssil Gélido",
|
||||
de: "Eiszapfenrakete"
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F",
|
||||
|
||||
variants: {
|
||||
"normal": true,
|
||||
"reverse": true,
|
||||
"holo": false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user