mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
106 lines
1.6 KiB
TypeScript
106 lines
1.6 KiB
TypeScript
import Card from '../../../interfaces/Card'
|
||
import Type from '../../../interfaces/Type'
|
||
import Tag from '../../../interfaces/Tag'
|
||
import Rarity from '../../../interfaces/Rarity'
|
||
import AbilityType from '../../../interfaces/AbilityType'
|
||
import Category from '../../../interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "sm3-111",
|
||
localId: 111,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Bewear",
|
||
fr: "Chelours",
|
||
},
|
||
|
||
hp: 120,
|
||
|
||
type: [
|
||
Type.COLORLESS,
|
||
],
|
||
|
||
dexId: 760,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm3/111/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm3/111/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm3/111/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm3/111/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Stufful",
|
||
fr: "Nounourson",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 9,
|
||
name: "Mitsuhiro Arita"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Mix-Up",
|
||
fr: "Mélange",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If heads, discard the top 3 cards of your opponent's deck.",
|
||
fr: "Lancez une pièce. Si c’est face, défaussez les 3 cartes du dessus du deck de votre adversaire.",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Tantrum",
|
||
fr: "Mauvaise Humeur",
|
||
},
|
||
text: {
|
||
en: "This Pokémon is now Confused.",
|
||
fr: "Ce Pokémon est maintenant Confus.",
|
||
},
|
||
damage: 120
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.Rare,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Burning Shadows",
|
||
code: "sm3"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|