mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
only missing the secrets cards as they are secret :D Signed-off-by: Avior <florian.bouillon@delta-wings.net>
37 lines
479 B
TypeScript
37 lines
479 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Chilling Reign'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Weedle",
|
||
fr: "Aspicot"
|
||
},
|
||
|
||
illustrator: "Sanosuke Sakuma",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 40,
|
||
types: ["Grass"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Pierce",
|
||
fr: "Transpercement"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Grass"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |