1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-18 06:19:54 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

55 lines
759 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../151"
const card: Card = {
dexId: [72],
set: Set,
name: {
fr: "Tentacool",
en: "Tentacool",
es: "Tentacool",
it: "Tentacool",
pt: "Tentacool",
de: "Tentacha"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
fr: "Picotement",
en: "Tingle",
es: "Hormigueo",
it: "Formicolio",
pt: "Formigamento",
de: "Kribbeln"
},
damage: 10
}, {
cost: ["Colorless", "Colorless"],
name: {
fr: "Arrosage",
en: "Watering",
es: "Riego",
it: "Innaffiare",
pt: "Irrigação",
de: "Gießen"
},
damage: 20
}],
retreat: 1,
regulationMark: "G"
}
export default card