mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
91 lines
1.4 KiB
TypeScript
91 lines
1.4 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "swsh1-52",
|
||
localId: 52,
|
||
|
||
dexId: 226,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Mantine",
|
||
fr: "Démanta",
|
||
},
|
||
|
||
hp: 110,
|
||
|
||
type: [
|
||
Type.WATER,
|
||
],
|
||
|
||
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/swsh/swsh1/52/low",
|
||
fr: "https://assets.tcgdex.net/fr/swsh/swsh1/52/low",
|
||
}
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: "Jumpei Akasaka",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.WATER
|
||
],
|
||
name: {
|
||
en: "Water Reserve",
|
||
fr: "Réserve d’Eau",
|
||
},
|
||
text: {
|
||
en: "Search your deck for up to 3 Water Energy cards, reveal them, and put them into your hand. Then, shuffle your deck.",
|
||
fr: "Cherchez dans votre deck jusqu’à 3 cartes Énergie Eau, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.WATER,
|
||
Type.WATER
|
||
],
|
||
name: {
|
||
en: "Wave Splash",
|
||
fr: "Grosse Vague",
|
||
},
|
||
damage: 60
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.LIGHTNING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.UNCOMMON,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Sword & Shield",
|
||
code: "swsh1"
|
||
}
|
||
}
|
||
|
||
export default card
|