1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +00:00
Florian Bouillon e7e0e4d639
feat: Add Pokemon GO set (#323)
Signed-off-by: Avior <github@avior.me>
2022-07-01 10:17:20 +02:00

41 lines
578 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Pokémon GO"
const card: Card = {
set: Set,
name: {
en: "Squirtle",
fr: "Carapuce",
es: "Squirtle",
it: "Squirtle",
pt: "Squirtle",
de: "Schiggy"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
en: "Water Gun",
fr: "Pistolet à O",
es: "Pistola Agua",
it: "Pistolacqua",
pt: "Revólver d'Água",
de: "Aquaknarre"
},
damage: 20
}],
retreat: 1,
regulationMark: "F"
}
export default card