1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-23 12:29:18 +00:00
Files
cards-database/data/Scarlet & Violet/Scarlet & Violet/101.ts
Florian Bouillon 3c93a3534c
Some checks failed
Build / build (push) Failing after 59s
feat: Add Scarlet & violet three first sets (#446)
2023-11-12 14:56:22 +01:00

52 lines
753 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../Scarlet & Violet"
const card: Card = {
set: Set,
name: {
en: "Flittle",
fr: "Flotillon",
es: "Flittle",
it: "Flittle",
pt: "Flittle",
de: "Flattutu"
},
rarity: "Common",
category: "Pokemon",
hp: 40,
types: ["Psychic"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Spinning Attack",
fr: "Attaque Tournante",
es: "Ataque Giratorio",
it: "Attacco Rotante",
pt: "Ataque Giratório",
de: "Rundumangriff"
},
damage: 20
}],
retreat: 1,
regulationMark: "G",
illustrator: "Tika Matsuno",
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}]
}
export default card