mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
100
cards/sm/sm35/7.ts
Normal file
100
cards/sm/sm35/7.ts
Normal file
@ -0,0 +1,100 @@
|
||||
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: "sm35-7",
|
||||
localId: 7,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Shaymin (Sky Forme)",
|
||||
fr: "Shaymin",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 492,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/7/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/7/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/7/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/7/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 3,
|
||||
name: "Mizue"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.GRASS
|
||||
],
|
||||
name: {
|
||||
en: "Flippity Flap",
|
||||
fr: "Flip Flap",
|
||||
},
|
||||
text: {
|
||||
en: "Shuffle your hand into your deck. Then, draw 6 cards.",
|
||||
fr: "Mélangez votre main avec votre deck. Ensuite, piochez 6 cartes.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Rally Back",
|
||||
fr: "Répercussions",
|
||||
},
|
||||
text: {
|
||||
en: "If any of your Pokémon were Knocked Out by damage from an opponent's attack during their last turn, this attack does 90 more damage.",
|
||||
fr: "Si l’un de vos Pokémon a été mis K.O. par les dégâts d'une attaque de votre adversaire pendant son dernier tour, cette attaque inflige 90 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user