1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon 384d5bd08d
Updated Cards to use new Ra
rities

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 14:00:12 +02:00

97 lines
1.8 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: "pl2-77",
localId: 77,
// Card informations
name: {
en: "Sealeo",
fr: "Phogleur Niv. 31",
},
hp: 80,
type: [
Type.WATER,
],
dexId: 364,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl2/77/low",
fr: "https://assets.tcgdex.net/fr/pl/pl2/77/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl2/77/high",
fr: "https://assets.tcgdex.net/fr/pl/pl2/77/high",
},
},
evolveFrom: {
en: "Spheal",
fr: "Obalie",
},
tags: [
Tag.STAGE1,
],
illustrator: "Saya Tsuruta",
attacks: [{
name: {
en: "Find Ice",
fr: "Trouver de la glace",
},
text: {
en: "Search your deck for up to 2 Water Energy cards, show them to your opponent, and put them into your hand. Shuffle your deck afterward.",
fr: "Cherchez dans votre deck 2 cartes Énergie Water, montrez-les à votre adversaire et placez-les dans votre main. Ensuite, mélangez votre deck.",
},
},{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Sheer Cold",
fr: "Glaciation",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon can't attack during your opponent's next turn.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur ne peut pas attaquer lors du prochain tour de votre adversaire.",
},
damage: 20
}],
weaknesses: [{
type: Type.METAL,
value: "+20"
}],
retreat: 2,
rarity: Rarity.COMMON,
category: Category.POKEMON,
set: {
name: "Rising Rivals",
code: "pl2"
}
}
export default card