1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00

74 lines
1.2 KiB
TypeScript
Raw 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 '../Primal Clash'
const card: Card = {
name: {
en: "Tentacruel",
fr: "Tentacruel",
},
illustrator: "match",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
73,
],
hp: 100,
types: [
"Psychic",
],
evolveFrom: {
en: "Tentacool",
fr: "Tentacool",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Dancing Tentacles",
fr: "Tentacules Dansantes",
},
effect: {
en: "Your opponent's Active Pokémon is now Confused and Poisoned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus et Empoisonné.",
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Stick and Absorb",
fr: "Colle et Absorbe",
},
effect: {
en: "Heal 30 damage from this Pokémon. The Defending Pokémon can't retreat during your opponent's next turn.",
fr: "Soignez 30 dégâts à ce Pokémon. Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 3,
}
export default card