mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +00:00
38 lines
462 B
TypeScript
38 lines
462 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Mustéflott"
|
||
},
|
||
|
||
illustrator: "AKIRA EGAWA",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
hp: 110,
|
||
types: ["Water"],
|
||
|
||
evolveFrom: {
|
||
fr: "Mustébouée"
|
||
},
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Surf"
|
||
},
|
||
|
||
damage: 50,
|
||
cost: ["Water"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1
|
||
}
|
||
|
||
export default card |