mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
Added shining fates (#24)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
parent
151c00be78
commit
5dab7afa10
34
data/Sword & Shield/Shining Fates.ts
Normal file
34
data/Sword & Shield/Shining Fates.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Set } from '../../interfaces'
|
||||||
|
import serie from '../Sword & Shield'
|
||||||
|
|
||||||
|
const swsh1: Set = {
|
||||||
|
id: "swsh4.5",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Shining Fates",
|
||||||
|
fr: "Déstinées Radieuses",
|
||||||
|
},
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
|
cardCount: {
|
||||||
|
total: 195,
|
||||||
|
official: 72
|
||||||
|
},
|
||||||
|
|
||||||
|
releaseDate: "2021-02-19",
|
||||||
|
|
||||||
|
legal: {
|
||||||
|
standard: true,
|
||||||
|
expanded: true
|
||||||
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: false,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default swsh1
|
41
data/Sword & Shield/Shining Fates/1.ts
Normal file
41
data/Sword & Shield/Shining Fates/1.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Yanma"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Kouki Saitou",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Charge"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10,
|
||||||
|
cost: ["Grass"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Cru-Ailes"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Grass", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
52
data/Sword & Shield/Shining Fates/10.ts
Normal file
52
data/Sword & Shield/Shining Fates/10.ts
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Sinistrail VMAX"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "PLANETA Mochizuki",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 330,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Sinistrail-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Chaîne Déchaînée"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cette attaque inflige 30 dégâts à l’un des Pokémon de votre adversaire pour chaque Énergie Grass attachée à ce Pokémon. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)"
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Grass"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Ancromax"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Ancromax."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 240,
|
||||||
|
cost: ["Grass", "Grass", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
38
data/Sword & Shield/Shining Fates/11.ts
Normal file
38
data/Sword & Shield/Shining Fates/11.ts
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Ouistempo"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Naoki Saito",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Combo-Griffe"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts pour chaque côté face."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10×",
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Shining Fates/12.ts
Normal file
50
data/Sword & Shield/Shining Fates/12.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Badabouin"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "0313",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Ouistempo"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Avantage du Terrain"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Si vous avez un Stade en jeu, ce Pokémon n’a pas de Coût de Retraite."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Tapotige"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20,
|
||||||
|
cost: ["Grass"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Shining Fates/13.ts
Normal file
50
data/Sword & Shield/Shining Fates/13.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Gorythmic"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Anesaki Dynamic",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 170,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Badabouin"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Rythme Voltaïque"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Une fois pendant votre tour, vous pouvez chercher dans votre deck jusqu’à 2 cartes Énergie Grass, puis les attacher à l’un de vos Pokémon. Mélangez ensuite votre deck."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Enfoncement"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 140,
|
||||||
|
cost: ["Grass", "Grass", "Grass", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Sword & Shield/Shining Fates/14.ts
Normal file
34
data/Sword & Shield/Shining Fates/14.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Tournicoton"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Yukiko Baba",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Feuillage"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10,
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
52
data/Sword & Shield/Shining Fates/15.ts
Normal file
52
data/Sword & Shield/Shining Fates/15.ts
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Blancoton"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "kodama",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Tournicoton"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Graines Fortifiantes"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Soignez tous les dégâts de l’un de vos Pokémon de Banc."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Attaque Surprise"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Lancez une pièce. Si c’est pile, cette attaque ne fait rien."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 50,
|
||||||
|
cost: ["Grass"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
45
data/Sword & Shield/Shining Fates/16.ts
Normal file
45
data/Sword & Shield/Shining Fates/16.ts
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Zarude"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Kouki Saitou",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Lianes Sangsues"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Soignez 30 dégâts de ce Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Grass", "Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Courroux de la Jungle"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 110,
|
||||||
|
cost: ["Grass", "Grass", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
38
data/Sword & Shield/Shining Fates/17.ts
Normal file
38
data/Sword & Shield/Shining Fates/17.ts
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Reshiram"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "PLANETA Tsuji",
|
||||||
|
rarity: "Secret Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Brasier Magnifique"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Ce Pokémon s’inflige aussi 60 dégâts."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 270,
|
||||||
|
cost: ["Fire", "Lightning", "Darkness"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Water",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
46
data/Sword & Shield/Shining Fates/18.ts
Normal file
46
data/Sword & Shield/Shining Fates/18.ts
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Pyrobut V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "5ban Graphics",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 210,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Coureur de Fond"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Si un Stade est en jeu, ce Pokémon n’a pas de Coût de Retraite."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Jambes Carmin"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 140,
|
||||||
|
cost: ["Fire", "Fire", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Water",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
53
data/Sword & Shield/Shining Fates/19.ts
Normal file
53
data/Sword & Shield/Shining Fates/19.ts
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Pyrobut VMAX"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "PLANETA Mochizuki",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 320,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Pyrobut-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Riposte"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Si ce Pokémon a subi les dégâts d’une attaque pendant le dernier tour de votre adversaire, cette attaque inflige en plus ce montant-là de dégâts."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30+",
|
||||||
|
cost: ["Fire", "Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Ballon Brûlomax"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 170,
|
||||||
|
cost: ["Fire", "Fire", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Water",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
47
data/Sword & Shield/Shining Fates/2.ts
Normal file
47
data/Sword & Shield/Shining Fates/2.ts
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Yanmega"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Souichirou Gunjima",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Yanma"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Piqûre"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Grass"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Descente en Piqué"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Ce Pokémon s’inflige aussi 30 dégâts."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 120,
|
||||||
|
cost: ["Grass", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
32
data/Sword & Shield/Shining Fates/20.ts
Normal file
32
data/Sword & Shield/Shining Fates/20.ts
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Hypotrempe"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Taira Akitsu",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 40,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Pistolet à O"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10,
|
||||||
|
cost: ["Water"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
37
data/Sword & Shield/Shining Fates/21.ts
Normal file
37
data/Sword & Shield/Shining Fates/21.ts
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Kyogre"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Anesaki Dynamic",
|
||||||
|
rarity: "Secret Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Déferlante Magnifique"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cette attaque inflige 80 dégâts à chacun des Pokémon de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)"
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Water", "Lightning", "Metal", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Sword & Shield/Shining Fates/22.ts
Normal file
34
data/Sword & Shield/Shining Fates/22.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Mustébouée"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "ryoma uratsuka",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Pluie Éclaboussante"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20,
|
||||||
|
cost: ["Water"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
38
data/Sword & Shield/Shining Fates/23.ts
Normal file
38
data/Sword & Shield/Shining Fates/23.ts
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Mustéflott"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "AKIRA EGAWA",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 110,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Mustébouée"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Surf"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 50,
|
||||||
|
cost: ["Water"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
46
data/Sword & Shield/Shining Fates/24.ts
Normal file
46
data/Sword & Shield/Shining Fates/24.ts
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Manaphy"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Narumi Sato",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Recherche Océanique"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Une fois pendant votre tour, si ce Pokémon est sur le Poste Actif, vous pouvez regarder les 6 cartes du dessus de votre deck, montrer un Pokémon que vous y trouvez, puis l’ajouter à votre main. Mélangez les autres cartes avec votre deck."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Grosse Vague"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Water", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
45
data/Sword & Shield/Shining Fates/25.ts
Normal file
45
data/Sword & Shield/Shining Fates/25.ts
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Volcanion"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "nagimiso",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 130,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Enfoncement"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 50,
|
||||||
|
cost: ["Water", "Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Vapeur Explosive"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Lancez 2 pièces. Cette attaque inflige 120 dégâts pour chaque côté face."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "120×",
|
||||||
|
cost: ["Water", "Water", "Water", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
41
data/Sword & Shield/Shining Fates/26.ts
Normal file
41
data/Sword & Shield/Shining Fates/26.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Khélocrok"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "sowsow",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Charge"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10,
|
||||||
|
cost: ["Water"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Morsure"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Water", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Shining Fates/27.ts
Normal file
50
data/Sword & Shield/Shining Fates/27.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Torgamord"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Masakazu Fukuda",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 140,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Khélocrok"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Exosquelette"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance)."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Coud’Krâne"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 130,
|
||||||
|
cost: ["Water", "Water", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
37
data/Sword & Shield/Shining Fates/28.ts
Normal file
37
data/Sword & Shield/Shining Fates/28.ts
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Nigosier"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "HYOGONOSUKE",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Tir Projeté"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cette attaque inflige 50 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.)"
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Water", "Water"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
37
data/Sword & Shield/Shining Fates/29.ts
Normal file
37
data/Sword & Shield/Shining Fates/29.ts
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Frissonille"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Tika Matsuno",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Appel à la Famille"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cherchez dans votre deck un Pokémon de base, puis placez-le sur votre Banc. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Water"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Metal",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
46
data/Sword & Shield/Shining Fates/3.ts
Normal file
46
data/Sword & Shield/Shining Fates/3.ts
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Celebi"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Yuu Nishida",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Promenade Sylvestre"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Une fois pendant votre tour, si ce Pokémon est sur le Poste Actif, vous pouvez regarder les 6 cartes du dessus de votre deck, montrer une carte Énergie que vous y trouvez, puis l’ajouter à votre main. Mélangez les autres cartes avec votre deck."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Enjambée de Feuillage"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 40,
|
||||||
|
cost: ["Grass", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Shining Fates/30.ts
Normal file
50
data/Sword & Shield/Shining Fates/30.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Beldeneige"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Kagemaru Himeno",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Frissonille"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Danse de Glace"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Autant de fois que vous le voulez pendant votre tour, vous pouvez attacher une carte Énergie Water de votre main à l’un de vos Pokémon Water de Banc."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Onde Boréale"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Water", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Metal",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
38
data/Sword & Shield/Shining Fates/31.ts
Normal file
38
data/Sword & Shield/Shining Fates/31.ts
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Lixy"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Uta",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Lightning"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Sous Pression"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "S’il reste 3 cartes Récompense ou moins à votre adversaire, cette attaque inflige 50 dégâts supplémentaires."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10+",
|
||||||
|
cost: ["Lightning"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Shining Fates/32.ts
Normal file
50
data/Sword & Shield/Shining Fates/32.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Luxio"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "NC Empire",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Lightning"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Lixy"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Tombé de Haut"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Une fois pendant votre tour, si vous avez pioché ce Pokémon de votre deck au début de votre tour, et si votre Banc n’est pas plein, plutôt que d’ajouter cette carte à votre main, vous pouvez la placer sur votre Banc."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Coup de Pied Ravageur"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Lightning"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
49
data/Sword & Shield/Shining Fates/33.ts
Normal file
49
data/Sword & Shield/Shining Fates/33.ts
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Luxray"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Hasuno",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 160,
|
||||||
|
types: ["Lightning"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Luxio"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Razzia Obscure"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Si ce Pokémon a évolué de Luxio pendant ce tour, cette attaque inflige 100 dégâts supplémentaires."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "60+",
|
||||||
|
cost: ["Lightning"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Éclair Frontal"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 120,
|
||||||
|
cost: ["Lightning", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Shining Fates/34.ts
Normal file
50
data/Sword & Shield/Shining Fates/34.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Motisma"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "ryoma uratsuka",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Lightning"],
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Moti-Choix"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez chercher dans votre deck jusqu’à 2 cartes Objet dont le nom contient le mot « Moti », montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Éclair"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Lightning", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
48
data/Sword & Shield/Shining Fates/35.ts
Normal file
48
data/Sword & Shield/Shining Fates/35.ts
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Morpeko"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Saya Tsuruta",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Lightning"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Glouton"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Piochez une carte."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Éclair"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 40,
|
||||||
|
cost: ["Lightning", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
48
data/Sword & Shield/Shining Fates/36.ts
Normal file
48
data/Sword & Shield/Shining Fates/36.ts
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Morpeko"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Hideki Ishikawa",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Lightning"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Glouton"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Piochez une carte."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Éclair"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 40,
|
||||||
|
cost: ["Lightning", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
49
data/Sword & Shield/Shining Fates/37.ts
Normal file
49
data/Sword & Shield/Shining Fates/37.ts
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Morpeko V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "5ban Graphics",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 170,
|
||||||
|
types: ["Lightning"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Étincelle"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cette attaque inflige aussi 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,
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Électro Roue"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Défaussez une Énergie de ce Pokémon. Dans ce cas, échangez-le contre l’un de vos Pokémon de Banc."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 150,
|
||||||
|
cost: ["Lightning", "Lightning", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
42
data/Sword & Shield/Shining Fates/38.ts
Normal file
42
data/Sword & Shield/Shining Fates/38.ts
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Morpeko VMAX"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "PLANETA Mochizuki",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 300,
|
||||||
|
types: ["Lightning"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Morpeko-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Déchargeomax"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cette attaque inflige aussi 20 dégâts à chacun des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 180,
|
||||||
|
cost: ["Lightning", "Lightning", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
55
data/Sword & Shield/Shining Fates/39.ts
Normal file
55
data/Sword & Shield/Shining Fates/39.ts
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Wimessir V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "5ban Graphics",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 180,
|
||||||
|
types: ["Psychic"],
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Veille"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Une fois pendant votre tour, vous pouvez soigner 20 dégâts de votre Pokémon Actif."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Psyko"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cette attaque inflige 60 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Actif de votre adversaire."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10+",
|
||||||
|
cost: ["Psychic", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Darkness",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Sword & Shield/Shining Fates/4.ts
Normal file
34
data/Sword & Shield/Shining Fates/4.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Cacnea"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Uta",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Transpercement"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 50,
|
||||||
|
cost: ["Grass", "Grass"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
38
data/Sword & Shield/Shining Fates/40.ts
Normal file
38
data/Sword & Shield/Shining Fates/40.ts
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Kraknoix"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "MAHOU",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Fighting"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Vibration Terrestre"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Si un Stade est en jeu, cette attaque inflige 10 dégâts supplémentaires."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10+",
|
||||||
|
cost: ["Fighting"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Grass",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
37
data/Sword & Shield/Shining Fates/41.ts
Normal file
37
data/Sword & Shield/Shining Fates/41.ts
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Smogo"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Pani Kobayashi",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Darkness"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Ascension"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cherchez dans votre deck une carte Évolution de ce Pokémon, puis placez-la sur ce Pokémon pour le faire évoluer. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Darkness"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
53
data/Sword & Shield/Shining Fates/42.ts
Normal file
53
data/Sword & Shield/Shining Fates/42.ts
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Smogogo de Galar"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Mitsuhiro Arita",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 130,
|
||||||
|
types: ["Darkness"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Smogo"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Gaz Inhibiteur"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Tant que ce Pokémon est sur le Poste Actif, les Pokémon en jeu de votre adversaire n’ont pas de talent, à l’exception de Gaz Inhibiteur."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Poison Violent"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Placez 4 marqueurs de dégâts au lieu d’un sur ce Pokémon-là pendant le Contrôle Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Darkness"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
41
data/Sword & Shield/Shining Fates/43.ts
Normal file
41
data/Sword & Shield/Shining Fates/43.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Mimigal"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "sowsow",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Darkness"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Suspension"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10,
|
||||||
|
cost: ["Darkness"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Dard"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20,
|
||||||
|
cost: ["Darkness", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Shining Fates/44.ts
Normal file
50
data/Sword & Shield/Shining Fates/44.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Nostenfer V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "PLANETA Mochizuki",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 180,
|
||||||
|
types: ["Darkness"],
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Atout Obscur"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez piocher des cartes jusqu’à en avoir 6 en main. Vous ne pouvez utiliser qu’un talent Atout Obscur par tour."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Croc-Poison"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 70,
|
||||||
|
cost: ["Darkness", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
49
data/Sword & Shield/Shining Fates/45.ts
Normal file
49
data/Sword & Shield/Shining Fates/45.ts
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Nostenfer VMAX"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "PLANETA Tsuji",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 300,
|
||||||
|
types: ["Darkness"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Nostenfer-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Poison Évasif"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Échangez ce Pokémon contre l’un de vos Pokémon de Banc."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 70,
|
||||||
|
cost: ["Darkness", "Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Tranchomax"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 180,
|
||||||
|
cost: ["Darkness", "Darkness", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
42
data/Sword & Shield/Shining Fates/46.ts
Normal file
42
data/Sword & Shield/Shining Fates/46.ts
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Yveltal"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Hasuno",
|
||||||
|
rarity: "Secret Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 110,
|
||||||
|
types: ["Darkness"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Annihilation Magnifique"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Le Pokémon Actif de votre adversaire est mis K.O."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Fire", "Psychic", "Darkness", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
37
data/Sword & Shield/Shining Fates/47.ts
Normal file
37
data/Sword & Shield/Shining Fates/47.ts
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Goupilou"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "kirisAki",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Darkness"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Provocation"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Votre adversaire mélange sa main, puis la place en dessous de son deck. S’il place ainsi au moins une carte en dessous de son deck, il pioche 3 cartes."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Darkness"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Grass",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
52
data/Sword & Shield/Shining Fates/48.ts
Normal file
52
data/Sword & Shield/Shining Fates/48.ts
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Roublenard"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Hideki Ishikawa",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 100,
|
||||||
|
types: ["Darkness"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Goupilou"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Appel à la Rescousse"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cherchez dans votre deck jusqu’à 3 Pokémon de base, puis placez-les sur votre Banc. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Coinçage"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 80,
|
||||||
|
cost: ["Darkness", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Grass",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
39
data/Sword & Shield/Shining Fates/49.ts
Normal file
39
data/Sword & Shield/Shining Fates/49.ts
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Charibari"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "0313",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 100,
|
||||||
|
types: ["Metal"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Force"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 60,
|
||||||
|
cost: ["Metal", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Grass",
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
44
data/Sword & Shield/Shining Fates/5.ts
Normal file
44
data/Sword & Shield/Shining Fates/5.ts
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Tropius"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Akira Komayama",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 110,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Main Verte"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Attachez jusqu’à 2 cartes Énergie Grass de votre pile de défausse à vos Pokémon de Banc comme il vous plaît."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Tornade"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Grass", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
49
data/Sword & Shield/Shining Fates/50.ts
Normal file
49
data/Sword & Shield/Shining Fates/50.ts
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Métamorph V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Saki Hayashiro",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 170,
|
||||||
|
types: ["Colorless"],
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Transformation-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Une fois pendant votre tour, vous pouvez choisir un Pokémon-V de base dans votre pile de défausse et l’échanger contre ce Pokémon. Les cartes attachées, les marqueurs de dégâts, les États Spéciaux, le nombre de tours de jeu, et tous les autres effets restent sur le nouveau Pokémon."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Collage"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Attachez une carte Énergie de base de votre pile de défausse à ce Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
41
data/Sword & Shield/Shining Fates/51.ts
Normal file
41
data/Sword & Shield/Shining Fates/51.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Métamorph VMAX"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "PLANETA Tsuji",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 320,
|
||||||
|
types: ["Colorless"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Métamorph-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Morphomax"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Choisissez l’une des attaques du Pokémon Actif de votre adversaire et utilisez-la en tant que cette attaque."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
48
data/Sword & Shield/Shining Fates/52.ts
Normal file
48
data/Sword & Shield/Shining Fates/52.ts
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Évoli"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "so-taro",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Colorless"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Signes d’Évolution"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cherchez dans votre deck une carte Évolution d’Évoli, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Coup Déchaîné"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Lancez une pièce. Si c’est pile, cette attaque ne fait rien."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
49
data/Sword & Shield/Shining Fates/53.ts
Normal file
49
data/Sword & Shield/Shining Fates/53.ts
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Rongrigou V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "PLANETA Igarashi",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 200,
|
||||||
|
types: ["Colorless"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Mâchouille"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Défaussez une Énergie du Pokémon Actif de votre adversaire."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 40,
|
||||||
|
cost: ["Colorless", "Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Écrasement Chancelant"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Lancez une pièce. Si c’est pile, cette attaque ne fait rien."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 180,
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
52
data/Sword & Shield/Shining Fates/54.ts
Normal file
52
data/Sword & Shield/Shining Fates/54.ts
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Nigosier V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "aky CG Works",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 200,
|
||||||
|
types: ["Colorless"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Bec Gobeur"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cherchez dans votre deck jusqu’à 2 cartes, puis ajoutez-les à votre main. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Tir Rejet"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Défaussez toute l’Énergie de ce Pokémon. Cette attaque inflige 160 dégâts à l’un des Pokémon de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)"
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
47
data/Sword & Shield/Shining Fates/55.ts
Normal file
47
data/Sword & Shield/Shining Fates/55.ts
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Nigosier VMAX"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "PLANETA Tsuji",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 320,
|
||||||
|
types: ["Colorless"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Nigosier-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Jetomax"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Lancez une pièce pour chaque Énergie attachée à ce Pokémon. Cette attaque inflige 80 dégâts pour chaque côté face."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "80×",
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
48
data/Sword & Shield/Shining Fates/56.ts
Normal file
48
data/Sword & Shield/Shining Fates/56.ts
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Wimessir"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Souichirou Gunjima",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 100,
|
||||||
|
types: ["Colorless"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Coup d’Main"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cherchez dans votre deck une carte Énergie de base, puis attachez-la à l’un de vos Pokémon de Banc. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Psyko"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cette attaque inflige 20 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Actif de votre adversaire."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20+",
|
||||||
|
cost: ["Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
22
data/Sword & Shield/Shining Fates/57.ts
Normal file
22
data/Sword & Shield/Shining Fates/57.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Ball Masqué"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Hitoshi Ariga",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cherchez dans votre deck jusqu’à 3 cartes Objet différentes dont le nom contient le mot « Ball », montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
22
data/Sword & Shield/Shining Fates/58.ts
Normal file
22
data/Sword & Shield/Shining Fates/58.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Ordres du Boss (Lysandre)"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Ryuta Fuse",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Échangez l’un des Pokémon de Banc de votre adversaire contre son Pokémon Actif."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
22
data/Sword & Shield/Shining Fates/59.ts
Normal file
22
data/Sword & Shield/Shining Fates/59.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Dresseurs d’Arène"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Ryuta Fuse",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Piochez 2 cartes. Si au moins l’un de vos Pokémon a été mis K.O. pendant le dernier tour de votre adversaire, piochez 2 cartes supplémentaires."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
49
data/Sword & Shield/Shining Fates/6.ts
Normal file
49
data/Sword & Shield/Shining Fates/6.ts
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Brindibou"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "HYOGONOSUKE",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Cirque Céleste"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Si vous avez joué Ornithologue de votre main pendant ce tour, ignorez toutes les Énergies dans les coûts d’attaques de ce Pokémon."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Éclat Volant"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cette attaque inflige 60 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.)"
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
22
data/Sword & Shield/Shining Fates/60.ts
Normal file
22
data/Sword & Shield/Shining Fates/60.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Recherches Professorales (Professeure Keteleeria)"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Hideki Ishikawa",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Défaussez votre main, puis piochez 7 cartes."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
22
data/Sword & Shield/Shining Fates/61.ts
Normal file
22
data/Sword & Shield/Shining Fates/61.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Bouclier Rouillé"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "5ban Graphics",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cette carte ajoute 70 PV au Zamazenta-V auquel elle est attachée."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Tool"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
22
data/Sword & Shield/Shining Fates/62.ts
Normal file
22
data/Sword & Shield/Shining Fates/62.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Épée Rouillée"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "5ban Graphics",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Les attaques du Zacian-V auquel cette carte est attachée infligent 30 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance)."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Tool"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
22
data/Sword & Shield/Shining Fates/63.ts
Normal file
22
data/Sword & Shield/Shining Fates/63.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Bannière de la Team Yell"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Studio Bora Inc.",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Soignez 50 dégâts des deux Pokémon Actifs."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Item"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
48
data/Sword & Shield/Shining Fates/64.ts
Normal file
48
data/Sword & Shield/Shining Fates/64.ts
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Charmilly V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Ayaka Yoshida",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 170,
|
||||||
|
types: ["Psychic"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Granulés Sucrés"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Soignez 30 dégâts de chacun de vos Pokémon de Banc."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Psychic"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Soupçon de Sucre"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Si le Pokémon Défenseur est un Pokémon de base, il ne peut pas attaquer pendant le prochain tour de votre adversaire."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 100,
|
||||||
|
cost: ["Psychic", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Metal",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
22
data/Sword & Shield/Shining Fates/65.ts
Normal file
22
data/Sword & Shield/Shining Fates/65.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Ball Masqué"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Hitoshi Ariga",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cherchez dans votre deck jusqu’à 3 cartes Objet différentes dont le nom contient le mot « Ball », montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
22
data/Sword & Shield/Shining Fates/66.ts
Normal file
22
data/Sword & Shield/Shining Fates/66.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Ornithologue"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Hideki Ishikawa",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Échangez votre Pokémon Actif contre l’un de vos Pokémon de Banc. Dans ce cas, piochez 3 cartes."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
22
data/Sword & Shield/Shining Fates/67.ts
Normal file
22
data/Sword & Shield/Shining Fates/67.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Alba Minçalor"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Hitoshi Ariga",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cherchez dans votre deck jusqu’à 2 cartes Fossile Rare, puis placez-les sur votre Banc. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
22
data/Sword & Shield/Shining Fates/68.ts
Normal file
22
data/Sword & Shield/Shining Fates/68.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Dresseurs d’Arène"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "nagimiso",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Piochez 2 cartes. Si au moins l’un de vos Pokémon a été mis K.O. pendant le dernier tour de votre adversaire, piochez 2 cartes supplémentaires."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
22
data/Sword & Shield/Shining Fates/69.ts
Normal file
22
data/Sword & Shield/Shining Fates/69.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Peterson"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Megumi Mizutani",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cherchez dans votre deck une carte Énergie et un Pokémon Darkness, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
38
data/Sword & Shield/Shining Fates/7.ts
Normal file
38
data/Sword & Shield/Shining Fates/7.ts
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Efflèche"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "AKIRA EGAWA",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Brindibou"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Tranch’Herbe"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 40,
|
||||||
|
cost: ["Grass"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
22
data/Sword & Shield/Shining Fates/70.ts
Normal file
22
data/Sword & Shield/Shining Fates/70.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Poké Enfant"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Sanosuke Sakuma",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cherchez dans votre deck un Pokémon, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
22
data/Sword & Shield/Shining Fates/71.ts
Normal file
22
data/Sword & Shield/Shining Fates/71.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Shehroz"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Megumi Mizutani",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Attachez jusqu’à 2 cartes Énergie de base de votre pile de défausse à l’un de vos Pokémon-VMAX. Si vous avez attaché au moins une carte Énergie de cette façon, défaussez votre main."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
22
data/Sword & Shield/Shining Fates/72.ts
Normal file
22
data/Sword & Shield/Shining Fates/72.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Carolina"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "kirisAki",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cherchez dans votre deck une carte Dresseur, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
52
data/Sword & Shield/Shining Fates/73.ts
Normal file
52
data/Sword & Shield/Shining Fates/73.ts
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Charmilly VMAX"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "5ban Graphics",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 310,
|
||||||
|
types: ["Psychic"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Charmilly-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Décoration"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Pour chacun de vos Pokémon de Banc, cherchez dans votre deck une carte Énergie Psychic, puis attachez-la à ce Pokémon-là. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Fouet G-Max"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Défaussez autant d’Énergies que vous voulez de vos Pokémon. Cette attaque inflige 60 dégâts pour chaque carte défaussée de cette façon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "60×",
|
||||||
|
cost: ["Psychic", "Psychic"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Metal",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Shining Fates/8.ts
Normal file
54
data/Sword & Shield/Shining Fates/8.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Archéduc"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Ryota Murayama",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 140,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Efflèche"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Camouflage Sylvestre"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Évitez tous les dégâts infligés à ce Pokémon par les attaques des Pokémon-V et Pokémon-GX de votre adversaire."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Flèche Fendante"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cette attaque inflige aussi 20 dégâts à 2 des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 90,
|
||||||
|
cost: ["Grass", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
49
data/Sword & Shield/Shining Fates/9.ts
Normal file
49
data/Sword & Shield/Shining Fates/9.ts
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Sinistrail V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Eske Yoshinob",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 220,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Colère Ancrée"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Si l’un de vos Pokémon Grass a été mis K.O. par les dégâts d’une attaque de votre adversaire lors de son dernier tour, cette attaque inflige 90 dégâts supplémentaires."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30+",
|
||||||
|
cost: ["Grass"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Giga Marteau"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Giga Marteau."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 200,
|
||||||
|
cost: ["Grass", "Grass", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
49
data/Sword & Shield/Shining Fates/SV001.ts
Normal file
49
data/Sword & Shield/Shining Fates/SV001.ts
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Brindibou"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Akira Komayama",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Cirque Céleste"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Si vous avez joué Ornithologue de votre main pendant ce tour, ignorez toutes les Énergies dans les coûts d’attaques de ce Pokémon."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Éclat Volant"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cette attaque inflige 60 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.)"
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
38
data/Sword & Shield/Shining Fates/SV002.ts
Normal file
38
data/Sword & Shield/Shining Fates/SV002.ts
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Efflèche"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Masakazu Fukuda",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Brindibou"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Tranch’Herbe"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 40,
|
||||||
|
cost: ["Grass"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Shining Fates/SV003.ts
Normal file
54
data/Sword & Shield/Shining Fates/SV003.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Archéduc"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "nagimiso",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 140,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Efflèche"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Camouflage Sylvestre"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Évitez tous les dégâts infligés à ce Pokémon par les attaques des Pokémon-V et Pokémon-GX de votre adversaire."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Flèche Fendante"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cette attaque inflige aussi 20 dégâts à 2 des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 90,
|
||||||
|
cost: ["Grass", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
38
data/Sword & Shield/Shining Fates/SV004.ts
Normal file
38
data/Sword & Shield/Shining Fates/SV004.ts
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Ouistempo"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Sanosuke Sakuma",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Combo-Griffe"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts pour chaque côté face."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10×",
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Shining Fates/SV005.ts
Normal file
50
data/Sword & Shield/Shining Fates/SV005.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Badabouin"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "tetsuya koizumi",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Ouistempo"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Avantage du Terrain"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Si vous avez un Stade en jeu, ce Pokémon n’a pas de Coût de Retraite."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Tapotige"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20,
|
||||||
|
cost: ["Grass"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Shining Fates/SV006.ts
Normal file
50
data/Sword & Shield/Shining Fates/SV006.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Gorythmic"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Ryuta Fuse",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 170,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Badabouin"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Rythme Voltaïque"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Une fois pendant votre tour, vous pouvez chercher dans votre deck jusqu’à 2 cartes Énergie Grass, puis les attacher à l’un de vos Pokémon. Mélangez ensuite votre deck."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Enfoncement"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 140,
|
||||||
|
cost: ["Grass", "Grass", "Grass", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Sword & Shield/Shining Fates/SV007.ts
Normal file
34
data/Sword & Shield/Shining Fates/SV007.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Larvadar"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Kyoko Umemoto",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Ronge"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20,
|
||||||
|
cost: ["Grass"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
48
data/Sword & Shield/Shining Fates/SV008.ts
Normal file
48
data/Sword & Shield/Shining Fates/SV008.ts
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Coléodôme"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "tetsuya koizumi",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Larvadar"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Protection"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 40 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance)."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Collision"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Grass", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Shining Fates/SV009.ts
Normal file
54
data/Sword & Shield/Shining Fates/SV009.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Astronelle"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "SATOSHI NAKAI",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 130,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Coléodôme"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Radar d’Insecte"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Une fois pendant votre tour, vous pouvez regarder les 3 cartes du dessus du deck de votre adversaire, puis les replacer dans l’ordre désiré."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Onde Cérébrale"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie Psychic attachée à ce Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "90+",
|
||||||
|
cost: ["Grass", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
44
data/Sword & Shield/Shining Fates/SV010.ts
Normal file
44
data/Sword & Shield/Shining Fates/SV010.ts
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Tournicoton"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Kyoko Umemoto",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Appel à la Famille"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cherchez dans votre deck jusqu’à 3 Pokémon de base, puis placez-les sur votre Banc. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Tranch’Herbe"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10,
|
||||||
|
cost: ["Grass"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
48
data/Sword & Shield/Shining Fates/SV011.ts
Normal file
48
data/Sword & Shield/Shining Fates/SV011.ts
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Blancoton"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Mizue",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Tournicoton"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Bénédiction Douillette"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cherchez dans votre deck jusqu’à 3 cartes Énergie Grass, puis attachez-les à vos Pokémon de Banc comme il vous plaît. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Feuillage"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Grass"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
37
data/Sword & Shield/Shining Fates/SV012.ts
Normal file
37
data/Sword & Shield/Shining Fates/SV012.ts
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Verpom"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "otumami",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 40,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Repli"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Lancez une pièce. Si c’est face, pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Shining Fates/SV013.ts
Normal file
54
data/Sword & Shield/Shining Fates/SV013.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Pomdrapi"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Shigenori Negishi",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Verpom"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Chute de Pommes"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Une fois pendant votre tour, vous pouvez placer 2 marqueurs de dégâts sur l’un des Pokémon de votre adversaire. Si vous avez placé des marqueurs de dégâts de cette façon, mélangez dans votre deck ce Pokémon et toutes les cartes attachées."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Bombe Acide"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Lancez une pièce. Si c’est face, défaussez une Énergie du Pokémon Actif de votre adversaire."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 60,
|
||||||
|
cost: ["Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Shining Fates/SV014.ts
Normal file
50
data/Sword & Shield/Shining Fates/SV014.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Dratatin"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Kouki Saitou",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Verpom"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Arôme Délicieux"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Une fois pendant votre tour, vous pouvez lancer une pièce. Si c’est face, échangez l’un des Pokémon de Banc de base de votre adversaire contre son Pokémon Actif."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Lance-Soleil"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 70,
|
||||||
|
cost: ["Grass", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
38
data/Sword & Shield/Shining Fates/SV015.ts
Normal file
38
data/Sword & Shield/Shining Fates/SV015.ts
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Flambino"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "MAHOU",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Flammèche"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Défaussez une Énergie de ce Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Fire"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Water",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
49
data/Sword & Shield/Shining Fates/SV016.ts
Normal file
49
data/Sword & Shield/Shining Fates/SV016.ts
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Lapyro"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Lee HyunJung",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Flambino"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Nitrocharge"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cherchez dans votre deck une carte Énergie Fire, puis attachez-la à ce Pokémon. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20,
|
||||||
|
cost: ["Fire"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Coup d’Pied Magnum"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 70,
|
||||||
|
cost: ["Fire", "Fire", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Water",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Shining Fates/SV017.ts
Normal file
54
data/Sword & Shield/Shining Fates/SV017.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Pyrobut"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Hitoshi Ariga",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 170,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Lapyro"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Libéro"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Une fois pendant votre tour, lorsque ce Pokémon se déplace de votre Banc vers le Poste Actif, vous pouvez lui attacher jusqu’à 2 cartes Énergie Fire de votre pile de défausse."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "But Enflammé"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Défaussez 2 Énergies de ce Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 190,
|
||||||
|
cost: ["Fire", "Fire", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Water",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
41
data/Sword & Shield/Shining Fates/SV018.ts
Normal file
41
data/Sword & Shield/Shining Fates/SV018.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Grillepattes"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Shigenori Negishi",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Morsure"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10,
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Fournaise"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 50,
|
||||||
|
cost: ["Fire", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Water",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
52
data/Sword & Shield/Shining Fates/SV019.ts
Normal file
52
data/Sword & Shield/Shining Fates/SV019.ts
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Scolocendre"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "SATOSHI NAKAI",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 130,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Grillepattes"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Flammes Mille-Pattes"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Pour chaque Énergie Fire attachée à ce Pokémon, défaussez la carte du dessus du deck de votre adversaire."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Fire"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Flammes Calcinantes"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 110,
|
||||||
|
cost: ["Fire", "Colorless", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Water",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
44
data/Sword & Shield/Shining Fates/SV020.ts
Normal file
44
data/Sword & Shield/Shining Fates/SV020.ts
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "M. Mime de Galar"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Masakazu Fukuda",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Protection"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance)."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Water"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Verglas"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Metal",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Shining Fates/SV021.ts
Normal file
54
data/Sword & Shield/Shining Fates/SV021.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "M. Glaquette de Galar"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Hideki Ishikawa",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "M. Mime de Galar"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Danse Entraînante"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Une fois pendant votre tour, vous pouvez échanger l’une des cartes Récompense de votre adversaire (actuellement face cachée) contre la carte du dessus de son deck. (Les cartes restent face cachée.)"
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Folle Aventure"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cette attaque inflige 20 dégâts pour chaque Pokémon dans votre pile de défausse qui a l’attaque Folle Aventure."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20×",
|
||||||
|
cost: ["Water", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Metal",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
45
data/Sword & Shield/Shining Fates/SV022.ts
Normal file
45
data/Sword & Shield/Shining Fates/SV022.ts
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Suicune"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Kagemaru Himeno",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Grosse Vague"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20,
|
||||||
|
cost: ["Water"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Boucle Aurore"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Ajoutez à votre main 2 Énergies Water attachées à ce Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 130,
|
||||||
|
cost: ["Water", "Water", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
38
data/Sword & Shield/Shining Fates/SV023.ts
Normal file
38
data/Sword & Shield/Shining Fates/SV023.ts
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Darumarond de Galar"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "SATOSHI NAKAI",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Poing Glace"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Water", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Metal",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
53
data/Sword & Shield/Shining Fates/SV024.ts
Normal file
53
data/Sword & Shield/Shining Fates/SV024.ts
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Darumacho de Galar"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "nagimiso",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 140,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Darumarond de Galar"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Blizzard"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cette attaque inflige aussi 10 dégâts à chacun des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 80,
|
||||||
|
cost: ["Water", "Colorless", "Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
fr: "Coup d’Boule Écrasant"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Coup d’Boule Écrasant."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 170,
|
||||||
|
cost: ["Water", "Water", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Metal",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Sword & Shield/Shining Fates/SV025.ts
Normal file
34
data/Sword & Shield/Shining Fates/SV025.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Larméléon"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Saya Tsuruta",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Pistolet à O"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20,
|
||||||
|
cost: ["Water"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
50
data/Sword & Shield/Shining Fates/SV026.ts
Normal file
50
data/Sword & Shield/Shining Fates/SV026.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Shining Fates'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Arrozard"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Ryuta Fuse",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
fr: "Larméléon"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
fr: "Affaires Louches"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l’un de vos Pokémon pendant votre tour, vous pouvez chercher dans votre deck une carte Dresseur, la révéler, puis l’ajouter à votre main. Mélangez ensuite votre deck."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
fr: "Goutte à Goutte"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Water", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user