1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 23:22:11 +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

101 lines
2.0 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-36",
localId: 36,
// Card informations
name: {
en: "Walrein",
fr: "Kaimorse Niv. 59",
},
hp: 140,
type: [
Type.WATER,
],
dexId: 365,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl2/36/low",
fr: "https://assets.tcgdex.net/fr/pl/pl2/36/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl2/36/high",
fr: "https://assets.tcgdex.net/fr/pl/pl2/36/high",
},
},
evolveFrom: {
en: "Sealeo",
fr: "Phogleur",
},
tags: [
Tag.STAGE2,
],
illustrator: "kawayoo",
abilities: [{
id: 393,
type: AbilityType.POKEPOWER,
name: {
en: "Gather Ice",
fr: "Groupement de glace",
},
text: {
en: "Once during your turn (before your attack), when you play Walrein from your hand to evolve 1 of your Pokémon, you may attach as many Water Energy cards from your hand to Walrein as you like.",
fr: "Une seule fois lors de votre tour (avant votre attaque), lorsque vous jouez Kaimorse de votre main pour faire évoluer 1 de vos Pokémon, vous pouvez attacher autant de cartes Énergie Water de votre main sur Kaimorse que vous le voulez.",
}
}],
attacks: [{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Cold Crush",
fr: "Écraser net",
},
text: {
en: "Discard an Energy card attached to Walrein and then discard an Energy card attached to the Defending Pokémon.",
fr: "Défaussez une carte Énergie attachée à Kaimorse puis défaussez une carte Énergie attachée au Pokémon Défenseur.",
},
damage: 70
}],
weaknesses: [{
type: Type.METAL,
value: "+30"
}],
retreat: 4,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Rising Rivals",
code: "pl2"
}
}
export default card