mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
Merge branch 'master' of github.com:tcgdex/cards-database
This commit is contained in:
commit
484f714625
35
data/Sword & Shield/Battle Styles.ts
Normal file
35
data/Sword & Shield/Battle Styles.ts
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
import { Set } from '../../interfaces'
|
||||||
|
import serie from '../Sword & Shield'
|
||||||
|
|
||||||
|
const swsh1: Set = {
|
||||||
|
id: "swsh5",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Battle Styles",
|
||||||
|
fr: "Styles de combat"
|
||||||
|
,
|
||||||
|
},
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
|
cardCount: {
|
||||||
|
total: 216,
|
||||||
|
official: 202
|
||||||
|
},
|
||||||
|
|
||||||
|
releaseDate: "2020-03-19",
|
||||||
|
|
||||||
|
legal: {
|
||||||
|
standard: true,
|
||||||
|
expanded: true
|
||||||
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default swsh1
|
41
data/Sword & Shield/Battle Styles/1.ts
Normal file
41
data/Sword & Shield/Battle Styles/1.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bellsprout",
|
||||||
|
fr: "Chétiflor"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Sekio",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Venoshock",
|
||||||
|
fr: "Choc Venin"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If your opponent’s Active Pokémon is Poisoned, this attack does 40 more damage.",
|
||||||
|
fr: "Si le Pokémon Actif de votre adversaire est Empoisonné, cette attaque inflige 40 dégâts supplémentaires."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10+",
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
48
data/Sword & Shield/Battle Styles/10.ts
Normal file
48
data/Sword & Shield/Battle Styles/10.ts
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Durant",
|
||||||
|
fr: "Fermite"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "kodama",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Vise Grip",
|
||||||
|
fr: "Force Poigne"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20,
|
||||||
|
cost: ["Grass"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Devour",
|
||||||
|
fr: "Voracité"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "For each of your Durant in play, discard the top card of your opponent’s deck.",
|
||||||
|
fr: "Pour chacun de vos Fermite en jeu, défaussez la carte du dessus du deck de votre adversaire."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
59
data/Sword & Shield/Battle Styles/100.ts
Normal file
59
data/Sword & Shield/Battle Styles/100.ts
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Mawile",
|
||||||
|
fr: "Mysdibule"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "kawayoo",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Metal"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Powerful Vise",
|
||||||
|
fr: "Étau Costaud"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.",
|
||||||
|
fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20,
|
||||||
|
cost: ["Metal"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Piercing Strike",
|
||||||
|
fr: "Coup Transperçant"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack’s damage isn’t affected by Weakness or Resistance, or by any effects on your opponent’s Active Pokémon.",
|
||||||
|
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance ou tout autre effet en action sur le Pokémon Actif de votre adversaire."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 100,
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Grass",
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
41
data/Sword & Shield/Battle Styles/101.ts
Normal file
41
data/Sword & Shield/Battle Styles/101.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bronzor",
|
||||||
|
fr: "Archéomire"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Mizue",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Metal"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Ram",
|
||||||
|
fr: "Collision"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Metal", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Grass",
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
60
data/Sword & Shield/Battle Styles/102.ts
Normal file
60
data/Sword & Shield/Battle Styles/102.ts
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bronzong",
|
||||||
|
fr: "Archéodong"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Hasuno",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 110,
|
||||||
|
types: ["Metal"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Bronzor",
|
||||||
|
fr: "Archéomire"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Metal Transfer",
|
||||||
|
fr: "Transfert de Métal"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "As often as you like during your turn, you may move a Metal Energy from 1 of your Pokémon to another of your Pokémon.",
|
||||||
|
fr: "Autant de fois que vous le voulez pendant votre tour, vous pouvez déplacer une Énergie Metal de l’un de vos Pokémon vers un autre de vos Pokémon."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Zen Headbutt",
|
||||||
|
fr: "Psykoud’Boul"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 70,
|
||||||
|
cost: ["Metal", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Grass",
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
53
data/Sword & Shield/Battle Styles/103.ts
Normal file
53
data/Sword & Shield/Battle Styles/103.ts
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Pawniard",
|
||||||
|
fr: "Scalpion"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "otumami",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Metal"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Swords Dance",
|
||||||
|
fr: "Danse Lames"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "During your next turn, this Pokémon’s Slash attack does 70 more damage (before applying Weakness and Resistance).",
|
||||||
|
fr: "Pendant votre prochain tour, l’attaque Tranche de ce Pokémon inflige 70 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance)."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Slash",
|
||||||
|
fr: "Tranche"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10,
|
||||||
|
cost: ["Metal"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Grass",
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
59
data/Sword & Shield/Battle Styles/104.ts
Normal file
59
data/Sword & Shield/Battle Styles/104.ts
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bisharp",
|
||||||
|
fr: "Scalproie"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "tetsuya koizumi",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 110,
|
||||||
|
types: ["Metal"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Pawniard",
|
||||||
|
fr: "Scalpion"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Slash",
|
||||||
|
fr: "Tranche"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Steel Slice",
|
||||||
|
fr: "Acier Tranché"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If your opponent’s Active Pokémon is a Metal Pokémon, this attack does 90 more damage.",
|
||||||
|
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon Metal, cette attaque inflige 90 dégâts supplémentaires."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "90+",
|
||||||
|
cost: ["Metal", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Grass",
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
46
data/Sword & Shield/Battle Styles/105.ts
Normal file
46
data/Sword & Shield/Battle Styles/105.ts
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Honedge",
|
||||||
|
fr: "Monorpale"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "sowsow",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Metal"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Ambush",
|
||||||
|
fr: "Embuscade"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, this attack does 30 more damage.",
|
||||||
|
fr: "Lancez une pièce. Si c’est face, cette attaque inflige 30 dégâts supplémentaires."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10+",
|
||||||
|
cost: ["Metal"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Grass",
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
51
data/Sword & Shield/Battle Styles/106.ts
Normal file
51
data/Sword & Shield/Battle Styles/106.ts
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Doublade",
|
||||||
|
fr: "Dimoclès"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Miki Tanaka",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Metal"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Honedge",
|
||||||
|
fr: "Monorpale"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Cut Down",
|
||||||
|
fr: "Retranchement"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, discard an Energy from your opponent’s Active Pokémon.",
|
||||||
|
fr: "Lancez une pièce. Si c’est face, défaussez une Énergie du Pokémon Actif de votre adversaire."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 40,
|
||||||
|
cost: ["Metal", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Grass",
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
65
data/Sword & Shield/Battle Styles/107.ts
Normal file
65
data/Sword & Shield/Battle Styles/107.ts
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Aegislash",
|
||||||
|
fr: "Exagide"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "miki kudo",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 150,
|
||||||
|
types: ["Metal"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Doublade",
|
||||||
|
fr: "Dimoclès"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Stance Change",
|
||||||
|
fr: "Déclic Tactique"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Once during your turn, you may switch this Pokémon with an Aegislash in your hand. Any attached cards, damage counters, Special Conditions, turns in play, and any other effects remain on the new Pokémon.",
|
||||||
|
fr: "Une fois pendant votre tour, vous pouvez échanger ce Pokémon contre un Exagide de votre main. Les cartes attachées, les marqueurs de dégâts, les États Spéciaux, le nombre de tours en jeu et tous les autres effets restent sur le nouveau Pokémon."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Full Metal Blade",
|
||||||
|
fr: "Lame de Métal Pur"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard 2 Metal Energy from this Pokémon.",
|
||||||
|
fr: "Défaussez 2 Énergies Metal de ce Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 210,
|
||||||
|
cost: ["Metal", "Metal", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Grass",
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
65
data/Sword & Shield/Battle Styles/108.ts
Normal file
65
data/Sword & Shield/Battle Styles/108.ts
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Aegislash",
|
||||||
|
fr: "Exagide"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Naoyo Kimura",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 150,
|
||||||
|
types: ["Metal"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Doublade",
|
||||||
|
fr: "Dimoclès"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Stance Change",
|
||||||
|
fr: "Déclic Tactique"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Once during your turn, you may switch this Pokémon with an Aegislash in your hand. Any attached cards, damage counters, Special Conditions, turns in play, and any other effects remain on the new Pokémon.",
|
||||||
|
fr: "Une fois pendant votre tour, vous pouvez échanger ce Pokémon contre un Exagide de votre main. Les cartes attachées, les marqueurs de dégâts, les États Spéciaux, le nombre de tours en jeu et tous les autres effets restent sur le nouveau Pokémon."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Gigaton Bash",
|
||||||
|
fr: "Ruée Gigatonne"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "During your opponent’s next turn, prevent all damage done to this Pokémon by attacks from Pokémon VMAX.",
|
||||||
|
fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon-VMAX."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 70,
|
||||||
|
cost: ["Metal", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Grass",
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
59
data/Sword & Shield/Battle Styles/109.ts
Normal file
59
data/Sword & Shield/Battle Styles/109.ts
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Corviknight V",
|
||||||
|
fr: "Corvaillus V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "PLANETA Mochizuki",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 210,
|
||||||
|
types: ["Metal"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Clutch",
|
||||||
|
fr: "Serre"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "During your opponent’s next turn, the Defending Pokémon can’t retreat.",
|
||||||
|
fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Metal"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Sky Hurricane",
|
||||||
|
fr: "Vent Violent Céleste"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "During your next turn, this Pokémon can’t use Sky Hurricane.",
|
||||||
|
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Vent Violent Céleste."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 190,
|
||||||
|
cost: ["Metal", "Metal", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Grass",
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
41
data/Sword & Shield/Battle Styles/11.ts
Normal file
41
data/Sword & Shield/Battle Styles/11.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Scatterbug",
|
||||||
|
fr: "Lépidonille"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Midori Harada",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 40,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Surprise Attack",
|
||||||
|
fr: "Attaque Surprise"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If tails, this attack does nothing.",
|
||||||
|
fr: "Lancez une pièce. Si c’est pile, cette attaque ne fait rien."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
63
data/Sword & Shield/Battle Styles/110.ts
Normal file
63
data/Sword & Shield/Battle Styles/110.ts
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Corviknight VMAX",
|
||||||
|
fr: "Corvaillus VMAX"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "PLANETA Mochizuki",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 320,
|
||||||
|
types: ["Metal"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Corviknight V",
|
||||||
|
fr: "Corvaillus-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Lustrous Body",
|
||||||
|
fr: "Corps Lustré"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Prevent all effects of your opponent’s Pokémon’s Abilities done to this Pokémon.",
|
||||||
|
fr: "Évitez tous les effets des talents des Pokémon de votre adversaire infligés à ce Pokémon."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "G-Max Hurricane",
|
||||||
|
fr: "Vent Violent G-Max"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "During your next turn, this Pokémon can’t use G-Max Hurricane.",
|
||||||
|
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Vent Violent G-Max."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 240,
|
||||||
|
cost: ["Metal", "Metal", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Grass",
|
||||||
|
value: "-30"
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
41
data/Sword & Shield/Battle Styles/111.ts
Normal file
41
data/Sword & Shield/Battle Styles/111.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Spearow",
|
||||||
|
fr: "Piafabec"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Sekio",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Colorless"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Peck",
|
||||||
|
fr: "Picpic"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20,
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
44
data/Sword & Shield/Battle Styles/112.ts
Normal file
44
data/Sword & Shield/Battle Styles/112.ts
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fearow",
|
||||||
|
fr: "Rapasdepic"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Yukiko Baba",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Colorless"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Spearow",
|
||||||
|
fr: "Piafabec"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Drill Peck",
|
||||||
|
fr: "Bec Vrille"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 70,
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "-30"
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
44
data/Sword & Shield/Battle Styles/113.ts
Normal file
44
data/Sword & Shield/Battle Styles/113.ts
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Lickitung",
|
||||||
|
fr: "Excelangue"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "HYOGONOSUKE",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 110,
|
||||||
|
types: ["Colorless"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Tongue Slap",
|
||||||
|
fr: "Gros Coup de Langue"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 50,
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Hammer In",
|
||||||
|
fr: "Enfoncement"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 80,
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 4
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
58
data/Sword & Shield/Battle Styles/114.ts
Normal file
58
data/Sword & Shield/Battle Styles/114.ts
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Lickilicky",
|
||||||
|
fr: "Coudlangue"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Mina Nakai",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 140,
|
||||||
|
types: ["Colorless"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Lickitung",
|
||||||
|
fr: "Excelangue"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Selickt",
|
||||||
|
fr: "Séleclangue"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Your opponent chooses to discard the top 3 cards of their deck or to discard 3 cards from their hand.",
|
||||||
|
fr: "Votre adversaire choisit de défausser les 3 cartes du dessus de son deck ou 3 cartes de sa main."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Pitch",
|
||||||
|
fr: "Lancer"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Your opponent switches their Active Pokémon with 1 of their Benched Pokémon.",
|
||||||
|
fr: "Votre adversaire échange son Pokémon Actif contre l’un de ses Pokémon de Banc."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 100,
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 4
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
44
data/Sword & Shield/Battle Styles/115.ts
Normal file
44
data/Sword & Shield/Battle Styles/115.ts
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Glameow",
|
||||||
|
fr: "Chaglam"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Shigenori Negishi",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Colorless"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Cat Kick",
|
||||||
|
fr: "Coup d’Patte"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10,
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Claw Slash",
|
||||||
|
fr: "Tranch’Griffe"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 40,
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
53
data/Sword & Shield/Battle Styles/116.ts
Normal file
53
data/Sword & Shield/Battle Styles/116.ts
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Purugly",
|
||||||
|
fr: "Chaffreux"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Akira Komayama",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Colorless"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Glameow",
|
||||||
|
fr: "Chaglam"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Caturday",
|
||||||
|
fr: "Chamedi"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Draw 3 cards. If you do, this Pokémon is now Asleep.",
|
||||||
|
fr: "Piochez 3 cartes. Dans ce cas, ce Pokémon est maintenant Endormi."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Claw Slash",
|
||||||
|
fr: "Tranch’Griffe"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 120,
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Battle Styles/117.ts
Normal file
54
data/Sword & Shield/Battle Styles/117.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Stoutland V",
|
||||||
|
fr: "Mastouffe V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Eske Yoshinob",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 210,
|
||||||
|
types: ["Colorless"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Double Dip Fangs",
|
||||||
|
fr: "Crocs Redoublés"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If your opponent’s Basic Pokémon is Knocked Out by damage from this attack, take 1 more Prize card.",
|
||||||
|
fr: "Si le Pokémon de base de votre adversaire est mis K.O. par les dégâts de cette attaque, récupérez une carte Récompense supplémentaire."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 40,
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Wild Tackle",
|
||||||
|
fr: "Tacle Brutal"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This Pokémon also does 30 damage to itself.",
|
||||||
|
fr: "Ce Pokémon s’inflige aussi 30 dégâts."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 200,
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
55
data/Sword & Shield/Battle Styles/118.ts
Normal file
55
data/Sword & Shield/Battle Styles/118.ts
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bouffalant",
|
||||||
|
fr: "Frison"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "nagimiso",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Colorless"],
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Sap Sipper",
|
||||||
|
fr: "Herbivore"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This Pokémon’s attacks do 60 more damage to your opponent’s Grass Pokémon (before applying Weakness and Resistance).",
|
||||||
|
fr: "Les attaques de ce Pokémon infligent 60 dégâts supplémentaires aux Pokémon Grass de votre adversaire (avant application de la Faiblesse et de la Résistance)."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Head Charge",
|
||||||
|
fr: "Peignée"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This Pokémon also does 30 damage to itself.",
|
||||||
|
fr: "Ce Pokémon s’inflige aussi 30 dégâts."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 120,
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
53
data/Sword & Shield/Battle Styles/119.ts
Normal file
53
data/Sword & Shield/Battle Styles/119.ts
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Drampa",
|
||||||
|
fr: "Draïeul"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Eri Yamaki",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Colorless"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Call for Family",
|
||||||
|
fr: "Appel à la Famille"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Search your deck for up to 2 Basic Pokémon and put them onto your Bench. Then, shuffle your deck.",
|
||||||
|
fr: "Cherchez dans votre deck jusqu’à 2 Pokémon de base, puis placez-les sur votre Banc. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Spiral Rush",
|
||||||
|
fr: "Course en Spirale"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin until you get tails. This attack does 30 more damage for each heads.",
|
||||||
|
fr: "Lancez une pièce jusqu’à obtenir un côté pile. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30+",
|
||||||
|
cost: ["Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
53
data/Sword & Shield/Battle Styles/12.ts
Normal file
53
data/Sword & Shield/Battle Styles/12.ts
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Spewpa",
|
||||||
|
fr: "Pérégrain"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Sumiyoshi Kizuki",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Scatterbug",
|
||||||
|
fr: "Lépidonille"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Grass Cocooning",
|
||||||
|
fr: "Cocon Vert"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Heal 40 damage from this Pokémon.",
|
||||||
|
fr: "Soignez 40 dégâts de ce Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Bug Bite",
|
||||||
|
fr: "Piqûre"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 40,
|
||||||
|
cost: ["Grass", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
53
data/Sword & Shield/Battle Styles/120.ts
Normal file
53
data/Sword & Shield/Battle Styles/120.ts
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Indeedee",
|
||||||
|
fr: "Wimessir"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Saya Tsuruta",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Colorless"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Collect",
|
||||||
|
fr: "Collecte"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Draw 2 cards.",
|
||||||
|
fr: "Piochez 2 cartes."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Hand Kinesis",
|
||||||
|
fr: "Télékinésie en Main"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 10 damage for each card in your hand.",
|
||||||
|
fr: "Cette attaque inflige 10 dégâts pour chaque carte dans votre main."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10×",
|
||||||
|
cost: ["Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/121.ts
Normal file
24
data/Sword & Shield/Battle Styles/121.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bruno",
|
||||||
|
fr: "Aldo"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Ken Sugimori",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Shuffle your hand into your deck. Then, draw 4 cards. If any of your Pokémon were Knocked Out during your opponent’s last turn, draw 7 cards instead.",
|
||||||
|
fr: "Mélangez votre main avec votre deck. Ensuite, piochez 4 cartes. Si au moins l’un de vos Pokémon a été mis K.O. pendant le dernier tour de votre adversaire, piochez 7 cartes à la place."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/122.ts
Normal file
24
data/Sword & Shield/Battle Styles/122.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Camping Gear",
|
||||||
|
fr: "Kit de Camping"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "sadaji",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Search your deck for a card and put it into your hand. Then, shuffle your deck. Your turn ends.",
|
||||||
|
fr: "Cherchez dans votre deck une carte, puis ajoutez-la à votre main. Mélangez ensuite votre deck. Votre tour se termine."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Item"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/123.ts
Normal file
24
data/Sword & Shield/Battle Styles/123.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Cheryl",
|
||||||
|
fr: "Sara"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Ken Sugimori",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Heal all damage from each of your Evolution Pokémon. If you do, discard all Energy from the Pokémon that were healed in this way.",
|
||||||
|
fr: "Soignez tous les dégâts de chacun de vos Pokémon Évolutifs. Dans ce cas, défaussez toute l’Énergie des Pokémon soignés de cette façon."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/124.ts
Normal file
24
data/Sword & Shield/Battle Styles/124.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Energy Recycler",
|
||||||
|
fr: "Recycleur d’Énergie"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Toyste Beach",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Shuffle up to 5 basic Energy cards from your discard pile into your deck.",
|
||||||
|
fr: "Mélangez jusqu’à 5 cartes Énergie de base de votre pile de défausse avec votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Item"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/125.ts
Normal file
24
data/Sword & Shield/Battle Styles/125.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Escape Rope",
|
||||||
|
fr: "Corde Sortie"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "sadaji",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Each player switches their Active Pokémon with 1 of their Benched Pokémon. Your opponent switches first. (If a player does not have a Benched Pokémon, they don’t switch Pokémon.)",
|
||||||
|
fr: "Chaque joueur échange son Pokémon Actif contre l’un de ses Pokémon de Banc. Votre adversaire échange en premier. (Si l’un des joueurs n’a pas de Pokémon de Banc, il n’échange pas de Pokémon.)"
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Item"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/126.ts
Normal file
24
data/Sword & Shield/Battle Styles/126.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Exp. Share",
|
||||||
|
fr: "Multi Exp"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Toyste Beach",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "When your Active Pokémon is Knocked Out by damage from an attack from your opponent’s Pokémon, you may move a basic Energy from that Pokémon to the Pokémon this card is attached to.",
|
||||||
|
fr: "Lorsque votre Pokémon Actif est mis K.O. par les dégâts d’une attaque de l’un des Pokémon de votre adversaire, vous pouvez déplacer une Énergie de base de ce Pokémon-là vers le Pokémon auquel cette carte est attachée."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Tool"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/127.ts
Normal file
24
data/Sword & Shield/Battle Styles/127.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fan of Waves",
|
||||||
|
fr: "Éventail Houleux"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "sadaji",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Put a Special Energy attached to 1 of your opponent’s Pokémon on the bottom of their deck.",
|
||||||
|
fr: "Placez une Énergie spéciale attachée à l’un des Pokémon de votre adversaire en dessous du deck de celui-ci."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Item"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/128.ts
Normal file
24
data/Sword & Shield/Battle Styles/128.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Korrina’s Focus",
|
||||||
|
fr: "Concentration de Cornélia"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "kirisAki",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Draw cards until you have 6 cards in your hand.",
|
||||||
|
fr: "Piochez des cartes jusqu’à en avoir 6 en main."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/129.ts
Normal file
24
data/Sword & Shield/Battle Styles/129.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Level Ball",
|
||||||
|
fr: "Niveau Ball"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Ryo Ueda",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Search your deck for a Pokémon with 90 HP or less, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||||||
|
fr: "Cherchez dans votre deck un Pokémon avec 90 PV ou moins, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Item"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
53
data/Sword & Shield/Battle Styles/13.ts
Normal file
53
data/Sword & Shield/Battle Styles/13.ts
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Vivillon",
|
||||||
|
fr: "Prismillon"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "miki kudo",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Spewpa",
|
||||||
|
fr: "Pérégrain"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Vital Powder",
|
||||||
|
fr: "Poudre Vitale"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Heal all damage from 2 of your Benched Pokémon.",
|
||||||
|
fr: "Soignez tous les dégâts de 2 de vos Pokémon de Banc."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Gust",
|
||||||
|
fr: "Tornade"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 90,
|
||||||
|
cost: ["Grass", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/130.ts
Normal file
24
data/Sword & Shield/Battle Styles/130.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Phoebe",
|
||||||
|
fr: "Spectra"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "GAME FREAK inc.",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "During this turn, damage from your Pokémon VMAX’s attacks isn’t affected by any effects on your opponent’s Active Pokémon.",
|
||||||
|
fr: "Pendant ce tour, les dégâts des attaques de vos Pokémon-VMAX ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/131.ts
Normal file
24
data/Sword & Shield/Battle Styles/131.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Rapid Strike Scroll of Swirls",
|
||||||
|
fr: "Rouleau Tourbillons Mille Poings"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "5ban Graphics",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "The Rapid Strike Pokémon this card is attached to can use the attack on this card. (You still need the necessary Energy to use this attack.)\nFightingColorlessColorless Matchless Maelstrom\nThis attack does 30 damage to each of your opponent’s Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||||
|
fr: "Le Pokémon Mille Poings auquel cette carte est attachée peut utiliser l’attaque sur cette carte. (Vous avez toujours besoin de l’Énergie nécessaire pour utiliser cette attaque.)\nFightingColorlessColorless Maelström Redoutable\nCette attaque inflige 30 dégâts à chacun des Pokémon de votre adversaire.\n(N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)"
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Tool"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/132.ts
Normal file
24
data/Sword & Shield/Battle Styles/132.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Rapid Strike Style Mustard",
|
||||||
|
fr: "Mustar Style Mille Poings"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Naoki Saito",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "You can play this card only when it is the last card in your hand.\nPut a Rapid Strike Pokémon from your discard pile onto your Bench. If you do, draw 5 cards.",
|
||||||
|
fr: "Vous ne pouvez jouer cette carte que si c’est votre dernière carte en main.\nPlacez un Pokémon Mille Poings de votre pile de défausse sur votre Banc. Dans ce cas, piochez 5 cartes."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/133.ts
Normal file
24
data/Sword & Shield/Battle Styles/133.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Single Strike Scroll of Scorn",
|
||||||
|
fr: "Rouleau Acerbe Poing Final"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "5ban Graphics",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "The Single Strike Pokémon this card is attached to can use the attack on this card. (You still need the necessary Energy to use this attack.)\nFighting Furious Anger 10+\nThis attack does 10 more damage for each damage counter on this Pokémon.",
|
||||||
|
fr: "Le Pokémon Poing Final auquel cette carte est attachée peut utiliser l’attaque sur cette carte. (Vous avez toujours besoin de l’Énergie nécessaire pour utiliser cette attaque.)\nFighting Colère Furieuse 10+\nCette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts sur ce Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Tool"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/134.ts
Normal file
24
data/Sword & Shield/Battle Styles/134.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Single Strike Style Mustard",
|
||||||
|
fr: "Mustar Style Poing Final"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Mitsuhiro Arita",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "You can play this card only when it is the last card in your hand.\nSearch your deck for a Single Strike Pokémon and put it onto your Bench. Then, shuffle your deck. If you searched your deck in this way, draw 5 cards.",
|
||||||
|
fr: "Vous ne pouvez jouer cette carte que si c’est votre dernière carte en main.\nCherchez dans votre deck un Pokémon Poing Final, puis placez-le sur votre Banc. Mélangez ensuite votre deck. Si vous avez cherché dans votre deck de cette façon, piochez 5 cartes."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/135.ts
Normal file
24
data/Sword & Shield/Battle Styles/135.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Sordward & Shielbert",
|
||||||
|
fr: "Jean-Fleuret et Jean-Targe"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Hideki Ishikawa",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Choose a Trainer card from your discard pile. Then, ask your opponent if you may put it into your hand. If yes, put that card into your hand. If no, draw 3 cards.",
|
||||||
|
fr: "Choisissez une carte Dresseur dans votre pile de défausse. Ensuite, demandez à votre adversaire si vous pouvez l’ajouter à votre main. Si oui, ajoutez cette carte à votre main. Sinon, piochez 3 cartes."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/136.ts
Normal file
24
data/Sword & Shield/Battle Styles/136.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Tool Jammer",
|
||||||
|
fr: "Bloqueur d’Outil"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "inose yukie",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "As long as the Pokémon this card is attached to is in the Active Spot, Pokémon Tools attached to your opponent’s Active Pokémon have no effect, except for Tool Jammer.",
|
||||||
|
fr: "Tant que le Pokémon auquel cette carte est attachée est sur le Poste Actif, les Outils Pokémon attachés au Pokémon Actif de votre adversaire n’ont aucun effet, à l’exception de Bloqueur d’Outil."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Tool"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
22
data/Sword & Shield/Battle Styles/137.ts
Normal file
22
data/Sword & Shield/Battle Styles/137.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Tower of Darkness",
|
||||||
|
fr: "Tour des Ténèbres"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "5ban Graphics",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Once during each player’s turn, that player may draw 2 cards. In order to use this effect, that player must discard a Single Strike card from their hand.",
|
||||||
|
fr: "Une fois pendant le tour de chaque joueur, ce joueur peut piocher 2 cartes. Afin d’utiliser cet effet, ce joueur doit défausser une carte Poing Final de sa main."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
22
data/Sword & Shield/Battle Styles/138.ts
Normal file
22
data/Sword & Shield/Battle Styles/138.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Tower of Waters",
|
||||||
|
fr: "Tour de l’Eau"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "5ban Graphics",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "The Retreat Cost of each Rapid Strike Pokémon in play (both yours and your opponent’s) is ColorlessColorless less.",
|
||||||
|
fr: "Le Coût de Retraite de chaque Pokémon Mille Poings en jeu (les vôtres et ceux de votre adversaire) est diminué de ColorlessColorless."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/139.ts
Normal file
24
data/Sword & Shield/Battle Styles/139.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Urn of Vitality",
|
||||||
|
fr: "Urne de Vitalité"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Toyste Beach",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Shuffle up to 2 Single Strike Energy cards from your discard pile into your deck.",
|
||||||
|
fr: "Mélangez avec votre deck jusqu’à 2 cartes Énergie Poing Final de votre pile de défausse."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Item"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
41
data/Sword & Shield/Battle Styles/14.ts
Normal file
41
data/Sword & Shield/Battle Styles/14.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fomantis",
|
||||||
|
fr: "Mimantis"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Yukiko Baba",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Continuous Slash",
|
||||||
|
fr: "Tranche Sans Fin"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin until you get tails. This attack does 20 damage for each heads.",
|
||||||
|
fr: "Lancez une pièce jusqu’à obtenir un côté pile. Cette attaque inflige 20 dégâts pour chaque côté face."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20×",
|
||||||
|
cost: ["Grass"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
23
data/Sword & Shield/Battle Styles/140.ts
Normal file
23
data/Sword & Shield/Battle Styles/140.ts
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Rapid Strike Energy",
|
||||||
|
fr: "Énergie Mille Poings"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Energy",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This card can only be attached to a Rapid Strike Pokémon. If this card is attached to anything other than a Rapid Strike Pokémon, discard this card.\nAs long as this card is attached to a Pokémon, it provides 2 in any combination of Water Energy and Fighting Energy.",
|
||||||
|
fr: "Cette carte ne peut être attachée qu’à un Pokémon Mille Poings. Si cette carte est attachée à autre chose qu’un Pokémon Mille Poings, défaussez-la.\nTant que cette carte est attachée à un Pokémon, elle fournit une combinaison de 2 cartes Énergie Water et Énergie Fighting."
|
||||||
|
},
|
||||||
|
|
||||||
|
energyType: "Special"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
23
data/Sword & Shield/Battle Styles/141.ts
Normal file
23
data/Sword & Shield/Battle Styles/141.ts
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Single Strike Energy",
|
||||||
|
fr: "Énergie Poing Final"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Energy",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This card can only be attached to a Single Strike Pokémon. If this card is attached to anything other than a Single Strike Pokémon, discard this card.\nAs long as this card is attached to a Pokémon, it provides Fighting and Darkness Energy but provides only 1 Energy at a time, and the attacks of the Pokémon this card is attached to do 20 more damage to your opponent’s Active Pokémon (before applying Weakness and Resistance).",
|
||||||
|
fr: "Cette carte ne peut être attachée qu’à un Pokémon Poing Final. Si cette carte est attachée à autre chose qu’un Pokémon Poing Final, défaussez-la.\nTant que cette carte est attachée à un Pokémon, elle fournit de l’Énergie Fighting et Darkness (mais seulement une Énergie à la fois), et les attaques du Pokémon auquel cette carte est attachée infligent 20 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance)."
|
||||||
|
},
|
||||||
|
|
||||||
|
energyType: "Special"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
55
data/Sword & Shield/Battle Styles/142.ts
Normal file
55
data/Sword & Shield/Battle Styles/142.ts
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Kricketune V",
|
||||||
|
fr: "Mélokrik V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Satoshi Shirai",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 180,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Exciting Stage",
|
||||||
|
fr: "Scène Palpitante"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Once during your turn, you may draw cards until you have 3 cards in your hand. If this Pokémon is in the Active Spot, you may draw cards until you have 4 cards in your hand instead. You can’t use more than 1 Exciting Stage Ability each turn.",
|
||||||
|
fr: "Une fois pendant votre tour, vous pouvez piocher des cartes jusqu’à en avoir 3 en main. Si ce Pokémon est sur le Poste Actif, vous pouvez piocher des cartes jusqu’à en avoir 4 en main à la place. Vous ne pouvez pas utiliser plus d’un talent Scène Palpitante par tour."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "X-Scissor",
|
||||||
|
fr: "Plaie Croix"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, this attack does 80 more damage.",
|
||||||
|
fr: "Lancez une pièce. Si c’est face, cette attaque inflige 80 dégâts supplémentaires."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "80+",
|
||||||
|
cost: ["Grass", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
49
data/Sword & Shield/Battle Styles/143.ts
Normal file
49
data/Sword & Shield/Battle Styles/143.ts
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Flapple V",
|
||||||
|
fr: "Pomdrapi V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "PLANETA Mochizuki",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 190,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Sour Spit",
|
||||||
|
fr: "Rejet Acide"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "During your opponent’s next turn, the Defending Pokémon’s attacks cost ColorlessColorless more.",
|
||||||
|
fr: "Pendant le prochain tour de votre adversaire, les attaques du Pokémon Défenseur coûtent ColorlessColorless de plus."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20,
|
||||||
|
cost: ["Grass"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Wing Attack",
|
||||||
|
fr: "Cru-Ailes"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 120,
|
||||||
|
cost: ["Grass", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Battle Styles/144.ts
Normal file
54
data/Sword & Shield/Battle Styles/144.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Victini V",
|
||||||
|
fr: "Victini V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Saki Hayashiro",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 190,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "V Bullet",
|
||||||
|
fr: "Projectile-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If your opponent’s Active Pokémon is a Pokémon V, this attack does 50 more damage.",
|
||||||
|
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-V, cette attaque inflige 50 dégâts supplémentaires."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10+",
|
||||||
|
cost: ["Fire"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Flare Shot",
|
||||||
|
fr: "Tir Flambant"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard all Energy from this Pokémon.",
|
||||||
|
fr: "Défaussez toute l’Énergie de ce Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 120,
|
||||||
|
cost: ["Fire", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Water",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
55
data/Sword & Shield/Battle Styles/145.ts
Normal file
55
data/Sword & Shield/Battle Styles/145.ts
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Empoleon V",
|
||||||
|
fr: "Pingoléon V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Ayaka Yoshida",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 210,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Emperor’s Eyes",
|
||||||
|
fr: "Regard de l’Empereur"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "As long as this Pokémon is in the Active Spot, your opponent’s Basic Pokémon in play have no Abilities, except for Pokémon with a Rule Box (Pokémon V, Pokémon-GX, etc. have Rule Boxes).",
|
||||||
|
fr: "Tant que ce Pokémon est sur le Poste Actif, les Pokémon de base en jeu de votre adversaire n’ont pas de talent, à l’exception des Pokémon ayant un encadré Règle(les Pokémon-V, Pokémon-GX, etc. ont des encadrés Règle)."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Swirling Slice",
|
||||||
|
fr: "Coupe Tourbillonnante"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Move an Energy from this Pokémon to 1 of your Benched Pokémon.",
|
||||||
|
fr: "Déplacez une Énergie de ce Pokémon vers l’un de vos Pokémon de Banc."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 130,
|
||||||
|
cost: ["Water", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
55
data/Sword & Shield/Battle Styles/146.ts
Normal file
55
data/Sword & Shield/Battle Styles/146.ts
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Empoleon V",
|
||||||
|
fr: "Pingoléon V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "chibi",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 210,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Emperor’s Eyes",
|
||||||
|
fr: "Regard de l’Empereur"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "As long as this Pokémon is in the Active Spot, your opponent’s Basic Pokémon in play have no Abilities, except for Pokémon with a Rule Box (Pokémon V, Pokémon-GX, etc. have Rule Boxes).",
|
||||||
|
fr: "Tant que ce Pokémon est sur le Poste Actif, les Pokémon de base en jeu de votre adversaire n’ont pas de talent, à l’exception des Pokémon ayant un encadré Règle(les Pokémon-V, Pokémon-GX, etc. ont des encadrés Règle)."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Swirling Slice",
|
||||||
|
fr: "Coupe Tourbillonnante"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Move an Energy from this Pokémon to 1 of your Benched Pokémon.",
|
||||||
|
fr: "Déplacez une Énergie de ce Pokémon vers l’un de vos Pokémon de Banc."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 130,
|
||||||
|
cost: ["Water", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
49
data/Sword & Shield/Battle Styles/147.ts
Normal file
49
data/Sword & Shield/Battle Styles/147.ts
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Tapu Koko V",
|
||||||
|
fr: "Tokorico V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Eske Yoshinob",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 210,
|
||||||
|
types: ["Lightning"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Electro Ball",
|
||||||
|
fr: "Boule Élek"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 40,
|
||||||
|
cost: ["Lightning"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Spiral Thunder",
|
||||||
|
fr: "Tonnerre en Spirale"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 40 more damage for each Energy attached to all of your opponent’s Pokémon.",
|
||||||
|
fr: "Cette attaque inflige 40 dégâts supplémentaires pour chaque Énergie attachée à tous les Pokémon de votre adversaire."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20+",
|
||||||
|
cost: ["Lightning", "Lightning", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
59
data/Sword & Shield/Battle Styles/148.ts
Normal file
59
data/Sword & Shield/Battle Styles/148.ts
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Mimikyu V",
|
||||||
|
fr: "Mimiqui V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Eske Yoshinob",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 160,
|
||||||
|
types: ["Psychic"],
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Dummy Doll",
|
||||||
|
fr: "Poupée Mannequin"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "When you play this Pokémon from your hand onto your Bench during your turn, you may prevent all damage done to this Mimikyu V by attacks from your opponent’s Pokémon until the end of your opponent’s next turn.",
|
||||||
|
fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez éviter tous les dégâts infligés à ce Mimiqui-V par les attaques des Pokémon de votre adversaire jusqu’à la fin du prochain tour de celui-ci."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Jealous Eyes",
|
||||||
|
fr: "Regard Envieux"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Put 3 damage counters on your opponent’s Active Pokémon for each Prize card your opponent has taken.",
|
||||||
|
fr: "Placez 3 marqueurs de dégâts sur le Pokémon Actif de votre adversaire pour chaque carte Récompense que votre adversaire a récupérée."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Psychic"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Darkness",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
59
data/Sword & Shield/Battle Styles/149.ts
Normal file
59
data/Sword & Shield/Battle Styles/149.ts
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Necrozma V",
|
||||||
|
fr: "Necrozma V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "PLANETA Tsuji",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 220,
|
||||||
|
types: ["Psychic"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Prismatic Ray",
|
||||||
|
fr: "Rayon Prismatique"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack also does 20 damage to 2 of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||||
|
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: 20,
|
||||||
|
cost: ["Psychic"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Special Laser",
|
||||||
|
fr: "Laser Spécial"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If this Pokémon has any Special Energy attached, this attack does 120 more damage.",
|
||||||
|
fr: "Si de l’Énergie spéciale est attachée à ce Pokémon, cette attaque inflige 120 dégâts supplémentaires."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "100+",
|
||||||
|
cost: ["Psychic", "Psychic", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Darkness",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Battle Styles/15.ts
Normal file
54
data/Sword & Shield/Battle Styles/15.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Lurantis",
|
||||||
|
fr: "Floramantis"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Anesaki Dynamic",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Fomantis",
|
||||||
|
fr: "Mimantis"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Leaf Drain",
|
||||||
|
fr: "Feuille Sangsue"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Heal 30 damage from this Pokémon.",
|
||||||
|
fr: "Soignez 30 dégâts de ce Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Grass"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Solar Cutter",
|
||||||
|
fr: "Coupe Solaire"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 70,
|
||||||
|
cost: ["Grass", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
53
data/Sword & Shield/Battle Styles/150.ts
Normal file
53
data/Sword & Shield/Battle Styles/150.ts
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Single Strike Urshifu V",
|
||||||
|
fr: "Shifours Poing Final V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "PLANETA Mochizuki",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 220,
|
||||||
|
types: ["Fighting"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Laser Focus",
|
||||||
|
fr: "Affilage"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Search your deck for up to 2 Fighting Energy cards and attach them to this Pokémon. Then, shuffle your deck.",
|
||||||
|
fr: "Cherchez dans votre deck jusqu’à 2 cartes Énergie Fighting, puis attachez-les à ce Pokémon. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Fighting"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Impact Blow",
|
||||||
|
fr: "Coup à Impact"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "During your next turn, this Pokémon can’t use Impact Blow.",
|
||||||
|
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Coup à Impact."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 180,
|
||||||
|
cost: ["Fighting", "Fighting", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Psychic",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
53
data/Sword & Shield/Battle Styles/151.ts
Normal file
53
data/Sword & Shield/Battle Styles/151.ts
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Single Strike Urshifu V",
|
||||||
|
fr: "Shifours Poing Final V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "kawayoo",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 220,
|
||||||
|
types: ["Fighting"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Laser Focus",
|
||||||
|
fr: "Affilage"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Search your deck for up to 2 Fighting Energy cards and attach them to this Pokémon. Then, shuffle your deck.",
|
||||||
|
fr: "Cherchez dans votre deck jusqu’à 2 cartes Énergie Fighting, puis attachez-les à ce Pokémon. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Fighting"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Impact Blow",
|
||||||
|
fr: "Coup à Impact"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "During your next turn, this Pokémon can’t use Impact Blow.",
|
||||||
|
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Coup à Impact."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 180,
|
||||||
|
cost: ["Fighting", "Fighting", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Psychic",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
49
data/Sword & Shield/Battle Styles/152.ts
Normal file
49
data/Sword & Shield/Battle Styles/152.ts
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Rapid Strike Urshifu V",
|
||||||
|
fr: "Shifours Mille Poings V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "PLANETA Mochizuki",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 220,
|
||||||
|
types: ["Fighting"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Strafe",
|
||||||
|
fr: "Bombarder"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "You may switch this Pokémon with 1 of your Benched Pokémon.",
|
||||||
|
fr: "Vous pouvez échanger ce Pokémon contre l’un de vos Pokémon de Banc."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Fighting"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Hundred Furious Blows",
|
||||||
|
fr: "Multicoups Furieux"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 150,
|
||||||
|
cost: ["Fighting", "Fighting", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Psychic",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
49
data/Sword & Shield/Battle Styles/153.ts
Normal file
49
data/Sword & Shield/Battle Styles/153.ts
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Rapid Strike Urshifu V",
|
||||||
|
fr: "Shifours Mille Poings V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Ryota Murayama",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 220,
|
||||||
|
types: ["Fighting"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Strafe",
|
||||||
|
fr: "Bombarder"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "You may switch this Pokémon with 1 of your Benched Pokémon.",
|
||||||
|
fr: "Vous pouvez échanger ce Pokémon contre l’un de vos Pokémon de Banc."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Fighting"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Hundred Furious Blows",
|
||||||
|
fr: "Multicoups Furieux"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 150,
|
||||||
|
cost: ["Fighting", "Fighting", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Psychic",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Battle Styles/154.ts
Normal file
54
data/Sword & Shield/Battle Styles/154.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Tyranitar V",
|
||||||
|
fr: "Tyranocif V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Ayaka Yoshida",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 230,
|
||||||
|
types: ["Darkness"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Cragalanche",
|
||||||
|
fr: "Lapidalanche"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard the top 2 cards of your opponent’s deck.",
|
||||||
|
fr: "Défaussez les 2 cartes du dessus du deck de votre adversaire."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 60,
|
||||||
|
cost: ["Darkness", "Colorless", "Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Single Strike Crush",
|
||||||
|
fr: "Écrasement Poing Final"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard the top 4 cards of your deck.",
|
||||||
|
fr: "Défaussez les 4 cartes du dessus de votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 240,
|
||||||
|
cost: ["Darkness", "Darkness", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Grass",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Battle Styles/155.ts
Normal file
54
data/Sword & Shield/Battle Styles/155.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Tyranitar V",
|
||||||
|
fr: "Tyranocif V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "HYOGONOSUKE",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 230,
|
||||||
|
types: ["Darkness"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Cragalanche",
|
||||||
|
fr: "Lapidalanche"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard the top 2 cards of your opponent’s deck.",
|
||||||
|
fr: "Défaussez les 2 cartes du dessus du deck de votre adversaire."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 60,
|
||||||
|
cost: ["Darkness", "Colorless", "Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Single Strike Crush",
|
||||||
|
fr: "Écrasement Poing Final"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard the top 4 cards of your deck.",
|
||||||
|
fr: "Défaussez les 4 cartes du dessus de votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 240,
|
||||||
|
cost: ["Darkness", "Darkness", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Grass",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
59
data/Sword & Shield/Battle Styles/156.ts
Normal file
59
data/Sword & Shield/Battle Styles/156.ts
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Corviknight V",
|
||||||
|
fr: "Corvaillus V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "PLANETA Mochizuki",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 210,
|
||||||
|
types: ["Metal"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Clutch",
|
||||||
|
fr: "Serre"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "During your opponent’s next turn, the Defending Pokémon can’t retreat.",
|
||||||
|
fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Metal"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Sky Hurricane",
|
||||||
|
fr: "Vent Violent Céleste"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "During your next turn, this Pokémon can’t use Sky Hurricane.",
|
||||||
|
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Vent Violent Céleste."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 190,
|
||||||
|
cost: ["Metal", "Metal", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: "Grass",
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Battle Styles/157.ts
Normal file
54
data/Sword & Shield/Battle Styles/157.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Stoutland V",
|
||||||
|
fr: "Mastouffe V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Eske Yoshinob",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 210,
|
||||||
|
types: ["Colorless"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Double Dip Fangs",
|
||||||
|
fr: "Crocs Redoublés"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If your opponent’s Basic Pokémon is Knocked Out by damage from this attack, take 1 more Prize card.",
|
||||||
|
fr: "Si le Pokémon de base de votre adversaire est mis K.O. par les dégâts de cette attaque, récupérez une carte Récompense supplémentaire."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 40,
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Wild Tackle",
|
||||||
|
fr: "Tacle Brutal"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This Pokémon also does 30 damage to itself.",
|
||||||
|
fr: "Ce Pokémon s’inflige aussi 30 dégâts."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 200,
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fighting",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/158.ts
Normal file
24
data/Sword & Shield/Battle Styles/158.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bruno",
|
||||||
|
fr: "Aldo"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Ryuta Fuse",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Shuffle your hand into your deck. Then, draw 4 cards. If any of your Pokémon were Knocked Out during your opponent’s last turn, draw 7 cards instead.",
|
||||||
|
fr: "Mélangez votre main avec votre deck. Ensuite, piochez 4 cartes. Si au moins l’un de vos Pokémon a été mis K.O. pendant le dernier tour de votre adversaire, piochez 7 cartes à la place."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/159.ts
Normal file
24
data/Sword & Shield/Battle Styles/159.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Cheryl",
|
||||||
|
fr: "Sara"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Yuu Nishida",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Heal all damage from each of your Evolution Pokémon. If you do, discard all Energy from the Pokémon that were healed in this way.",
|
||||||
|
fr: "Soignez tous les dégâts de chacun de vos Pokémon Évolutifs. Dans ce cas, défaussez toute l’Énergie des Pokémon soignés de cette façon."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Battle Styles/16.ts
Normal file
54
data/Sword & Shield/Battle Styles/16.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Tapu Bulu",
|
||||||
|
fr: "Tokotoro"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Ryota Murayama",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 130,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Push Down",
|
||||||
|
fr: "Recul"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Your opponent switches their Active Pokémon with 1 of their Benched Pokémon.",
|
||||||
|
fr: "Votre adversaire échange son Pokémon Actif contre l’un de ses Pokémon de Banc."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20,
|
||||||
|
cost: ["Grass"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Nature’s Judgment",
|
||||||
|
fr: "Jugement de la Nature"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "You may discard all Energy from this Pokémon. If you do, this attack does 80 more damage.",
|
||||||
|
fr: "Vous pouvez défausser toute l’Énergie de ce Pokémon. Dans ce cas, cette attaque inflige 80 dégâts supplémentaires."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "80+",
|
||||||
|
cost: ["Grass", "Grass", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/160.ts
Normal file
24
data/Sword & Shield/Battle Styles/160.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Korrina’s Focus",
|
||||||
|
fr: "Concentration de Cornélia"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Taira Akitsu",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Draw cards until you have 6 cards in your hand.",
|
||||||
|
fr: "Piochez des cartes jusqu’à en avoir 6 en main."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/161.ts
Normal file
24
data/Sword & Shield/Battle Styles/161.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Phoebe",
|
||||||
|
fr: "Spectra"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Kagemaru Himeno",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "During this turn, damage from your Pokémon VMAX’s attacks isn’t affected by any effects on your opponent’s Active Pokémon.",
|
||||||
|
fr: "Pendant ce tour, les dégâts des attaques de vos Pokémon-VMAX ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/162.ts
Normal file
24
data/Sword & Shield/Battle Styles/162.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Rapid Strike Style Mustard",
|
||||||
|
fr: "Mustar Style Mille Poings"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Naoki Saito",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "You can play this card only when it is the last card in your hand.\nPut a Rapid Strike Pokémon from your discard pile onto your Bench. If you do, draw 5 cards.",
|
||||||
|
fr: "Vous ne pouvez jouer cette carte que si c’est votre dernière carte en main.\nPlacez un Pokémon Mille Poings de votre pile de défausse sur votre Banc. Dans ce cas, piochez 5 cartes."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
24
data/Sword & Shield/Battle Styles/163.ts
Normal file
24
data/Sword & Shield/Battle Styles/163.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Single Strike Style Mustard",
|
||||||
|
fr: "Mustar Style Poing Final"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Mitsuhiro Arita",
|
||||||
|
rarity: "Ultra Rare",
|
||||||
|
category: "Trainer",
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "You can play this card only when it is the last card in your hand.\nSearch your deck for a Single Strike Pokémon and put it onto your Bench. Then, shuffle your deck. If you searched your deck in this way, draw 5 cards.",
|
||||||
|
fr: "Vous ne pouvez jouer cette carte que si c’est votre dernière carte en main.\nCherchez dans votre deck un Pokémon Poing Final, puis placez-le sur votre Banc. Mélangez ensuite votre deck. Si vous avez cherché dans votre deck de cette façon, piochez 5 cartes."
|
||||||
|
},
|
||||||
|
|
||||||
|
trainerType: "Supporter"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Battle Styles/168.ts
Normal file
54
data/Sword & Shield/Battle Styles/168.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Single Strike Urshifu VMAX",
|
||||||
|
fr: "Shifours Poing Final VMAX"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Kinu Nishimura",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 330,
|
||||||
|
types: ["Fighting"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Single Strike Urshifu V",
|
||||||
|
fr: "Shifours Poing Final-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Beatdown",
|
||||||
|
fr: "Dérouillée"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 100,
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "G-Max One Blow",
|
||||||
|
fr: "Coup Final G-Max"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard all Energy from this Pokémon. This attack’s damage isn’t affected by any effects on your opponent’s Active Pokémon.",
|
||||||
|
fr: "Défaussez toute l’Énergie de ce Pokémon. Les dégâts de cette attaque ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 270,
|
||||||
|
cost: ["Fighting", "Fighting", "Fighting", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Psychic",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
36
data/Sword & Shield/Battle Styles/17.ts
Normal file
36
data/Sword & Shield/Battle Styles/17.ts
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Blipbug",
|
||||||
|
fr: "Larvadar"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Masakazu Fukuda",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Stampede",
|
||||||
|
fr: "Ruée"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10,
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
58
data/Sword & Shield/Battle Styles/170.ts
Normal file
58
data/Sword & Shield/Battle Styles/170.ts
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Rapid Strike Urshifu VMAX",
|
||||||
|
fr: "Shifours Mille Poings VMAX"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "KIYOTAKA OSHIYAMA",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 330,
|
||||||
|
types: ["Fighting"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Rapid Strike Urshifu V",
|
||||||
|
fr: "Shifours Mille Poings-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Gale Thrust",
|
||||||
|
fr: "Coup d’Bourrasque"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If this Pokémon moved from your Bench to the Active Spot this turn, this attack does 120 more damage.",
|
||||||
|
fr: "Si ce Pokémon a été déplacé de votre Banc vers le Poste Actif pendant ce tour, cette attaque inflige 120 dégâts supplémentaires."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30+",
|
||||||
|
cost: ["Fighting"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "G-Max Rapid Flow",
|
||||||
|
fr: "Multicoup G-Max"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard all Energy from this Pokémon. This attack does 120 damage to 2 of your opponent’s Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||||
|
fr: "Défaussez toute l’Énergie de ce Pokémon. Cette attaque inflige 120 dégâts à 2 des Pokémon de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)"
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Fighting", "Fighting", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Psychic",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
49
data/Sword & Shield/Battle Styles/18.ts
Normal file
49
data/Sword & Shield/Battle Styles/18.ts
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Flapple V",
|
||||||
|
fr: "Pomdrapi V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "PLANETA Mochizuki",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 190,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Sour Spit",
|
||||||
|
fr: "Rejet Acide"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "During your opponent’s next turn, the Defending Pokémon’s attacks cost ColorlessColorless more.",
|
||||||
|
fr: "Pendant le prochain tour de votre adversaire, les attaques du Pokémon Défenseur coûtent ColorlessColorless de plus."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20,
|
||||||
|
cost: ["Grass"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Wing Attack",
|
||||||
|
fr: "Cru-Ailes"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 120,
|
||||||
|
cost: ["Grass", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
46
data/Sword & Shield/Battle Styles/19.ts
Normal file
46
data/Sword & Shield/Battle Styles/19.ts
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Flapple VMAX",
|
||||||
|
fr: "Pomdrapi VMAX"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "PLANETA Tsuji",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 320,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Flapple V",
|
||||||
|
fr: "Pomdrapi-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "G-Max Rolling",
|
||||||
|
fr: "Roulade G-Max"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 10 less damage for each damage counter on this Pokémon.",
|
||||||
|
fr: "Cette attaque inflige 10 dégâts de moins pour chaque marqueur de dégâts sur ce Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "250-",
|
||||||
|
cost: ["Grass", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
55
data/Sword & Shield/Battle Styles/2.ts
Normal file
55
data/Sword & Shield/Battle Styles/2.ts
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Weepinbell",
|
||||||
|
fr: "Boustiflor"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Shibuzoh.",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Bellsprout",
|
||||||
|
fr: "Chétiflor"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Dangerous Mucus",
|
||||||
|
fr: "Mucus Dangereux"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may make your opponent’s Active Pokémon Burned and Poisoned.",
|
||||||
|
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l’un de vos Pokémon pendant votre tour, vous pouvez laisser le Pokémon Actif de votre adversaire Brûlé et Empoisonné."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Vine Whip",
|
||||||
|
fr: "Fouet Lianes"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 40,
|
||||||
|
cost: ["Grass", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Battle Styles/20.ts
Normal file
54
data/Sword & Shield/Battle Styles/20.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Entei",
|
||||||
|
fr: "Entei"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "kodama",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 130,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Heat Dash",
|
||||||
|
fr: "Bouffée de Chaleur"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "You may attach a Fire Energy card from your hand to this Pokémon.",
|
||||||
|
fr: "Vous pouvez attacher une carte Énergie Fire de votre main à ce Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Fire"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Fire Fang",
|
||||||
|
fr: "Crocs Feu"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Your opponent’s Active Pokémon is now Burned.",
|
||||||
|
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 90,
|
||||||
|
cost: ["Fire", "Fire", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Water",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Battle Styles/21.ts
Normal file
54
data/Sword & Shield/Battle Styles/21.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Victini V",
|
||||||
|
fr: "Victini V"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Kagemaru Himeno",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 190,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "V Bullet",
|
||||||
|
fr: "Projectile-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If your opponent’s Active Pokémon is a Pokémon V, this attack does 50 more damage.",
|
||||||
|
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-V, cette attaque inflige 50 dégâts supplémentaires."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10+",
|
||||||
|
cost: ["Fire"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Flare Shot",
|
||||||
|
fr: "Tir Flambant"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard all Energy from this Pokémon.",
|
||||||
|
fr: "Défaussez toute l’Énergie de ce Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 120,
|
||||||
|
cost: ["Fire", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Water",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
58
data/Sword & Shield/Battle Styles/22.ts
Normal file
58
data/Sword & Shield/Battle Styles/22.ts
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Victini VMAX",
|
||||||
|
fr: "Victini VMAX"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "PLANETA Mochizuki",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 310,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Victini V",
|
||||||
|
fr: "Victini-V"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Spreading Flames",
|
||||||
|
fr: "Flammes Rampantes"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Attach up to 3 Fire Energy cards from your discard pile to your Pokémon in any way you like.",
|
||||||
|
fr: "Attachez jusqu’à 3 cartes Énergie Fire de votre pile de défausse à vos Pokémon comme il vous plaît."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Max Victory",
|
||||||
|
fr: "Victoiromax"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If your opponent’s Active Pokémon is a Pokémon V, this attack does 120 more damage.",
|
||||||
|
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-V, cette attaque inflige 120 dégâts supplémentaires."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "100+",
|
||||||
|
cost: ["Fire", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Water",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
44
data/Sword & Shield/Battle Styles/23.ts
Normal file
44
data/Sword & Shield/Battle Styles/23.ts
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Tepig",
|
||||||
|
fr: "Gruikui"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "You Iribi",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Ram",
|
||||||
|
fr: "Collision"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20,
|
||||||
|
cost: ["Colorless", "Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Combustion",
|
||||||
|
fr: "Fournaise"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 50,
|
||||||
|
cost: ["Fire", "Fire", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Water",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
49
data/Sword & Shield/Battle Styles/24.ts
Normal file
49
data/Sword & Shield/Battle Styles/24.ts
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Pignite",
|
||||||
|
fr: "Grotichon"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "tetsuya koizumi",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 100,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Tepig",
|
||||||
|
fr: "Gruikui"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Ram",
|
||||||
|
fr: "Collision"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Colorless", "Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Combustion",
|
||||||
|
fr: "Fournaise"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 90,
|
||||||
|
cost: ["Fire", "Fire", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Water",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
55
data/Sword & Shield/Battle Styles/25.ts
Normal file
55
data/Sword & Shield/Battle Styles/25.ts
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Emboar",
|
||||||
|
fr: "Roitiflam"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Anesaki Dynamic",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 180,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Pignite",
|
||||||
|
fr: "Grotichon"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fighting Fury Stance",
|
||||||
|
fr: "Position de Furie Combative"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Your Single Strike Pokémon’s attacks do 30 more damage to your opponent’s Active Pokémon (before applying Weakness and Resistance).",
|
||||||
|
fr: "Les attaques de vos Pokémon Poing Final infligent 30 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance)."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Heat Crash",
|
||||||
|
fr: "Tacle Feu"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 130,
|
||||||
|
cost: ["Fire", "Fire", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Water",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 4
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
49
data/Sword & Shield/Battle Styles/26.ts
Normal file
49
data/Sword & Shield/Battle Styles/26.ts
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Heatmor",
|
||||||
|
fr: "Aflamanoir"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Miki Tanaka",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Flare",
|
||||||
|
fr: "Flamboiement"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20,
|
||||||
|
cost: ["Fire"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Burning Licks",
|
||||||
|
fr: "Léchures Brûlantes"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip 2 coins. For each heads, discard an Energy from your opponent’s Active Pokémon.",
|
||||||
|
fr: "Lancez 2 pièces. Pour chaque côté face, défaussez une Énergie du Pokémon Actif de votre adversaire."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 70,
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Water",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
40
data/Sword & Shield/Battle Styles/27.ts
Normal file
40
data/Sword & Shield/Battle Styles/27.ts
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Salandit",
|
||||||
|
fr: "Tritox"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Yuka Morii",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Call Sign",
|
||||||
|
fr: "Signe d’Appel"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Search your deck for a Pokémon, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||||||
|
fr: "Cherchez dans votre deck un Pokémon, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Fire"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Water",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
58
data/Sword & Shield/Battle Styles/28.ts
Normal file
58
data/Sword & Shield/Battle Styles/28.ts
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Salazzle",
|
||||||
|
fr: "Malamandre"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Shibuzoh.",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Salandit",
|
||||||
|
fr: "Tritox"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Perplex",
|
||||||
|
fr: "Affolement"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Your opponent’s Active Pokémon is now Confused.",
|
||||||
|
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Fire"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Derisive Roasting",
|
||||||
|
fr: "Raillerie Roussie"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 90 damage for each Special Condition affecting your opponent’s Active Pokémon.",
|
||||||
|
fr: "Cette attaque inflige 90 dégâts pour chaque État Spécial affectant le Pokémon Actif de votre adversaire."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "90×",
|
||||||
|
cost: ["Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Water",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
41
data/Sword & Shield/Battle Styles/29.ts
Normal file
41
data/Sword & Shield/Battle Styles/29.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Sizzlipede",
|
||||||
|
fr: "Grillepattes"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Yuka Morii",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Searing Flame",
|
||||||
|
fr: "Flammes Calcinantes"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Your opponent’s Active Pokémon is now Burned.",
|
||||||
|
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20,
|
||||||
|
cost: ["Fire", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Water",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Battle Styles/3.ts
Normal file
54
data/Sword & Shield/Battle Styles/3.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Victreebel",
|
||||||
|
fr: "Empiflor"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Tika Matsuno",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 150,
|
||||||
|
types: ["Grass"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Weepinbell",
|
||||||
|
fr: "Boustiflor"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Panic Vine",
|
||||||
|
fr: "Liane en Panique"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Your opponent’s Active Pokémon is now Confused. During your opponent’s next turn, that Pokémon can’t retreat.",
|
||||||
|
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus. Pendant le prochain tour de votre adversaire, ce Pokémon-là ne peut pas battre en retraite."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 40,
|
||||||
|
cost: ["Grass"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Solar Beam",
|
||||||
|
fr: "Lance-Soleil"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 120,
|
||||||
|
cost: ["Grass", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Fire",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
60
data/Sword & Shield/Battle Styles/30.ts
Normal file
60
data/Sword & Shield/Battle Styles/30.ts
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Centiskorch",
|
||||||
|
fr: "Scolocendre"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Souichirou Gunjima",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 130,
|
||||||
|
types: ["Fire"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Sizzlipede",
|
||||||
|
fr: "Grillepattes"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Overheater",
|
||||||
|
fr: "Surchauffeur"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Whenever your opponent flips a coin for their Burned Pokémon during Pokémon Checkup, it doesn’t recover from that Special Condition even if the result is heads.",
|
||||||
|
fr: "Chaque fois que votre adversaire lance une pièce pour son Pokémon Brûlé pendant le Contrôle Pokémon, celui-ci ne guérit pas de cet État Spécial même si le résultat est face."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Bursting Inferno",
|
||||||
|
fr: "Enfer Explosif"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Your opponent’s Active Pokémon is now Burned.",
|
||||||
|
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 130,
|
||||||
|
cost: ["Fire", "Fire", "Fire", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Water",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
41
data/Sword & Shield/Battle Styles/31.ts
Normal file
41
data/Sword & Shield/Battle Styles/31.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Horsea",
|
||||||
|
fr: "Hypotrempe"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Anesaki Dynamic",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Smokescreen",
|
||||||
|
fr: "Brouillard"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "During your opponent’s next turn, if the Defending Pokémon tries to attack, your opponent flips a coin. If tails, that attack doesn’t happen.",
|
||||||
|
fr: "Pendant le prochain tour de votre adversaire, si le Pokémon Défenseur essaie d’attaquer, votre adversaire lance une pièce. Si c’est pile, l’attaque n’est pas lancée."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10,
|
||||||
|
cost: ["Water"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
41
data/Sword & Shield/Battle Styles/32.ts
Normal file
41
data/Sword & Shield/Battle Styles/32.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Seadra",
|
||||||
|
fr: "Hypocéan"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "0313",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Horsea",
|
||||||
|
fr: "Hypotrempe"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Water Gun",
|
||||||
|
fr: "Pistolet à O"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 40,
|
||||||
|
cost: ["Water"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
60
data/Sword & Shield/Battle Styles/33.ts
Normal file
60
data/Sword & Shield/Battle Styles/33.ts
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Kingdra",
|
||||||
|
fr: "Hyporoi"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "kawayoo",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 150,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Seadra",
|
||||||
|
fr: "Hypocéan"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Deep Sea King",
|
||||||
|
fr: "Roi des Abysses"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "When your Active Pokémon is Knocked Out by damage from an attack from your opponent’s Pokémon, you may move any amount of Water Energy from that Pokémon to this Pokémon.",
|
||||||
|
fr: "Lorsque votre Pokémon Actif est mis K.O. par les dégâts d’une attaque de l’un des Pokémon de votre adversaire, vous pouvez déplacer autant d’Énergie Water que vous le voulez de ce Pokémon-là vers celui-ci."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Aqua Burst",
|
||||||
|
fr: "Éclat Aquatique"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 40 damage for each Water Energy attached to this Pokémon.",
|
||||||
|
fr: "Cette attaque inflige 40 dégâts pour chaque Énergie Water attachée à ce Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "40×",
|
||||||
|
cost: ["Water"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
48
data/Sword & Shield/Battle Styles/34.ts
Normal file
48
data/Sword & Shield/Battle Styles/34.ts
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Galarian Mr. Mime",
|
||||||
|
fr: "M. Mime de Galar"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "kodama",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Pound",
|
||||||
|
fr: "Écras’Face"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10,
|
||||||
|
cost: ["Water"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Find It",
|
||||||
|
fr: "Trifouiller"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Search your deck for an Item card, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||||||
|
fr: "Cherchez dans votre deck une carte Objet, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck."
|
||||||
|
},
|
||||||
|
|
||||||
|
cost: ["Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Metal",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Battle Styles/35.ts
Normal file
54
data/Sword & Shield/Battle Styles/35.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Galarian Mr. Rime",
|
||||||
|
fr: "M. Glaquette de Galar"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "HYOGONOSUKE",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 110,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Galarian Mr. Mime",
|
||||||
|
fr: "M. Mime de Galar"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Ball Juggling",
|
||||||
|
fr: "Jeu de Balls"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard any number of Item cards that have the word “Ball” in their name from your hand. This attack does 40 more damage for each card you discarded in this way.",
|
||||||
|
fr: "Défaussez de votre main autant de cartes Objet que vous le souhaitez dont le nom contient le mot « Ball ». Cette attaque inflige 40 dégâts supplémentaires pour chaque carte défaussée de cette façon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10+",
|
||||||
|
cost: ["Colorless", "Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Frost Smash",
|
||||||
|
fr: "Impact Glacial"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 80,
|
||||||
|
cost: ["Water", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Metal",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
44
data/Sword & Shield/Battle Styles/36.ts
Normal file
44
data/Sword & Shield/Battle Styles/36.ts
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Remoraid",
|
||||||
|
fr: "Rémoraid"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "HYOGONOSUKE",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Water Gun",
|
||||||
|
fr: "Pistolet à O"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 10,
|
||||||
|
cost: ["Water"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Sharp Fin",
|
||||||
|
fr: "Aileron Aiguisé"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 20,
|
||||||
|
cost: ["Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
55
data/Sword & Shield/Battle Styles/37.ts
Normal file
55
data/Sword & Shield/Battle Styles/37.ts
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Octillery",
|
||||||
|
fr: "Octillery"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Souichirou Gunjima",
|
||||||
|
rarity: "Rare",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 110,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Remoraid",
|
||||||
|
fr: "Rémoraid"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Rapid Strike Search",
|
||||||
|
fr: "Recherche à Mille Poings"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Once during your turn, you may search your deck for a Rapid Strike card, reveal it, and put it into your hand. Then, shuffle your deck. You can’t use more than 1 Rapid Strike Search Ability each turn.",
|
||||||
|
fr: "Une fois pendant votre tour, vous pouvez chercher dans votre deck une carte Mille Poings, la montrer, puis l’ajouter à votre main. Mélangez ensuite votre deck. Vous ne pouvez utiliser qu’un talent Recherche à Mille Poings par tour."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Waterfall",
|
||||||
|
fr: "Cascade"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 50,
|
||||||
|
cost: ["Water", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
41
data/Sword & Shield/Battle Styles/38.ts
Normal file
41
data/Sword & Shield/Battle Styles/38.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Corphish",
|
||||||
|
fr: "Écrapince"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "chibi",
|
||||||
|
rarity: "Common",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Bubble Beam",
|
||||||
|
fr: "Bulles d’O"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.",
|
||||||
|
fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 30,
|
||||||
|
cost: ["Water", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
54
data/Sword & Shield/Battle Styles/39.ts
Normal file
54
data/Sword & Shield/Battle Styles/39.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { Card } from '../../../interfaces'
|
||||||
|
import Set from '../Battle Styles'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Crawdaunt",
|
||||||
|
fr: "Colhomard"
|
||||||
|
},
|
||||||
|
|
||||||
|
illustrator: "Hasegawa Saki",
|
||||||
|
rarity: "Uncommon",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 130,
|
||||||
|
types: ["Water"],
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Corphish",
|
||||||
|
fr: "Écrapince"
|
||||||
|
},
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
name: {
|
||||||
|
en: "Knock Off",
|
||||||
|
fr: "Sabotage"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard a random card from your opponent’s hand.",
|
||||||
|
fr: "Défaussez au hasard une carte de la main de votre adversaire."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 60,
|
||||||
|
cost: ["Water", "Colorless", "Colorless"]
|
||||||
|
}, {
|
||||||
|
name: {
|
||||||
|
en: "Crabhammer",
|
||||||
|
fr: "Pince-Masse"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: 140,
|
||||||
|
cost: ["Water", "Water", "Colorless", "Colorless"]
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: "Lightning",
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
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