1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
TCGdex [Bot] 7e3cf7aa08
editor: fix Paldea Evolved variants (#510)
Co-authored-by: Aviortheking <git@avior.me>
2024-07-03 16:28:15 +02:00

54 lines
1.2 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
set: Set,
name: {
fr: "Tissenboule",
en: "Tarountula",
es: "Tarountula",
it: "Tarountula",
pt: "Tarountula",
de: "Tarundel"
},
rarity: "Common",
category: "Pokemon",
hp: 50,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
fr: "Astreinte",
en: "Bind Down",
es: "Amarrar",
it: "Legafermo",
pt: "Aprisionamento",
de: "Anbinden"
},
effect: {
fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.",
en: "During your opponent's next turn, the Defending Pokémon can't retreat.",
es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.",
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.",
pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá recuar.",
de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen."
},
damage: 10
}],
retreat: 1,
regulationMark: "G",
variants: {
holo: false
}
}
export default card