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

77 lines
1.3 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 '../Generations'
const card: Card = {
name: {
en: "Cloyster",
fr: "Crustabri",
},
illustrator: "Masakazu Fukuda",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
91,
],
hp: 100,
types: [
"Water",
],
evolveFrom: {
en: "Shellder",
fr: "Kokiyas",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Clamp Crush",
fr: "Pince Broyeuse",
},
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed and discard an Energy attached to that Pokémon.",
fr: "Lancez une pièce. Si cest face, le Pokémon Actif de votre adversaire est maintenant Paralysé, et vous défaussez une Énergie lui étant attachée.",
},
damage: 30,
},
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Spike Cannon",
fr: "Picanon",
},
effect: {
en: "Flip 5 coins. This attack does 30 damage times the number of heads.",
fr: "Lancez 5 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card