mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-09 15:31:59 +00:00
Initial Database
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
84
cards/sm/sm35/1.ts
Normal file
84
cards/sm/sm35/1.ts
Normal file
@@ -0,0 +1,84 @@
|
||||
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-1",
|
||||
localId: 1,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Bulbasaur",
|
||||
fr: "Bulbizarre",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 1,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/1/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/1/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/1/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/1/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 3,
|
||||
name: "Mizue"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Razor Leaf",
|
||||
fr: "Tranch’Herbe",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
113
cards/sm/sm35/10.ts
Normal file
113
cards/sm/sm35/10.ts
Normal file
@@ -0,0 +1,113 @@
|
||||
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-10",
|
||||
localId: 10,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Entei-GX",
|
||||
fr: "Entei-GX",
|
||||
},
|
||||
|
||||
hp: 180,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 244,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/10/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/10/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/10/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/10/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.GX,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Combustion",
|
||||
fr: "Fournaise",
|
||||
},
|
||||
damage: 50
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Fire Fang",
|
||||
fr: "Crocs Feu",
|
||||
},
|
||||
text: {
|
||||
en: "Your opponent's Active Pokémon is now Burned.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
|
||||
},
|
||||
damage: 100
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Brave Burn-GX",
|
||||
fr: "Brave Brûlure-GX",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 150 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) (You can't use more than 1 GX attack in a game.)",
|
||||
fr: "Cette attaque inflige 150 dégâts à l’un des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.) (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.RareHoloGX,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
103
cards/sm/sm35/11.ts
Normal file
103
cards/sm/sm35/11.ts
Normal file
@@ -0,0 +1,103 @@
|
||||
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-11",
|
||||
localId: 11,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Torkoal",
|
||||
fr: "Chartor",
|
||||
},
|
||||
|
||||
hp: 110,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 324,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/11/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/11/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/11/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/11/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 29,
|
||||
name: "Suwama Chiaki"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "High-Pressure Heat",
|
||||
fr: "Chaleur Sous Pression",
|
||||
},
|
||||
text: {
|
||||
en: "During your next turn, this Pokémon's High-Pressure Heat attack does 50 more damage (before applying Weakness and Resistance).",
|
||||
fr: "Pendant votre prochain tour, l’attaque Chaleur Sous Pression de ce Pokémon inflige 50 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance).",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Flamethrower",
|
||||
fr: "Lance-Flammes",
|
||||
},
|
||||
text: {
|
||||
en: "Discard an Energy from this Pokémon.",
|
||||
fr: "Défaussez une Énergie de ce Pokémon.",
|
||||
},
|
||||
damage: 90
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
84
cards/sm/sm35/12.ts
Normal file
84
cards/sm/sm35/12.ts
Normal file
@@ -0,0 +1,84 @@
|
||||
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-12",
|
||||
localId: 12,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Larvesta",
|
||||
fr: "Pyronille",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 636,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/12/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/12/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/12/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/12/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 27,
|
||||
name: "kawayoo"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Flare",
|
||||
fr: "Flamboiement",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
98
cards/sm/sm35/13.ts
Normal file
98
cards/sm/sm35/13.ts
Normal file
@@ -0,0 +1,98 @@
|
||||
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-13",
|
||||
localId: 13,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Volcarona",
|
||||
fr: "Pyrax",
|
||||
},
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 637,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/13/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/13/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/13/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/13/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Larvesta",
|
||||
fr: "Pyronille",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 65,
|
||||
name: "nagimiso"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 1214,
|
||||
type: AbilityType.TALENT,
|
||||
name: {
|
||||
en: "Heat Cyclone",
|
||||
fr: "Cyclone de Chaleur",
|
||||
},
|
||||
text: {
|
||||
en: "Once during your turn (before your attack), you may have your opponent switch their Active Pokémon with 1 of their Benched Pokémon.",
|
||||
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez demander à votre adversaire d'échanger son Pokémon Actif avec l'un de ses Pokémon de Banc.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Heat Blast",
|
||||
fr: "Explosion de Chaleur",
|
||||
},
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
103
cards/sm/sm35/14.ts
Normal file
103
cards/sm/sm35/14.ts
Normal file
@@ -0,0 +1,103 @@
|
||||
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-14",
|
||||
localId: 14,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Reshiram",
|
||||
fr: "Reshiram",
|
||||
},
|
||||
|
||||
hp: 130,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 643,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/14/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/14/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/14/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/14/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 20,
|
||||
name: "TOKIYA"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Outrage",
|
||||
fr: "Colère",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 10 more damage for each damage counter on this Pokémon.",
|
||||
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur ce Pokémon.",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Scorching Breath",
|
||||
fr: "Souffle Brûlant",
|
||||
},
|
||||
text: {
|
||||
en: "This Pokémon can't attack during your next turn.",
|
||||
fr: "Ce Pokémon ne peut pas attaquer pendant votre prochain tour.",
|
||||
},
|
||||
damage: 130
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
83
cards/sm/sm35/15.ts
Normal file
83
cards/sm/sm35/15.ts
Normal file
@@ -0,0 +1,83 @@
|
||||
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-15",
|
||||
localId: 15,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Litten",
|
||||
fr: "Flamiaou",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 725,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/15/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/15/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/15/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/15/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 9,
|
||||
name: "Mitsuhiro Arita"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE
|
||||
],
|
||||
name: {
|
||||
en: "Live Coal",
|
||||
fr: "Charbon Mutant",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
99
cards/sm/sm35/16.ts
Normal file
99
cards/sm/sm35/16.ts
Normal file
@@ -0,0 +1,99 @@
|
||||
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-16",
|
||||
localId: 16,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Torracat",
|
||||
fr: "Matoufeu",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 726,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/16/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/16/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/16/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/16/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Litten",
|
||||
fr: "Flamiaou",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 19,
|
||||
name: "Shin Nagasawa"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Swagger",
|
||||
fr: "Vantardise",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, discard an Energy from your opponent's Active Pokémon.",
|
||||
fr: "Lancez une pièce. Si c’est face, défaussez une Énergie du Pokémon Actif de votre adversaire.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Fire Claws",
|
||||
fr: "Griffes Enflammées",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
106
cards/sm/sm35/17.ts
Normal file
106
cards/sm/sm35/17.ts
Normal file
@@ -0,0 +1,106 @@
|
||||
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-17",
|
||||
localId: 17,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Incineroar",
|
||||
fr: "Félinferno",
|
||||
},
|
||||
|
||||
hp: 170,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 727,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/17/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/17/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/17/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/17/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Torracat",
|
||||
fr: "Matoufeu",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 162,
|
||||
name: "Emi Ando"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Profane Punch",
|
||||
fr: "Poing Vulgaire",
|
||||
},
|
||||
text: {
|
||||
en: "If your Benched Pokémon have any damage counters on them, this attack does 80 more damage.",
|
||||
fr: "Si des marqueurs de dégâts sont placés sur vos Pokémon de Banc, cette attaque inflige 80 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 50
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Flare Blitz",
|
||||
fr: "Boutefeu",
|
||||
},
|
||||
text: {
|
||||
en: "Discard all Fire Energy from this Pokémon.",
|
||||
fr: "Défaussez toute l’Énergie Fire de ce Pokémon.",
|
||||
},
|
||||
damage: 180
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
93
cards/sm/sm35/18.ts
Normal file
93
cards/sm/sm35/18.ts
Normal file
@@ -0,0 +1,93 @@
|
||||
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-18",
|
||||
localId: 18,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Totodile",
|
||||
fr: "Kaiminus",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 158,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/18/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/18/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/18/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/18/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 20,
|
||||
name: "TOKIYA"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Water Gun",
|
||||
fr: "Pistolet à O",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Bite",
|
||||
fr: "Morsure",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
99
cards/sm/sm35/19.ts
Normal file
99
cards/sm/sm35/19.ts
Normal file
@@ -0,0 +1,99 @@
|
||||
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-19",
|
||||
localId: 19,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Croconaw",
|
||||
fr: "Crocrodil",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 159,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/19/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/19/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/19/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/19/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Totodile",
|
||||
fr: "Kaiminus",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 15,
|
||||
name: "Naoki Saito"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 319,
|
||||
type: AbilityType.TALENT,
|
||||
name: {
|
||||
en: "Plunge",
|
||||
fr: "Plongeon",
|
||||
},
|
||||
text: {
|
||||
en: "Once during your turn (before your attack), if this Pokémon is on your Bench, you may move all Energy from your Active Pokémon to this Pokémon. If you do, switch it with your Active Pokémon.",
|
||||
fr: "Une seule fois pendant votre tour (avant votre attaque), si ce Pokémon est sur votre Banc, vous pouvez déplacer toute l’Énergie de votre Pokémon Actif vers ce Pokémon. Dans ce cas, échangez-le avec votre Pokémon Actif.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Bite",
|
||||
fr: "Morsure",
|
||||
},
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
103
cards/sm/sm35/2.ts
Normal file
103
cards/sm/sm35/2.ts
Normal file
@@ -0,0 +1,103 @@
|
||||
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-2",
|
||||
localId: 2,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Ivysaur",
|
||||
fr: "Herbizarre",
|
||||
},
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 2,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/2/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/2/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/2/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/2/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Bulbasaur",
|
||||
fr: "Bulbizarre",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 10,
|
||||
name: "Kouki Saitou"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Razor Leaf",
|
||||
fr: "Tranch’Herbe",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Toxic Whip",
|
||||
fr: "Fouet Toxique",
|
||||
},
|
||||
text: {
|
||||
en: "Your opponent's Active Pokémon is now Confused and Poisoned.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus et Empoisonné.",
|
||||
},
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 4,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
104
cards/sm/sm35/20.ts
Normal file
104
cards/sm/sm35/20.ts
Normal 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: "sm35-20",
|
||||
localId: 20,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Feraligatr",
|
||||
fr: "Aligatueur",
|
||||
},
|
||||
|
||||
hp: 160,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 160,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/20/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/20/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/20/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/20/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Croconaw",
|
||||
fr: "Crocrodil",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 65,
|
||||
name: "nagimiso"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Crunch",
|
||||
fr: "Mâchouille",
|
||||
},
|
||||
text: {
|
||||
en: "Discard an Energy from your opponent's Active Pokémon.",
|
||||
fr: "Défaussez une Énergie du Pokémon Actif de votre adversaire.",
|
||||
},
|
||||
damage: 80
|
||||
},{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Hydro Splash",
|
||||
fr: "Hydro-Éclaboussure",
|
||||
},
|
||||
damage: 130
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
100
cards/sm/sm35/21.ts
Normal file
100
cards/sm/sm35/21.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-21",
|
||||
localId: 21,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Qwilfish",
|
||||
fr: "Qwilfish",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 211,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/21/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/21/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/21/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/21/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 19,
|
||||
name: "Shin Nagasawa"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Poison Sting",
|
||||
fr: "Dard-Venin",
|
||||
},
|
||||
text: {
|
||||
en: "Your opponent's Active Pokémon is now Poisoned.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Shocking Sting",
|
||||
fr: "Dard Choquant",
|
||||
},
|
||||
text: {
|
||||
en: "If your opponent's Active Pokémon is affected by a Special Condition, this attack does 50 more damage.",
|
||||
fr: "Si le Pokémon Actif de votre adversaire est affecté par un État Spécial, cette attaque inflige 50 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
94
cards/sm/sm35/22.ts
Normal file
94
cards/sm/sm35/22.ts
Normal file
@@ -0,0 +1,94 @@
|
||||
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-22",
|
||||
localId: 22,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Buizel",
|
||||
fr: "Mustébouée",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 418,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/22/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/22/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/22/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/22/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 89,
|
||||
name: "Sekio"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Razor Fin",
|
||||
fr: "Aileron-Rasoir",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Water Gun",
|
||||
fr: "Pistolet à O",
|
||||
},
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
101
cards/sm/sm35/23.ts
Normal file
101
cards/sm/sm35/23.ts
Normal file
@@ -0,0 +1,101 @@
|
||||
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-23",
|
||||
localId: 23,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Floatzel",
|
||||
fr: "Mustéflott",
|
||||
},
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 419,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/23/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/23/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/23/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/23/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Buizel",
|
||||
fr: "Mustébouée",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 29,
|
||||
name: "Suwama Chiaki"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Razor Fin",
|
||||
fr: "Aileron-Rasoir",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Aqua Bomb",
|
||||
fr: "Aqua Bombe",
|
||||
},
|
||||
text: {
|
||||
en: "This Pokémon does 30 damage to itself.",
|
||||
fr: "Ce Pokémon s’inflige 30 dégâts.",
|
||||
},
|
||||
damage: 120
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
99
cards/sm/sm35/24.ts
Normal file
99
cards/sm/sm35/24.ts
Normal file
@@ -0,0 +1,99 @@
|
||||
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-24",
|
||||
localId: 24,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Palkia",
|
||||
fr: "Palkia",
|
||||
},
|
||||
|
||||
hp: 130,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 484,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/24/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/24/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/24/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/24/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 38,
|
||||
name: "Eske Yoshinob"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Spiral Drain",
|
||||
fr: "Spirale Épuisante",
|
||||
},
|
||||
text: {
|
||||
en: "Heal 30 damage from this Pokémon.",
|
||||
fr: "Soignez 30 dégâts à ce Pokémon.",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.WATER,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Aqua Blade",
|
||||
fr: "Hydrolame",
|
||||
},
|
||||
damage: 100
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
95
cards/sm/sm35/25.ts
Normal file
95
cards/sm/sm35/25.ts
Normal file
@@ -0,0 +1,95 @@
|
||||
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-25",
|
||||
localId: 25,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Manaphy",
|
||||
fr: "Manaphy",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 490,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/25/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/25/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/25/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/25/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 0,
|
||||
name: "Kagemaru Himeno"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 1143,
|
||||
type: AbilityType.TALENT,
|
||||
name: {
|
||||
en: "Blessings of the Deep",
|
||||
fr: "Bénédiction des Profondeurs",
|
||||
},
|
||||
text: {
|
||||
en: "Once during your turn (before your attack), you may heal 20 damage from 1 of your Pokémon that has any Water Energy attached to it.",
|
||||
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez soigner 20 dégâts à l’un de vos Pokémon auquel de l’Énergie Water est attachée.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Wave Splash",
|
||||
fr: "Grosse Vague",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
100
cards/sm/sm35/26.ts
Normal file
100
cards/sm/sm35/26.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-26",
|
||||
localId: 26,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Keldeo",
|
||||
fr: "Keldeo",
|
||||
},
|
||||
|
||||
hp: 110,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 647,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/26/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/26/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/26/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/26/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 36,
|
||||
name: "kodama"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Bail Out",
|
||||
fr: "Renflouage",
|
||||
},
|
||||
text: {
|
||||
en: "Put a Water Pokémon from your discard pile into your hand.",
|
||||
fr: "Ajoutez un Pokémon Water de votre pile de défausse à votre main.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Resolute Blade",
|
||||
fr: "Lame Décidée",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 20 more damage for each of your opponent's Benched Pokémon.",
|
||||
fr: "Cette attaque inflige 20 dégâts supplémentaires pour chaque Pokémon de Banc de votre adversaire.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
104
cards/sm/sm35/27.ts
Normal file
104
cards/sm/sm35/27.ts
Normal 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: "sm35-27",
|
||||
localId: 27,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Shining Volcanion",
|
||||
fr: "Volcanion Brillant",
|
||||
},
|
||||
|
||||
hp: 130,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 721,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/27/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/27/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/27/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/27/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 67,
|
||||
name: "Hitoshi Ariga"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.WATER,
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Dual Pump",
|
||||
fr: "Double Pompe",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 50 damage to 2 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Cette attaque inflige 50 dégâts à 2 des Pokémon de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Quad Smash",
|
||||
fr: "Quadruple Destruction",
|
||||
},
|
||||
text: {
|
||||
en: "Flip 4 coins. This attack does 50 damage for each heads.",
|
||||
fr: "Lancez 4 pièces. Cette attaque inflige 50 dégâts multipliés par le nombre de côtés face.",
|
||||
},
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
90
cards/sm/sm35/28.ts
Normal file
90
cards/sm/sm35/28.ts
Normal file
@@ -0,0 +1,90 @@
|
||||
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-28",
|
||||
localId: 28,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Pikachu",
|
||||
fr: "Pikachu",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
dexId: 25,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/28/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/28/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/28/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/28/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 0,
|
||||
name: "Kagemaru Himeno"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.LIGHTNING
|
||||
],
|
||||
name: {
|
||||
en: "Iron Tail",
|
||||
fr: "Queue de Fer",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin until you get tails. This attack does 20 damage for each heads.",
|
||||
fr: "Lancez une pièce jusqu’à ce que vous obteniez un côté pile. Cette attaque inflige 20 dégâts multipliés par le nombre de côtés face.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.METAL,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
124
cards/sm/sm35/29.ts
Normal file
124
cards/sm/sm35/29.ts
Normal file
@@ -0,0 +1,124 @@
|
||||
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-29",
|
||||
localId: 29,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Raichu-GX",
|
||||
fr: "Raichu-GX",
|
||||
},
|
||||
|
||||
hp: 210,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
dexId: 26,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/29/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/29/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/29/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/29/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pikachu",
|
||||
fr: "Pikachu",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.GX,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Powerful Spark",
|
||||
fr: "Étincelle Puissante",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 20 more damage times the amount of Lightning Energy attached to your Pokémon.",
|
||||
fr: "Cette attaque inflige 20 dégâts supplémentaires multipliés par le nombre d’Énergies Lightning attachées à vos Pokémon.",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Thunder",
|
||||
fr: "Fatal-Foudre",
|
||||
},
|
||||
text: {
|
||||
en: "This Pokémon does 30 damage to itself.",
|
||||
fr: "Ce Pokémon s’inflige 30 dégâts.",
|
||||
},
|
||||
damage: 160
|
||||
},{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Voltail-GX",
|
||||
fr: "Queue Survoltée-GX",
|
||||
},
|
||||
text: {
|
||||
en: "Your opponent's Active Pokémon is now Paralyzed. (You can't use more than 1 GX attack in a game.)",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Paralysé. (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||||
},
|
||||
damage: 120
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.METAL,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.RareHoloGX,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
100
cards/sm/sm35/3.ts
Normal file
100
cards/sm/sm35/3.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-3",
|
||||
localId: 3,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Venusaur",
|
||||
fr: "Florizarre",
|
||||
},
|
||||
|
||||
hp: 160,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 3,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/3/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/3/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/3/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/3/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Ivysaur",
|
||||
fr: "Herbizarre",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 38,
|
||||
name: "Eske Yoshinob"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 1212,
|
||||
type: AbilityType.TALENT,
|
||||
name: {
|
||||
en: "Jungle Totem",
|
||||
fr: "Jungle Dominante",
|
||||
},
|
||||
text: {
|
||||
en: "Each basic Grass Energy attached to your Pokémon provides GrassGrass Energy. You can't apply more than 1 Jungle Totem Ability at a time.",
|
||||
fr: "Chaque Énergie Grass de base attachée à vos Pokémon fournit de l’Énergie GrassGrass. Vous ne pouvez pas utiliser plus d’un talent Jungle Dominante à la fois.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Solar Beam",
|
||||
fr: "Lance-Soleil",
|
||||
},
|
||||
damage: 90
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 4,
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
86
cards/sm/sm35/30.ts
Normal file
86
cards/sm/sm35/30.ts
Normal file
@@ -0,0 +1,86 @@
|
||||
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-30",
|
||||
localId: 30,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Voltorb",
|
||||
fr: "Voltorbe",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
dexId: 100,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/30/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/30/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/30/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/30/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 28,
|
||||
name: "match"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.LIGHTNING
|
||||
],
|
||||
name: {
|
||||
en: "Electro Ball",
|
||||
fr: "Boule Élek",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.METAL,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
93
cards/sm/sm35/31.ts
Normal file
93
cards/sm/sm35/31.ts
Normal file
@@ -0,0 +1,93 @@
|
||||
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-31",
|
||||
localId: 31,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Electrode",
|
||||
fr: "Électrode",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
dexId: 101,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/31/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/31/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/31/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/31/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Voltorb",
|
||||
fr: "Voltorbe",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 25,
|
||||
name: "Kyoko Umemoto"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.LIGHTNING
|
||||
],
|
||||
name: {
|
||||
en: "Swift",
|
||||
fr: "Météores",
|
||||
},
|
||||
text: {
|
||||
en: "This attack's damage isn't affected by Weakness, Resistance, or any other effects on your opponent's Active Pokémon.",
|
||||
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance ou tout autre effet en action sur le Pokémon Actif de votre adversaire.",
|
||||
},
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.METAL,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
101
cards/sm/sm35/32.ts
Normal file
101
cards/sm/sm35/32.ts
Normal file
@@ -0,0 +1,101 @@
|
||||
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-32",
|
||||
localId: 32,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Raikou",
|
||||
fr: "Raikou",
|
||||
},
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
dexId: 243,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/32/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/32/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/32/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/32/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 9,
|
||||
name: "Mitsuhiro Arita"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.LIGHTNING
|
||||
],
|
||||
name: {
|
||||
en: "Booming Thunder",
|
||||
fr: "Tonnerre Grondant",
|
||||
},
|
||||
text: {
|
||||
en: "Attach a Lightning Energy card from your discard pile to 1 of your Benched Pokémon.",
|
||||
fr: "Attachez une carte Énergie Lightning de votre pile de défausse à l’un de vos Pokémon de Banc.",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Electric Ball",
|
||||
fr: "Boule de Foudre",
|
||||
},
|
||||
damage: 90
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.METAL,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
90
cards/sm/sm35/33.ts
Normal file
90
cards/sm/sm35/33.ts
Normal file
@@ -0,0 +1,90 @@
|
||||
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-33",
|
||||
localId: 33,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Plusle",
|
||||
fr: "Posipi",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
dexId: 311,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/33/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/33/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/33/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/33/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 18,
|
||||
name: "Tomokazu Komiya"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.LIGHTNING
|
||||
],
|
||||
name: {
|
||||
en: "Tag Team Boost",
|
||||
fr: "Boost de Groupe",
|
||||
},
|
||||
text: {
|
||||
en: "If Minun is on your Bench, this attack does 50 more damage.",
|
||||
fr: "Si Négapi est sur votre Banc, cette attaque inflige 50 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.METAL,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
102
cards/sm/sm35/34.ts
Normal file
102
cards/sm/sm35/34.ts
Normal file
@@ -0,0 +1,102 @@
|
||||
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-34",
|
||||
localId: 34,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Minun",
|
||||
fr: "Négapi",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
dexId: 312,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/34/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/34/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/34/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/34/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 65,
|
||||
name: "nagimiso"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Collect",
|
||||
fr: "Collecte",
|
||||
},
|
||||
text: {
|
||||
en: "Draw a card.",
|
||||
fr: "Piochez une carte.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.LIGHTNING
|
||||
],
|
||||
name: {
|
||||
en: "Spark",
|
||||
fr: "Étincelle",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Cette attaque inflige 20 dégâts à l’un des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.METAL,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
106
cards/sm/sm35/35.ts
Normal file
106
cards/sm/sm35/35.ts
Normal file
@@ -0,0 +1,106 @@
|
||||
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-35",
|
||||
localId: 35,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Zekrom",
|
||||
fr: "Zekrom",
|
||||
},
|
||||
|
||||
hp: 130,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
dexId: 644,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/35/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/35/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/35/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/35/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 65,
|
||||
name: "nagimiso"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Outrage",
|
||||
fr: "Colère",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 10 more damage for each damage counter on this Pokémon.",
|
||||
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur ce Pokémon.",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Storm Blade",
|
||||
fr: "Lame Orageuse",
|
||||
},
|
||||
text: {
|
||||
en: "Discard 2 Energy from this Pokémon.",
|
||||
fr: "Défaussez 2 Énergies de ce Pokémon.",
|
||||
},
|
||||
damage: 130
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.METAL,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
87
cards/sm/sm35/36.ts
Normal file
87
cards/sm/sm35/36.ts
Normal file
@@ -0,0 +1,87 @@
|
||||
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-36",
|
||||
localId: 36,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Ekans",
|
||||
fr: "Abo",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 23,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/36/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/36/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/36/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/36/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 101,
|
||||
name: "DemizuPosuka"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Poison Sting",
|
||||
fr: "Dard-Venin",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Poisoned.",
|
||||
fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
103
cards/sm/sm35/37.ts
Normal file
103
cards/sm/sm35/37.ts
Normal file
@@ -0,0 +1,103 @@
|
||||
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-37",
|
||||
localId: 37,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Arbok",
|
||||
fr: "Arbok",
|
||||
},
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 24,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/37/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/37/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/37/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/37/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Ekans",
|
||||
fr: "Abo",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 36,
|
||||
name: "kodama"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 542,
|
||||
type: AbilityType.TALENT,
|
||||
name: {
|
||||
en: "Intimidating Pattern",
|
||||
fr: "Style Intimidant",
|
||||
},
|
||||
text: {
|
||||
en: "As long as this Pokémon is your Active Pokémon, your opponent's Active Pokémon's attacks do 30 less damage (before applying Weakness and Resistance).",
|
||||
fr: "Tant que ce Pokémon est votre Pokémon Actif, les attaques du Pokémon Actif de votre adversaire infligent 30 dégâts de moins (avant application de la Faiblesse et de la Résistance).",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Venomous Fang",
|
||||
fr: "Croc-Poison",
|
||||
},
|
||||
text: {
|
||||
en: "Your opponent's Active Pokémon is now Poisoned.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
|
||||
},
|
||||
damage: 70
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
100
cards/sm/sm35/38.ts
Normal file
100
cards/sm/sm35/38.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-38",
|
||||
localId: 38,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Jynx",
|
||||
fr: "Lippoutou",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 124,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/38/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/38/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/38/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/38/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 18,
|
||||
name: "Tomokazu Komiya"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Whiny Voice",
|
||||
fr: "Voix Suppliante",
|
||||
},
|
||||
text: {
|
||||
en: "Choose a random card from your opponent's hand. Your opponent reveals that card and shuffles it into their deck.",
|
||||
fr: "Choisissez une carte au hasard de la main de votre adversaire. Votre adversaire montre la carte choisie et la mélange avec son deck.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Feverish Kiss",
|
||||
fr: "Bise Fébrile",
|
||||
},
|
||||
text: {
|
||||
en: "Your opponent's Active Pokémon is now Confused.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
116
cards/sm/sm35/39.ts
Normal file
116
cards/sm/sm35/39.ts
Normal file
@@ -0,0 +1,116 @@
|
||||
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-39",
|
||||
localId: 39,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Mewtwo-GX",
|
||||
fr: "Mewtwo-GX",
|
||||
},
|
||||
|
||||
hp: 190,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 150,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/39/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/39/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/39/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/39/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.GX,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Full Burst",
|
||||
fr: "Pleine Puissance",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 30 damage times the amount of Energy attached to this Pokémon.",
|
||||
fr: "Cette attaque inflige 30 dégâts multipliés par le nombre d’Énergies attachées à ce Pokémon.",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Super Absorption",
|
||||
fr: "Super Absorption",
|
||||
},
|
||||
text: {
|
||||
en: "Heal 30 damage from this Pokémon.",
|
||||
fr: "Soignez 30 dégâts à ce Pokémon.",
|
||||
},
|
||||
damage: 60
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.PSYCHIC,
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Psystrike-GX",
|
||||
fr: "Frappe Psy-GX",
|
||||
},
|
||||
text: {
|
||||
en: "This attack's damage isn't affected by any effects on your opponent's Active Pokémon. (You can't use more than 1 GX attack in a game.)",
|
||||
fr: "Les dégâts de cette attaque ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire. (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||||
},
|
||||
damage: 200
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.RareHoloGX,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
88
cards/sm/sm35/4.ts
Normal file
88
cards/sm/sm35/4.ts
Normal file
@@ -0,0 +1,88 @@
|
||||
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-4",
|
||||
localId: 4,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Shroomish",
|
||||
fr: "Balignon",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 285,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/4/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/4/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/4/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/4/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 27,
|
||||
name: "kawayoo"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Absorb",
|
||||
fr: "Vol-Vie",
|
||||
},
|
||||
text: {
|
||||
en: "Heal 20 damage from this Pokémon.",
|
||||
fr: "Soignez 20 dégâts à ce Pokémon.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
95
cards/sm/sm35/40.ts
Normal file
95
cards/sm/sm35/40.ts
Normal file
@@ -0,0 +1,95 @@
|
||||
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-40",
|
||||
localId: 40,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Shining Mew",
|
||||
fr: "Mew Brillant",
|
||||
},
|
||||
|
||||
hp: 30,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 151,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/40/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/40/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/40/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/40/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 39,
|
||||
name: "Sanosuke Sakuma"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Legendary Guidance",
|
||||
fr: "Conseil Légendaire",
|
||||
},
|
||||
text: {
|
||||
en: "Search your deck for up to 2 Energy cards and attach them to your Pokémon in any way you like. Then, shuffle your deck.",
|
||||
fr: "Cherchez jusqu’à 2 cartes Énergie dans votre deck et attachez-les à vos Pokémon, de la manière que vous voulez. Mélangez ensuite votre deck.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Beam",
|
||||
fr: "Rayon",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
99
cards/sm/sm35/41.ts
Normal file
99
cards/sm/sm35/41.ts
Normal file
@@ -0,0 +1,99 @@
|
||||
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-41",
|
||||
localId: 41,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Latios",
|
||||
fr: "Latios",
|
||||
},
|
||||
|
||||
hp: 110,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 381,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/41/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/41/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/41/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/41/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 9,
|
||||
name: "Mitsuhiro Arita"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Break Through",
|
||||
fr: "Percée",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Cette attaque inflige 30 dégâts à l’un des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Lagoon Flight",
|
||||
fr: "Survol du Lagon",
|
||||
},
|
||||
damage: 70
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
87
cards/sm/sm35/42.ts
Normal file
87
cards/sm/sm35/42.ts
Normal file
@@ -0,0 +1,87 @@
|
||||
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-42",
|
||||
localId: 42,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Shining Jirachi",
|
||||
fr: "Jirachi Brillant",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 385,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/42/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/42/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/42/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/42/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 49,
|
||||
name: "Shigenori Negishi"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Stellar Reign",
|
||||
fr: "Règne Stellaire",
|
||||
},
|
||||
text: {
|
||||
en: "If your opponent's Active Pokémon is an evolved Pokémon, devolve it by putting all of the Evolution cards on it into your opponent's hand.",
|
||||
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon évolué, faites-le dés-évoluer en mettant toutes les cartes Évolution placées dessus dans la main de votre adversaire.",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
88
cards/sm/sm35/43.ts
Normal file
88
cards/sm/sm35/43.ts
Normal file
@@ -0,0 +1,88 @@
|
||||
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-43",
|
||||
localId: 43,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Golett",
|
||||
fr: "Gringolem",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 622,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/43/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/43/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/43/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/43/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 25,
|
||||
name: "Kyoko Umemoto"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Mega Punch",
|
||||
fr: "Ultimapoing",
|
||||
},
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.DARKNESS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
107
cards/sm/sm35/44.ts
Normal file
107
cards/sm/sm35/44.ts
Normal file
@@ -0,0 +1,107 @@
|
||||
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-44",
|
||||
localId: 44,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Golurk",
|
||||
fr: "Golemastoc",
|
||||
},
|
||||
|
||||
hp: 140,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 623,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/44/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/44/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/44/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/44/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Golett",
|
||||
fr: "Gringolem",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 0,
|
||||
name: "Kagemaru Himeno"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Triple Smash",
|
||||
fr: "Triple Éclate",
|
||||
},
|
||||
text: {
|
||||
en: "Flip 3 coins. This attack does 60 more damage for each heads.",
|
||||
fr: "Lancez 3 pièces. Cette attaque inflige 60 dégâts supplémentaires pour chaque côté face.",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Golurk Hammer",
|
||||
fr: "Maillet Golemastoc",
|
||||
},
|
||||
damage: 120
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.DARKNESS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
102
cards/sm/sm35/45.ts
Normal file
102
cards/sm/sm35/45.ts
Normal file
@@ -0,0 +1,102 @@
|
||||
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-45",
|
||||
localId: 45,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Marshadow",
|
||||
fr: "Marshadow",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 802,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/45/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/45/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/45/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/45/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 162,
|
||||
name: "Emi Ando"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 209,
|
||||
type: AbilityType.TALENT,
|
||||
name: {
|
||||
en: "Let Loose",
|
||||
fr: "Libérer",
|
||||
},
|
||||
text: {
|
||||
en: "When you play this Pokémon from your hand onto your Bench during your turn, you may have each player shuffle their hand into their deck and draw 4 cards.",
|
||||
fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez demander à tous les joueurs de mélanger leur main avec leur deck et de piocher 4 cartes.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Shadow Punch",
|
||||
fr: "Poing Ombre",
|
||||
},
|
||||
text: {
|
||||
en: "This attack's damage isn't affected by Resistance.",
|
||||
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.DARKNESS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
99
cards/sm/sm35/46.ts
Normal file
99
cards/sm/sm35/46.ts
Normal file
@@ -0,0 +1,99 @@
|
||||
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-46",
|
||||
localId: 46,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Stunfisk",
|
||||
fr: "Limonde",
|
||||
},
|
||||
|
||||
hp: 110,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
dexId: 618,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/46/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/46/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/46/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/46/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 23,
|
||||
name: "Naoyo Kimura"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Thunder Shock",
|
||||
fr: "Éclair",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
|
||||
fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Head Bolt",
|
||||
fr: "Éclair Frontal",
|
||||
},
|
||||
damage: 70
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
95
cards/sm/sm35/47.ts
Normal file
95
cards/sm/sm35/47.ts
Normal file
@@ -0,0 +1,95 @@
|
||||
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-47",
|
||||
localId: 47,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Spiritomb",
|
||||
fr: "Spiritomb",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
dexId: 442,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/47/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/47/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/47/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/47/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 10,
|
||||
name: "Kouki Saitou"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 1215,
|
||||
type: AbilityType.TALENT,
|
||||
name: {
|
||||
en: "Cursed Whirlpool",
|
||||
fr: "Tourbillon Maudit",
|
||||
},
|
||||
text: {
|
||||
en: "As long as this Pokémon is your Active Pokémon, your opponent's Active Pokémon can't retreat.",
|
||||
fr: "Tant que ce Pokémon est votre Pokémon Actif, le Pokémon Actif de votre adversaire ne peut pas battre en retraite.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Cursed Drop",
|
||||
fr: "Chute Maudite",
|
||||
},
|
||||
text: {
|
||||
en: "Put 3 damage counters on your opponent's Pokémon in any way you like.",
|
||||
fr: "Placez 3 marqueurs de dégâts sur les Pokémon de votre adversaire, de la manière que vous voulez.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
100
cards/sm/sm35/48.ts
Normal file
100
cards/sm/sm35/48.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-48",
|
||||
localId: 48,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Purrloin",
|
||||
fr: "Chacripan",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
dexId: 509,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/48/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/48/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/48/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/48/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 23,
|
||||
name: "Naoyo Kimura"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Scratch",
|
||||
fr: "Griffe",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Tail Rap",
|
||||
fr: "Frap’Keu",
|
||||
},
|
||||
text: {
|
||||
en: "Flip 2 coins. This attack does 20 damage for each heads.",
|
||||
fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de côtés face.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
103
cards/sm/sm35/49.ts
Normal file
103
cards/sm/sm35/49.ts
Normal file
@@ -0,0 +1,103 @@
|
||||
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-49",
|
||||
localId: 49,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Liepard",
|
||||
fr: "Léopardus",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
dexId: 510,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/49/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/49/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/49/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/49/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Purrloin",
|
||||
fr: "Chacripan",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 27,
|
||||
name: "kawayoo"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.DARKNESS
|
||||
],
|
||||
name: {
|
||||
en: "Torment",
|
||||
fr: "Tourmente",
|
||||
},
|
||||
text: {
|
||||
en: "Choose 1 of your opponent's Active Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.",
|
||||
fr: "Choisissez l’une des attaques du Pokémon Actif de votre adversaire. Ce Pokémon ne peut pas utiliser cette attaque pendant le prochain tour de votre adversaire.",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Slash",
|
||||
fr: "Tranche",
|
||||
},
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
100
cards/sm/sm35/5.ts
Normal file
100
cards/sm/sm35/5.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-5",
|
||||
localId: 5,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Breloom",
|
||||
fr: "Chapignon",
|
||||
},
|
||||
|
||||
hp: 110,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 286,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/5/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/5/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/5/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/5/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Shroomish",
|
||||
fr: "Balignon",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 3,
|
||||
name: "Mizue"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.GRASS
|
||||
],
|
||||
name: {
|
||||
en: "Hibernation Spore",
|
||||
fr: "Spore d’Hibernation",
|
||||
},
|
||||
text: {
|
||||
en: "Your opponent's Active Pokémon is now Asleep. Your opponent flips 2 coins instead of 1 between turns. If either of them is tails, that Pokémon is still Asleep.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi. Votre adversaire lance 2 pièces au lieu d’une entre chaque tour. S'il obtient au moins un côté pile, le Pokémon reste Endormi.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Magnum Punch",
|
||||
fr: "Poing Magnum",
|
||||
},
|
||||
damage: 80
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
99
cards/sm/sm35/50.ts
Normal file
99
cards/sm/sm35/50.ts
Normal file
@@ -0,0 +1,99 @@
|
||||
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-50",
|
||||
localId: 50,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Scraggy",
|
||||
fr: "Baggiguane",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
dexId: 559,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/50/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/50/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/50/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/50/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 89,
|
||||
name: "Sekio"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.DARKNESS
|
||||
],
|
||||
name: {
|
||||
en: "Call for Family",
|
||||
fr: "Appel à la Famille",
|
||||
},
|
||||
text: {
|
||||
en: "Search your deck for a Basic Pokémon and put it onto your Bench. Then, shuffle your deck.",
|
||||
fr: "Cherchez un Pokémon de base dans votre deck et placez-le sur votre Banc. Mélangez ensuite votre deck.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Headbutt",
|
||||
fr: "Coup d’Boule",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
105
cards/sm/sm35/51.ts
Normal file
105
cards/sm/sm35/51.ts
Normal 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: "sm35-51",
|
||||
localId: 51,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Scrafty",
|
||||
fr: "Baggaïd",
|
||||
},
|
||||
|
||||
hp: 110,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
dexId: 560,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/51/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/51/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/51/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/51/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Scraggy",
|
||||
fr: "Baggiguane",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 9,
|
||||
name: "Mitsuhiro Arita"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Dangerous Head",
|
||||
fr: "Tête Dangereuse",
|
||||
},
|
||||
text: {
|
||||
en: "If your opponent's Active Pokémon is a Basic Pokémon, this attack does 50 more damage.",
|
||||
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon de base, cette attaque inflige 50 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Hammer In",
|
||||
fr: "Enfoncement",
|
||||
},
|
||||
damage: 90
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
96
cards/sm/sm35/52.ts
Normal file
96
cards/sm/sm35/52.ts
Normal file
@@ -0,0 +1,96 @@
|
||||
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-52",
|
||||
localId: 52,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Zorua",
|
||||
fr: "Zorua",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
dexId: 570,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/52/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/52/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/52/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/52/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 36,
|
||||
name: "kodama"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.DARKNESS
|
||||
],
|
||||
name: {
|
||||
en: "Stampede",
|
||||
fr: "Ruée",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Ram",
|
||||
fr: "Collision",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
118
cards/sm/sm35/53.ts
Normal file
118
cards/sm/sm35/53.ts
Normal file
@@ -0,0 +1,118 @@
|
||||
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-53",
|
||||
localId: 53,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Zoroark-GX",
|
||||
fr: "Zoroark-GX",
|
||||
},
|
||||
|
||||
hp: 210,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
dexId: 571,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/53/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/53/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/53/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/53/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Zorua",
|
||||
fr: "Zorua",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.GX,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 419,
|
||||
type: AbilityType.TALENT,
|
||||
name: {
|
||||
en: "Trade",
|
||||
fr: "Troc",
|
||||
},
|
||||
text: {
|
||||
en: "Once during your turn (before your attack), you may discard a card from your hand. If you do, draw 2 cards.",
|
||||
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez défausser une carte de votre main. Dans ce cas, piochez 2 cartes.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Riotous Beating",
|
||||
fr: "Méchante Raclée",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 20 damage for each of your Pokémon in play.",
|
||||
fr: "Cette attaque inflige 20 dégâts pour chacun de vos Pokémon en jeu.",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.DARKNESS
|
||||
],
|
||||
name: {
|
||||
en: "Trickster-GX",
|
||||
fr: "Histrion-GX",
|
||||
},
|
||||
text: {
|
||||
en: "Choose 1 of your opponent's Pokémon's attacks and use it as this attack. (You can't use more than 1 GX attack in a game.)",
|
||||
fr: "Choisissez l’une des attaques des Pokémon de votre adversaire et utilisez-la en tant que cette attaque. (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.RareHoloGX,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
106
cards/sm/sm35/54.ts
Normal file
106
cards/sm/sm35/54.ts
Normal file
@@ -0,0 +1,106 @@
|
||||
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-54",
|
||||
localId: 54,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Yveltal",
|
||||
fr: "Yveltal",
|
||||
},
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
dexId: 717,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/54/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/54/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/54/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/54/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 19,
|
||||
name: "Shin Nagasawa"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Strafe",
|
||||
fr: "Bombarder",
|
||||
},
|
||||
text: {
|
||||
en: "You may switch this Pokémon with 1 of your Benched Pokémon.",
|
||||
fr: "Vous pouvez échanger ce Pokémon avec l’un de vos Pokémon de Banc.",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Oblivion Wing",
|
||||
fr: "Mort-Ailes",
|
||||
},
|
||||
text: {
|
||||
en: "Attach a Darkness Energy card from your discard pile to 1 of your Benched Pokémon.",
|
||||
fr: "Attachez une carte Énergie Darkness de votre pile de défausse à l’un de vos Pokémon de Banc.",
|
||||
},
|
||||
damage: 90
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
99
cards/sm/sm35/55.ts
Normal file
99
cards/sm/sm35/55.ts
Normal file
@@ -0,0 +1,99 @@
|
||||
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-55",
|
||||
localId: 55,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Hoopa",
|
||||
fr: "Hoopa",
|
||||
},
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
dexId: 720,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/55/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/55/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/55/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/55/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 20,
|
||||
name: "TOKIYA"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 917,
|
||||
type: AbilityType.TALENT,
|
||||
name: {
|
||||
en: "Scoundrel Guard",
|
||||
fr: "Protection Malicieuse",
|
||||
},
|
||||
text: {
|
||||
en: "Prevent all effects of attacks, including damage, done to this Pokémon by your opponent's Pokémon-GX or Pokémon-EX.",
|
||||
fr: "Évitez tous les effets d’attaques, y compris les dégâts, infligés à ce Pokémon par les Pokémon-GX ou les Pokémon-EX de votre adversaire.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Super Psy Bolt",
|
||||
fr: "Super Psy",
|
||||
},
|
||||
damage: 80
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
103
cards/sm/sm35/56.ts
Normal file
103
cards/sm/sm35/56.ts
Normal file
@@ -0,0 +1,103 @@
|
||||
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-56",
|
||||
localId: 56,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Shining Rayquaza",
|
||||
fr: "Rayquaza Brillant",
|
||||
},
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.DRAGON,
|
||||
],
|
||||
|
||||
dexId: 384,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/56/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/56/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/56/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/56/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 15,
|
||||
name: "Naoki Saito"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.LIGHTNING
|
||||
],
|
||||
name: {
|
||||
en: "Dragon Pulse",
|
||||
fr: "Dracochoc",
|
||||
},
|
||||
text: {
|
||||
en: "Discard the top 2 cards of your deck.",
|
||||
fr: "Défaussez les 2 cartes du dessus de votre deck.",
|
||||
},
|
||||
damage: 40
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.LIGHTNING,
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Sky Judgment",
|
||||
fr: "Jugement Céleste",
|
||||
},
|
||||
text: {
|
||||
en: "Discard 3 Energy from this Pokémon.",
|
||||
fr: "Défaussez 3 Énergies de ce Pokémon.",
|
||||
},
|
||||
damage: 190
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FAIRY,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
100
cards/sm/sm35/57.ts
Normal file
100
cards/sm/sm35/57.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-57",
|
||||
localId: 57,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Shining Arceus",
|
||||
fr: "Arceus Brillant",
|
||||
},
|
||||
|
||||
hp: 130,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 493,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/57/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/57/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/57/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/57/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 10,
|
||||
name: "Kouki Saitou"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 1216,
|
||||
type: AbilityType.TALENT,
|
||||
name: {
|
||||
en: "Fabled Defense",
|
||||
fr: "Défense de Légende",
|
||||
},
|
||||
text: {
|
||||
en: "As long as this Pokémon is your Active Pokémon, prevent all damage done to your Benched Pokémon by your opponent's attacks.",
|
||||
fr: "Tant que ce Pokémon est votre Pokémon Actif, évitez tous les dégâts infligés à vos Pokémon de Banc par les attaques de votre adversaire.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Ultimate Arrow",
|
||||
fr: "Flèche Ultime",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 30 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Cette attaque inflige 30 dégâts à chacun des Pokémon de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
74
cards/sm/sm35/58.ts
Normal file
74
cards/sm/sm35/58.ts
Normal file
@@ -0,0 +1,74 @@
|
||||
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-58",
|
||||
localId: 58,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Damage Mover",
|
||||
fr: "Déplace Dégâts",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/58/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/58/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/58/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/58/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.ITEM,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 13,
|
||||
name: "Toyste Beach"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
name: {},
|
||||
text: {
|
||||
fr: "Déplacez 3 marqueurs de dégâts de l’un de vos Pokémon vers un autre de vos Pokémon.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
74
cards/sm/sm35/59.ts
Normal file
74
cards/sm/sm35/59.ts
Normal file
@@ -0,0 +1,74 @@
|
||||
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-59",
|
||||
localId: 59,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Energy Retrieval",
|
||||
fr: "Récupération d’Énergie",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/59/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/59/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/59/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/59/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.ITEM,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 13,
|
||||
name: "Toyste Beach"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
name: {},
|
||||
text: {
|
||||
fr: "Ajoutez 2 cartes Énergie de base de votre pile de défausse à votre main.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
100
cards/sm/sm35/6.ts
Normal file
100
cards/sm/sm35/6.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-6",
|
||||
localId: 6,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Carnivine",
|
||||
fr: "Vortente",
|
||||
},
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 455,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/6/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/6/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/6/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/6/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 18,
|
||||
name: "Tomokazu Komiya"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.GRASS
|
||||
],
|
||||
name: {
|
||||
en: "Flick Poison",
|
||||
fr: "Pichenette de Poison",
|
||||
},
|
||||
text: {
|
||||
en: "Switch 1 of your opponent's Benched Pokémon with their Active Pokémon. The new Active Pokémon is now Poisoned.",
|
||||
fr: "Échangez l’un des Pokémon de Banc de votre adversaire avec son Pokémon Actif. Le nouveau Pokémon Actif est maintenant Empoisonné.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Crunch",
|
||||
fr: "Mâchouille",
|
||||
},
|
||||
text: {
|
||||
en: "Discard an Energy from your opponent's Active Pokémon.",
|
||||
fr: "Défaussez une Énergie du Pokémon Actif de votre adversaire.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
74
cards/sm/sm35/60.ts
Normal file
74
cards/sm/sm35/60.ts
Normal file
@@ -0,0 +1,74 @@
|
||||
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-60",
|
||||
localId: 60,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Great Ball",
|
||||
fr: "Super Ball",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/60/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/60/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/60/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/60/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.ITEM,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 1,
|
||||
name: "Ryo Ueda"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
name: {},
|
||||
text: {
|
||||
fr: "Regardez les 7 cartes du dessus de votre deck. Vous pouvez montrer un Pokémon que vous y trouvez et l’ajouter à votre main. Mélangez les autres cartes avec votre deck.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
74
cards/sm/sm35/61.ts
Normal file
74
cards/sm/sm35/61.ts
Normal file
@@ -0,0 +1,74 @@
|
||||
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-61",
|
||||
localId: 61,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Hau",
|
||||
fr: "Tili",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/61/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/61/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/61/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/61/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.SUPPORTER,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 5,
|
||||
name: "Ken Sugimori"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
name: {},
|
||||
text: {
|
||||
fr: "Piochez 3 cartes.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
74
cards/sm/sm35/62.ts
Normal file
74
cards/sm/sm35/62.ts
Normal file
@@ -0,0 +1,74 @@
|
||||
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-62",
|
||||
localId: 62,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Lillie",
|
||||
fr: "Lilie",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/62/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/62/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/62/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/62/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.SUPPORTER,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 5,
|
||||
name: "Ken Sugimori"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
name: {},
|
||||
text: {
|
||||
fr: "Piochez des cartes jusqu’à ce que vous ayez 6 cartes en main. Si c’est votre premier tour, piochez des cartes jusqu'à ce que vous ayez 8 cartes en main.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
74
cards/sm/sm35/63.ts
Normal file
74
cards/sm/sm35/63.ts
Normal file
@@ -0,0 +1,74 @@
|
||||
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-63",
|
||||
localId: 63,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Pokémon Breeder",
|
||||
fr: "Éleveuse de Pokémon",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/63/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/63/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/63/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/63/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.SUPPORTER,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 40,
|
||||
name: "Kanako Eo"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
name: {},
|
||||
text: {
|
||||
fr: "Piochez 2 cartes et soignez 20 dégâts à votre Pokémon Actif. Si votre deck ne contient aucune carte, vous ne pouvez pas jouer cette carte.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
74
cards/sm/sm35/64.ts
Normal file
74
cards/sm/sm35/64.ts
Normal file
@@ -0,0 +1,74 @@
|
||||
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-64",
|
||||
localId: 64,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Pokémon Catcher",
|
||||
fr: "Attrape-Pokémon",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/64/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/64/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/64/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/64/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.ITEM,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 13,
|
||||
name: "Toyste Beach"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
name: {},
|
||||
text: {
|
||||
fr: "Lancez une pièce. Si c’est face, échangez l’un des Pokémon de Banc de votre adversaire avec son Pokémon Actif.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
74
cards/sm/sm35/65.ts
Normal file
74
cards/sm/sm35/65.ts
Normal file
@@ -0,0 +1,74 @@
|
||||
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-65",
|
||||
localId: 65,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Sophocles",
|
||||
fr: "Chrys",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/65/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/65/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/65/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/65/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.SUPPORTER,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 5,
|
||||
name: "Ken Sugimori"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
name: {},
|
||||
text: {
|
||||
fr: "Défaussez 2 cartes de votre main. Dans ce cas, piochez 4 cartes.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
74
cards/sm/sm35/66.ts
Normal file
74
cards/sm/sm35/66.ts
Normal file
@@ -0,0 +1,74 @@
|
||||
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-66",
|
||||
localId: 66,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Super Scoop Up",
|
||||
fr: "Super Rappel",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/66/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/66/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/66/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/66/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.ITEM,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 13,
|
||||
name: "Toyste Beach"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
name: {},
|
||||
text: {
|
||||
fr: "Lancez une pièce. Si c’est face, placez l’un de vos Pokémon ainsi que toutes les cartes qui lui sont attachées dans votre main.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
74
cards/sm/sm35/67.ts
Normal file
74
cards/sm/sm35/67.ts
Normal file
@@ -0,0 +1,74 @@
|
||||
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-67",
|
||||
localId: 67,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Switch",
|
||||
fr: "Échange",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/67/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/67/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/67/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/67/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.ITEM,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 1,
|
||||
name: "Ryo Ueda"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
name: {},
|
||||
text: {
|
||||
fr: "Échangez votre Pokémon Actif avec l’un de vos Pokémon de Banc.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
74
cards/sm/sm35/68.ts
Normal file
74
cards/sm/sm35/68.ts
Normal file
@@ -0,0 +1,74 @@
|
||||
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-68",
|
||||
localId: 68,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Ultra Ball",
|
||||
fr: "Hyper Ball",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/68/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/68/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/68/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/68/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.ITEM,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 1,
|
||||
name: "Ryo Ueda"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
name: {},
|
||||
text: {
|
||||
fr: "Défaussez 2 cartes de votre main. Dans ce cas, cherchez un Pokémon dans votre deck, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
71
cards/sm/sm35/69.ts
Normal file
71
cards/sm/sm35/69.ts
Normal file
@@ -0,0 +1,71 @@
|
||||
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-69",
|
||||
localId: 69,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Double Colorless Energy",
|
||||
fr: "Double Énergie Incolore",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/69/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/69/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/69/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/69/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.SPECIAL,
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
name: {},
|
||||
text: {
|
||||
fr: "Double Énergie Incolore fournit de l’Énergie ColorlessColorless.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.ENERGY,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
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
|
||||
|
71
cards/sm/sm35/70.ts
Normal file
71
cards/sm/sm35/70.ts
Normal file
@@ -0,0 +1,71 @@
|
||||
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-70",
|
||||
localId: 70,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Warp Energy",
|
||||
fr: "Énergie de Distorsion",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/70/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/70/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/70/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/70/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.SPECIAL,
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
name: {},
|
||||
text: {
|
||||
fr: "Cette carte fournit de l’Énergie Colorless. \n\nLorsque vous attachez cette carte de votre main à votre Pokémon Actif, échangez ce Pokémon avec l’un de vos Pokémon de Banc.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.ENERGY,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
113
cards/sm/sm35/71.ts
Normal file
113
cards/sm/sm35/71.ts
Normal file
@@ -0,0 +1,113 @@
|
||||
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-71",
|
||||
localId: 71,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Entei-GX",
|
||||
fr: "Entei-GX",
|
||||
},
|
||||
|
||||
hp: 180,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 244,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/71/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/71/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/71/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/71/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.GX,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Combustion",
|
||||
fr: "Fournaise",
|
||||
},
|
||||
damage: 50
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Fire Fang",
|
||||
fr: "Crocs Feu",
|
||||
},
|
||||
text: {
|
||||
en: "Your opponent's Active Pokémon is now Burned.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
|
||||
},
|
||||
damage: 100
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Brave Burn-GX",
|
||||
fr: "Brave Brûlure-GX",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 150 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) (You can't use more than 1 GX attack in a game.)",
|
||||
fr: "Cette attaque inflige 150 dégâts à l’un des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.) (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.RareUltra,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
116
cards/sm/sm35/72.ts
Normal file
116
cards/sm/sm35/72.ts
Normal file
@@ -0,0 +1,116 @@
|
||||
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-72",
|
||||
localId: 72,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Mewtwo-GX",
|
||||
fr: "Mewtwo-GX",
|
||||
},
|
||||
|
||||
hp: 190,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 150,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/72/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/72/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/72/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/72/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.GX,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Full Burst",
|
||||
fr: "Pleine Puissance",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 30 damage times the amount of Energy attached to this Pokémon.",
|
||||
fr: "Cette attaque inflige 30 dégâts multipliés par le nombre d’Énergies attachées à ce Pokémon.",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Super Absorption",
|
||||
fr: "Super Absorption",
|
||||
},
|
||||
text: {
|
||||
en: "Heal 30 damage from this Pokémon.",
|
||||
fr: "Soignez 30 dégâts à ce Pokémon.",
|
||||
},
|
||||
damage: 60
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.PSYCHIC,
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Psystrike-GX",
|
||||
fr: "Frappe Psy-GX",
|
||||
},
|
||||
text: {
|
||||
en: "This attack's damage isn't affected by any effects on your opponent's Active Pokémon. (You can't use more than 1 GX attack in a game.)",
|
||||
fr: "Les dégâts de cette attaque ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire. (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||||
},
|
||||
damage: 200
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.RareUltra,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
74
cards/sm/sm35/73.ts
Normal file
74
cards/sm/sm35/73.ts
Normal file
@@ -0,0 +1,74 @@
|
||||
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-73",
|
||||
localId: 73,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Pokémon Breeder",
|
||||
fr: "Éleveuse de Pokémon",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/73/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/73/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/73/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/73/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.SUPPORTER,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 39,
|
||||
name: "Sanosuke Sakuma"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
name: {},
|
||||
text: {
|
||||
fr: "Piochez 2 cartes et soignez 20 dégâts à votre Pokémon Actif. Si votre deck ne contient aucune carte, vous ne pouvez pas jouer cette carte.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.RareUltra,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
113
cards/sm/sm35/74.ts
Normal file
113
cards/sm/sm35/74.ts
Normal file
@@ -0,0 +1,113 @@
|
||||
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-74",
|
||||
localId: 74,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Entei-GX",
|
||||
fr: "Entei-GX",
|
||||
},
|
||||
|
||||
hp: 180,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 244,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/74/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/74/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/74/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/74/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.GX,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Combustion",
|
||||
fr: "Fournaise",
|
||||
},
|
||||
damage: 50
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Fire Fang",
|
||||
fr: "Crocs Feu",
|
||||
},
|
||||
text: {
|
||||
en: "Your opponent's Active Pokémon is now Burned.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
|
||||
},
|
||||
damage: 100
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Brave Burn-GX",
|
||||
fr: "Brave Brûlure-GX",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 150 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) (You can't use more than 1 GX attack in a game.)",
|
||||
fr: "Cette attaque inflige 150 dégâts à l’un des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.) (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
124
cards/sm/sm35/75.ts
Normal file
124
cards/sm/sm35/75.ts
Normal file
@@ -0,0 +1,124 @@
|
||||
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-75",
|
||||
localId: 75,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Raichu-GX",
|
||||
fr: "Raichu-GX",
|
||||
},
|
||||
|
||||
hp: 210,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
dexId: 26,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/75/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/75/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/75/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/75/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pikachu",
|
||||
fr: "Pikachu",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.GX,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Powerful Spark",
|
||||
fr: "Étincelle Puissante",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 20 more damage times the amount of Lightning Energy attached to your Pokémon.",
|
||||
fr: "Cette attaque inflige 20 dégâts supplémentaires multipliés par le nombre d’Énergies Lightning attachées à vos Pokémon.",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Thunder",
|
||||
fr: "Fatal-Foudre",
|
||||
},
|
||||
text: {
|
||||
en: "This Pokémon does 30 damage to itself.",
|
||||
fr: "Ce Pokémon s’inflige 30 dégâts.",
|
||||
},
|
||||
damage: 160
|
||||
},{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Voltail-GX",
|
||||
fr: "Queue Survoltée-GX",
|
||||
},
|
||||
text: {
|
||||
en: "Your opponent's Active Pokémon is now Paralyzed. (You can't use more than 1 GX attack in a game.)",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Paralysé. (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||||
},
|
||||
damage: 120
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.METAL,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
116
cards/sm/sm35/76.ts
Normal file
116
cards/sm/sm35/76.ts
Normal file
@@ -0,0 +1,116 @@
|
||||
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-76",
|
||||
localId: 76,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Mewtwo-GX",
|
||||
fr: "Mewtwo-GX",
|
||||
},
|
||||
|
||||
hp: 190,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 150,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/76/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/76/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/76/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/76/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.GX,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Full Burst",
|
||||
fr: "Pleine Puissance",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 30 damage times the amount of Energy attached to this Pokémon.",
|
||||
fr: "Cette attaque inflige 30 dégâts multipliés par le nombre d’Énergies attachées à ce Pokémon.",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Super Absorption",
|
||||
fr: "Super Absorption",
|
||||
},
|
||||
text: {
|
||||
en: "Heal 30 damage from this Pokémon.",
|
||||
fr: "Soignez 30 dégâts à ce Pokémon.",
|
||||
},
|
||||
damage: 60
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.PSYCHIC,
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Psystrike-GX",
|
||||
fr: "Frappe Psy-GX",
|
||||
},
|
||||
text: {
|
||||
en: "This attack's damage isn't affected by any effects on your opponent's Active Pokémon. (You can't use more than 1 GX attack in a game.)",
|
||||
fr: "Les dégâts de cette attaque ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire. (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||||
},
|
||||
damage: 200
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
118
cards/sm/sm35/77.ts
Normal file
118
cards/sm/sm35/77.ts
Normal file
@@ -0,0 +1,118 @@
|
||||
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-77",
|
||||
localId: 77,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Zoroark-GX",
|
||||
fr: "Zoroark-GX",
|
||||
},
|
||||
|
||||
hp: 210,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
dexId: 571,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/77/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/77/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/77/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/77/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Zorua",
|
||||
fr: "Zorua",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.GX,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 419,
|
||||
type: AbilityType.TALENT,
|
||||
name: {
|
||||
en: "Trade",
|
||||
fr: "Troc",
|
||||
},
|
||||
text: {
|
||||
en: "Once during your turn (before your attack), you may discard a card from your hand. If you do, draw 2 cards.",
|
||||
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez défausser une carte de votre main. Dans ce cas, piochez 2 cartes.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Riotous Beating",
|
||||
fr: "Méchante Raclée",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 20 damage for each of your Pokémon in play.",
|
||||
fr: "Cette attaque inflige 20 dégâts pour chacun de vos Pokémon en jeu.",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.DARKNESS
|
||||
],
|
||||
name: {
|
||||
en: "Trickster-GX",
|
||||
fr: "Histrion-GX",
|
||||
},
|
||||
text: {
|
||||
en: "Choose 1 of your opponent's Pokémon's attacks and use it as this attack. (You can't use more than 1 GX attack in a game.)",
|
||||
fr: "Choisissez l’une des attaques des Pokémon de votre adversaire et utilisez-la en tant que cette attaque. (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
116
cards/sm/sm35/78.ts
Normal file
116
cards/sm/sm35/78.ts
Normal file
@@ -0,0 +1,116 @@
|
||||
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-78",
|
||||
localId: 78,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Mewtwo-GX",
|
||||
fr: "Mewtwo-GX",
|
||||
},
|
||||
|
||||
hp: 190,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 150,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/78/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/78/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/78/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/78/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.GX,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 9,
|
||||
name: "Mitsuhiro Arita"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Full Burst",
|
||||
fr: "Pleine Puissance",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 30 damage times the amount of Energy attached to this Pokémon.",
|
||||
fr: "Cette attaque inflige 30 dégâts multipliés par le nombre d’Énergies attachées à ce Pokémon.",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Super Absorption",
|
||||
fr: "Super Absorption",
|
||||
},
|
||||
text: {
|
||||
en: "Heal 30 damage from this Pokémon.",
|
||||
fr: "Soignez 30 dégâts à ce Pokémon.",
|
||||
},
|
||||
damage: 60
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.PSYCHIC,
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Psystrike-GX",
|
||||
fr: "Frappe Psy-GX",
|
||||
},
|
||||
text: {
|
||||
en: "This attack's damage isn't affected by any effects on your opponent's Active Pokémon. (You can't use more than 1 GX attack in a game.)",
|
||||
fr: "Les dégâts de cette attaque ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire. (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||||
},
|
||||
damage: 200
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
102
cards/sm/sm35/8.ts
Normal file
102
cards/sm/sm35/8.ts
Normal file
@@ -0,0 +1,102 @@
|
||||
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-8",
|
||||
localId: 8,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Virizion",
|
||||
fr: "Viridium",
|
||||
},
|
||||
|
||||
hp: 110,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 640,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/8/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/8/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/8/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/8/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 27,
|
||||
name: "kawayoo"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.GRASS
|
||||
],
|
||||
name: {
|
||||
en: "Wrapped in Wind",
|
||||
fr: "Enveloppement Éolien",
|
||||
},
|
||||
text: {
|
||||
en: "You may attach a basic Energy card from your hand to this Pokémon.",
|
||||
fr: "Vous pouvez attacher une carte Énergie de base de votre main à ce Pokémon.",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Pike",
|
||||
fr: "Javelot",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Cette attaque inflige 30 dégâts à l’un des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||||
},
|
||||
damage: 90
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
100
cards/sm/sm35/9.ts
Normal file
100
cards/sm/sm35/9.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-9",
|
||||
localId: 9,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Shining Genesect",
|
||||
fr: "Genesect Brillant",
|
||||
},
|
||||
|
||||
hp: 130,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 649,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/9/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/9/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm35/9/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm35/9/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 67,
|
||||
name: "Hitoshi Ariga"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 1213,
|
||||
type: AbilityType.TALENT,
|
||||
name: {
|
||||
en: "Energy Reload",
|
||||
fr: "Recharge d’Énergie",
|
||||
},
|
||||
text: {
|
||||
en: "Once during your turn (before your attack), you may move a Grass Energy from 1 of your other Pokémon to this Pokémon.",
|
||||
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez déplacer une Énergie Grass de l’un de vos Pokémon vers ce Pokémon.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Gaia Blaster",
|
||||
fr: "Explosion de Gaïa",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 20 more damage times the amount of Grass Energy attached to this Pokémon.",
|
||||
fr: "Cette attaque inflige 20 dégâts supplémentaires multipliés par le nombre d’Énergies Grass attachées à ce Pokémon.",
|
||||
},
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Shining Legends",
|
||||
code: "sm35"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user