mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-09 02:37:50 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
60 lines
1.1 KiB
TypeScript
60 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Moumouflon",
|
||
en: "Dubwool"
|
||
},
|
||
|
||
illustrator: "Kouki Saitou",
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
hp: 130,
|
||
types: ["Colorless"],
|
||
|
||
evolveFrom: {
|
||
fr: "Moumouton",
|
||
en: "Wooloo"
|
||
},
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Cotogarde",
|
||
en: "Cotton Guard"
|
||
},
|
||
|
||
effect: {
|
||
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
|
||
en: "During your opponent’s next turn, this Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance)."
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
fr: "Damoclès",
|
||
en: "Double-Edge"
|
||
},
|
||
|
||
effect: {
|
||
fr: "Ce Pokémon s’inflige aussi 30 dégâts.",
|
||
en: "This Pokémon also does 30 damage to itself."
|
||
},
|
||
|
||
damage: 120,
|
||
cost: ["Colorless", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card |