mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
76 lines
967 B
TypeScript
76 lines
967 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Champion\'s Path'
|
||
|
||
const card: Card = {
|
||
dexId: [333],
|
||
name: {
|
||
en: "Swablu",
|
||
fr: "Tylton",
|
||
es: "Swablu",
|
||
it: "Swablu",
|
||
pt: "Swablu",
|
||
de: "Wablu"
|
||
},
|
||
|
||
illustrator: "0313",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 50,
|
||
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Peck",
|
||
fr: "Picpic",
|
||
es: "Picotazo",
|
||
it: "Beccata",
|
||
pt: "Bicada",
|
||
de: "Pikser"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "It constantly grooms its cotton-like wings. It takes a shower to clean itself if it becomes dirty."
|
||
}
|
||
}
|
||
|
||
export default card
|