1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 16:01:59 +00:00
Files
cards-database/data/Black & White/Black & White/28.ts

57 lines
750 B
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 '../Black & White'
const card: Card = {
name: {
en: "Oshawott",
fr: "Moustillon",
},
illustrator: "5ban Graphics",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
501,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Razor Shell",
fr: "Coquilame",
},
effect: {
en: "Flip a coin. If heads, this attack does 20 more damage.",
fr: "Lancez une pièce. Si cest face, cette attaque inflige 20 dégâts supplémentaires.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 1,
}
export default card