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:
60
data/Sword & Shield/Lost Origin/033.ts
Normal file
60
data/Sword & Shield/Lost Origin/033.ts
Normal file
@ -0,0 +1,60 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Lost Origin"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Seel",
|
||||
fr: "Otaria",
|
||||
es: "Seel",
|
||||
it: "Seel",
|
||||
pt: "Seel",
|
||||
de: "Jurob"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Water"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
en: "Headbutt",
|
||||
fr: "Coup d'Boule",
|
||||
es: "Golpe Cabeza",
|
||||
it: "Bottintesta",
|
||||
pt: "Cabeçada",
|
||||
de: "Kopfnuss"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Water", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Rain Splash",
|
||||
fr: "Pluie Éclaboussante",
|
||||
es: "Golpe de Lluvia",
|
||||
it: "Spruzzapioggia",
|
||||
pt: "Chuva Borrifante",
|
||||
de: "Regenplatscher"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F",
|
||||
|
||||
variants: {
|
||||
"normal": true,
|
||||
"reverse": true,
|
||||
"holo": false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user