mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 01:37:52 +00:00
44 lines
581 B
TypeScript
44 lines
581 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Crèmy"
|
||
},
|
||
|
||
illustrator: "Motofumi Fujiwara",
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
hp: 50,
|
||
types: ["Psychic"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Aromathérapie"
|
||
},
|
||
|
||
effect: {
|
||
fr: "Soignez 10 dégâts de chacun de vos Pokémon."
|
||
},
|
||
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
fr: "Charge"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Psychic", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Metal",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1
|
||
}
|
||
|
||
export default card |