1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

95 lines
1.5 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: "dp2-8",
localId: 8,
// Card informations
name: {
en: "Feraligatr",
},
hp: 130,
type: [
Type.WATER,
],
dexId: 160,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp2/8/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp2/8/high",
},
},
evolveFrom: {
en: "Croconaw",
},
tags: [
Tag.STAGE2,
],
illustrator: "Kazuyuki Kano",
attacks: [{
cost: [
Type.WATER,
Type.WATER
],
name: {
en: "Energy Cyclone",
},
text: {
en: "Choose as many Energy cards from your hand as you like and show them to your opponent. This attack does 20 damage times the number of Energy cards you chose. Put those Energy cards on top of your deck. Shuffle your deck afterward.",
},
damage: 20
},{
cost: [
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Breaking Tail",
},
text: {
en: "Choose 1 card from your opponent's hand without looking and discard it.",
},
damage: 60
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "+30"
}],
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Mysterious Treasures",
code: "dp2"
}
}
export default card