1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19:18 +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

132
cards/sm/sm9/159.ts Normal file
View File

@ -0,0 +1,132 @@
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: "sm9-159",
localId: 159,
// Card informations
name: {
en: "Celebi & Venusaur-GX",
fr: "Celebi et Florizarre-GX",
},
hp: 270,
type: [
Type.GRASS,
],
dexId: 3,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm9/159/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm9/159/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm9/159/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm9/159/high.png",
},
},
evolveFrom: {},
tags: [
Tag.TAGTEAM,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.GRASS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Pollen Hazard",
fr: "Règle des ESCOUADES",
},
text: {
en: "Your opponent's Active Pokémon is now Burned, Confused, and Poisoned.",
},
damage: 50
},{
cost: [
Type.GRASS,
Type.GRASS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Solar Beam",
fr: "Pollen Dangereux",
},
text: {
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé, Confus et Empoisonné.",
},
damage: 150
},{
cost: [
Type.GRASS,
Type.GRASS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Evergreen-GX",
fr: "Lance-Soleil",
},
text: {
en: "Heal all damage from this Pokémon. If this Pokémon has at least 1 extra Grass Energy attached to it (in addition to this attack's cost), shuffle all cards from your discard pile into your deck. (You can't use more than 1 GX attack in a game.)",
},
damage: 180
},{
cost: [
Type.GRASS,
Type.GRASS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
fr: "Sempervirent-GX",
},
text: {
fr: "Soignez tous les dégâts de ce Pokémon. Si au moins une Énergie Grass supplémentaire est attachée à ce Pokémon (en plus du coût de cette attaque), mélangez toutes les cartes dans votre pile de défausse avec votre deck. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 180
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
retreat: 4,
rarity: Rarity.RareUltra,
category: Category.POKEMON,
set: {
name: "Team Up",
code: "sm9"
}
}
export default card