mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-29 22:32:10 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
42 lines
666 B
TypeScript
42 lines
666 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Kraknoix",
|
||
en: "Trapinch"
|
||
},
|
||
|
||
illustrator: "MAHOU",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 60,
|
||
types: ["Fighting"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Vibration Terrestre",
|
||
en: "Land’s Pulse"
|
||
},
|
||
|
||
effect: {
|
||
fr: "Si un Stade est en jeu, cette attaque inflige 10 dégâts supplémentaires.",
|
||
en: "If a Stadium is in play, this attack does 10 more damage."
|
||
},
|
||
|
||
damage: "10+",
|
||
cost: ["Fighting"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card |