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

75 lines
1.1 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Secret Wonders'
const card: Card = {
name: {
en: "Trapinch",
fr: "Kraknoix",
},
illustrator: "Sumiyoshi Kizuki",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
328,
],
hp: 50,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Inviting Trap",
fr: "Piège tentant",
},
effect: {
en: "Switch the Defending Pokémon with 1 of your opponent's Benched Pokémon.",
fr: "Échangez le Pokémon Défenseur avec 1 des Pokémon de Banc de votre adversaire.",
},
},
{
cost: [
"Fighting",
],
name: {
en: "Sand Tomb",
fr: "Tombe de sable",
},
effect: {
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
fr: "Le Pokémon Défenseur ne peut pas battre en retraite lors du prochain tour de votre adversaire.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Water",
value: "+10"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 1,
}
export default card