1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 09:59:19 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

105
cards/bw/bw6/125.ts Normal file
View File

@ -0,0 +1,105 @@
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: "bw6-125",
localId: 125,
// Card informations
name: {
en: "Serperior",
fr: "Majaspic",
},
hp: 130,
type: [
Type.GRASS,
],
dexId: 497,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw6/125/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw6/125/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw6/125/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw6/125/high.png",
},
},
evolveFrom: {
en: "Servine",
fr: "Lianaja",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
abilities: [{
id: 372,
type: AbilityType.TALENT,
name: {
en: "Royal Heal",
fr: "Soin Royal",
},
text: {
en: "At any time between turns, heal 10 damage from each of your Pokémon.",
fr: "N'importe quand entre chaque tour, soignez 10 dégâts à chacun de vos Pokémon.",
}
}],
attacks: [{
cost: [
Type.GRASS,
Type.COLORLESS
],
name: {
en: "Leaf Tornado",
fr: "Phytomixeur",
},
text: {
en: "Move as many Grass Energy attached to your Pokémon to your other Pokémon in any way you like.",
fr: "Déplacez autant d'Énergies Grass attachées à vos Pokémon que vous voulez vers vos autres Pokémon, de la manière que vous voulez.",
},
damage: 60
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.WATER,
value: "-20"
}],
retreat: 1,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Dragons Exalted",
code: "bw6"
}
}
export default card