mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
41
data/Sword & Shield/Pokémon GO/015.ts
Normal file
41
data/Sword & Shield/Pokémon GO/015.ts
Normal file
@ -0,0 +1,41 @@
|
||||
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
|
Reference in New Issue
Block a user