1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

78 lines
1.7 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Rising Rivals'
const card: Card = {
name: {
en: "Trapinch",
fr: "Kraknoix Niv. 14",
de: "Knacklion"
},
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",
de: "Sand sammeln"
},
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.",
de: "Einmal während deines Zuges (vor deinem Angriff) kannst du, wenn Knacklion dein Aktives Pokémon ist, deinen Ablagestapel nach 1 -Basis-Energiekarte durchsuchen und sie an Knacklion anlegen."
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Grind",
fr: "Écrase",
de: "Zermahlen"
},
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.",
de: "Dieser Angriff fügt 10 Schadenspunkte mal der Anzahl der an Knacklion angelegten Energien zu."
},
damage: "10x",
},
],
weaknesses: [
{
type: "Water",
value: "+10"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 1,
}
export default card