mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
59 lines
759 B
TypeScript
59 lines
759 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../151"
|
|
|
|
const card: Card = {
|
|
dexId: [13],
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Aspicot",
|
|
en: "Weedle",
|
|
es: "Weedle",
|
|
it: "Weedle",
|
|
pt: "Weedle",
|
|
de: "Hornliu"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 50,
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Grass"],
|
|
|
|
name: {
|
|
fr: "Collision",
|
|
en: "Ram",
|
|
es: "Apisonar",
|
|
it: "Carica",
|
|
pt: "Aríete",
|
|
de: "Ramme"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Piqûre",
|
|
en: "Bug Bite",
|
|
es: "Picadura",
|
|
it: "Coleomorso",
|
|
pt: "Picada",
|
|
de: "Käferbiss"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |