mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-03 13:01:57 +00:00
57 lines
836 B
TypeScript
57 lines
836 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../White Flare"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Oshawott",
|
|
fr: "Moustillon",
|
|
de: "Ottaro",
|
|
it: "Oshawott",
|
|
pt: "Oshawott",
|
|
es: "Oshawott",
|
|
'es-mx': "Oshawott"
|
|
},
|
|
|
|
rarity: "Illustration rare",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Water"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Water"],
|
|
|
|
name: {
|
|
en: "Tackle",
|
|
fr: "Charge",
|
|
de: "Tackle",
|
|
it: "Azione",
|
|
pt: "Investida",
|
|
es: "Placaje",
|
|
'es-mx': "Tacleada"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Water", "Water"],
|
|
|
|
name: {
|
|
en: "Water Gun",
|
|
fr: "Pistolet à O",
|
|
de: "Aquaknarre",
|
|
it: "Pistolacqua",
|
|
pt: "Revólver d'Água",
|
|
es: "Pistola Agua",
|
|
'es-mx': "Chorro de Agua"
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "I"
|
|
}
|
|
|
|
export default card |