1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

73 lines
1.3 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Rising Rivals'
const card: Card = {
name: {
en: "Trapinch",
fr: "Kraknoix Niv. 14",
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
328,
],
hp: 50,
types: [
"Fighting",
],
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Gather Sand",
fr: "Groupement de sable",
},
effect: {
en: "Once during your turn (before your attack), if Trapinch is your Active Pokémon, you may search your discard pile for a basic Fighting Energy card and attach it to Trapinch.",
fr: "Une seule fois lors de votre tour (avant votre attaque), si Kraknoix est votre Pokémon Actif, vous pouvez chercher dans votre pile de défausse une carte Énergie Fighting et l'attacher à Kraknoix.",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Grind",
fr: "Écrase",
},
effect: {
en: "Does 10 damage times the amount of Energy attached to Trapinch.",
fr: "Inflige 10 dégâts multipliés par le nombre d'Énergies attachées à Kraknoix.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Water",
value: "+10"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 1,
}
export default card