1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

73 lines
1.0 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Sandstorm'
const card: Card = {
name: {
en: "Trapinch",
fr: "Kraknoix",
de: "Knacklion"
},
illustrator: "Mitsuhiro Arita",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
328,
],
hp: 40,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Sand Pit",
fr: "Bac à sable",
de: "Sandgrube"
},
effect: {
en: "The Defending Pokémon can't retreat until the end of your opponent's next turn.",
fr: "Le Pokémon Défenseur ne peut pas battre en retraite jusqu'à la fin du prochain tour de votre adversaire.",
de: "Das Verteidigende Pokémon kann sich im nächsten Zug deines Gegners nicht zurückziehen."
},
damage: 10,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Irongrip",
fr: "Poigne de fer",
de: "Eiserner Griff"
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card