1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-13 09:11:59 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

104
cards/xy/xy2/9.ts Normal file
View File

@@ -0,0 +1,104 @@
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: "xy2-9",
localId: 9,
// Card informations
name: {
en: "Roserade",
fr: "Roserade",
},
hp: 90,
type: [
Type.GRASS,
],
dexId: 407,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy2/9/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy2/9/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy2/9/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy2/9/high.png",
},
},
evolveFrom: {
en: "Roselia",
fr: "Rosélia",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 8,
name: "Masakazu Fukuda"
},
attacks: [{
cost: [
Type.GRASS
],
name: {
en: "Whiplash",
fr: "Fouet Furieux",
},
text: {
en: "Flip a coin until you get tails. For each heads, discard an Energy attached to your opponent's Active Pokémon.",
fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Pour chaque côté face, défaussez une Énergie attachée au Pokémon Actif de votre adversaire.",
},
},{
cost: [
Type.GRASS,
Type.GRASS,
Type.GRASS
],
name: {
en: "Mega Drain",
fr: "Méga-Sangsue",
},
text: {
en: "Heal 20 damage from this Pokémon.",
fr: "Soignez 20 dégâts à ce Pokémon.",
},
damage: 70
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Flashfire",
code: "xy2"
}
}
export default card