1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

107 lines
2.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "sm12-52",
localId: 52,
// Card informations
name: {
en: "Walrein",
fr: "Kaimorse",
},
hp: 160,
type: [
Type.WATER,
],
dexId: 365,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm12/52/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm12/52/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm12/52/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm12/52/high.png",
},
},
evolveFrom: {
en: "Sealeo",
fr: "Phogleur",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 6,
name: "Ayaka Yoshida"
},
attacks: [{
cost: [
Type.WATER
],
name: {
en: "Cold Snap",
fr: "Vague de Froid",
},
text: {
en: "Your opponent can't play any Trainer cards from their hand during their next turn. If 1 of your Pokémon used Cold Snap during your last turn, this attack can't be used.",
fr: "Votre adversaire ne peut pas jouer de carte Dresseur de sa main pendant son prochain tour. Si lun de vos Pokémon a utilisé Vague de Froid pendant votre dernier tour, cette attaque ne peut pas être utilisée.",
},
damage: 60
},{
cost: [
Type.WATER,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Blizzard",
fr: "Blizzard",
},
text: {
en: "This attack does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 10 dégâts à chacun des Pokémon de Banc de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
damage: 120
}],
weaknesses: [{
type: Type.METAL,
value: "×2"
}],
retreat: 4,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Cosmic Eclipse",
code: "sm12"
}
}
export default card