mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 17:39:18 +00:00
feat: Add Scarlet & violet three first sets (#446)
Some checks failed
Build / build (push) Failing after 59s
Some checks failed
Build / build (push) Failing after 59s
This commit is contained in:
54
data/Scarlet & Violet/151/072.ts
Normal file
54
data/Scarlet & Violet/151/072.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../151"
|
||||
|
||||
const card: Card = {
|
||||
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
|
Reference in New Issue
Block a user