mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
Merge branch 'master' of git.delta-wings.net:tcgdex/db
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
commit
d1d0836b80
82
cards/swsh/swsh1/203.ts
Normal file
82
cards/swsh/swsh1/203.ts
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
import Card from '../../../interfaces/Card'
|
||||||
|
import Type from '../../../interfaces/Type'
|
||||||
|
import Tag from '../../../interfaces/Tag'
|
||||||
|
import Rarity from '../../../interfaces/Rarity'
|
||||||
|
import AbilityType from '../../../interfaces/AbilityType'
|
||||||
|
import Category from '../../../interfaces/Category'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
|
||||||
|
// ids
|
||||||
|
id: "swsh1-203",
|
||||||
|
localId: 203,
|
||||||
|
|
||||||
|
dexId: 131,
|
||||||
|
|
||||||
|
// Card informations
|
||||||
|
name: {
|
||||||
|
en: "Lapras VMAX",
|
||||||
|
fr: "Lokhlass VMAX",
|
||||||
|
},
|
||||||
|
|
||||||
|
hp: 320,
|
||||||
|
|
||||||
|
type: [
|
||||||
|
Type.WATER,
|
||||||
|
],
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Lapras V",
|
||||||
|
fr: "Lokhlass V",
|
||||||
|
},
|
||||||
|
|
||||||
|
tags: [
|
||||||
|
Tag.VMAX,
|
||||||
|
],
|
||||||
|
|
||||||
|
illustrator: {
|
||||||
|
id: 39,
|
||||||
|
name: "5ban Graphics"
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: [
|
||||||
|
Type.COLORLESS,
|
||||||
|
Type.COLORLESS,
|
||||||
|
Type.COLORLESS
|
||||||
|
],
|
||||||
|
name: {
|
||||||
|
en: "G-Max Pump",
|
||||||
|
fr: "Pompe G-Max",
|
||||||
|
},
|
||||||
|
text: {
|
||||||
|
en: "This attack does 30 more damage for each Water Energy attached to this Pokémon.",
|
||||||
|
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie Water attachée à ce Pokémon.",
|
||||||
|
},
|
||||||
|
damage: "90+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: Type.LIGHTNING,
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
|
||||||
|
rarity: Rarity.RareRainbow,
|
||||||
|
|
||||||
|
category: Category.POKEMON,
|
||||||
|
|
||||||
|
set: {
|
||||||
|
name: "Sword & Shield",
|
||||||
|
code: "swsh1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
79
cards/swsh/swsh1/204.ts
Normal file
79
cards/swsh/swsh1/204.ts
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
import Card from '../../../interfaces/Card'
|
||||||
|
import Type from '../../../interfaces/Type'
|
||||||
|
import Tag from '../../../interfaces/Tag'
|
||||||
|
import Rarity from '../../../interfaces/Rarity'
|
||||||
|
import AbilityType from '../../../interfaces/AbilityType'
|
||||||
|
import Category from '../../../interfaces/Category'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
|
||||||
|
// ids
|
||||||
|
id: "swsh1-204",
|
||||||
|
localId: 204,
|
||||||
|
|
||||||
|
// Card informations
|
||||||
|
name: {
|
||||||
|
en: "Morpeko VMAX",
|
||||||
|
fr: "Morpeko VMAX",
|
||||||
|
},
|
||||||
|
|
||||||
|
hp: 300,
|
||||||
|
|
||||||
|
type: [
|
||||||
|
Type.LIGHTNING,
|
||||||
|
],
|
||||||
|
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Morpeko V",
|
||||||
|
fr: "Morpeko-V",
|
||||||
|
},
|
||||||
|
|
||||||
|
tags: [
|
||||||
|
Tag.VMAX,
|
||||||
|
],
|
||||||
|
|
||||||
|
illustrator: {
|
||||||
|
id: 39,
|
||||||
|
name: "5ban Graphics"
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: [
|
||||||
|
Type.LIGHTNING,
|
||||||
|
Type.LIGHTNING,
|
||||||
|
Type.COLORLESS
|
||||||
|
],
|
||||||
|
name: {
|
||||||
|
en: "Max Discharge",
|
||||||
|
fr: "Déchargeomax",
|
||||||
|
},
|
||||||
|
text: {
|
||||||
|
en: "This attack also does 20 damage to each 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 à chacun des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||||||
|
},
|
||||||
|
damage: 180
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: Type.FIGHTING,
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
|
||||||
|
rarity: Rarity.RareRainbow,
|
||||||
|
|
||||||
|
category: Category.POKEMON,
|
||||||
|
|
||||||
|
set: {
|
||||||
|
name: "Sword & Shield",
|
||||||
|
code: "swsh1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
87
cards/swsh/swsh1/205.ts
Normal file
87
cards/swsh/swsh1/205.ts
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
import Card from '../../../interfaces/Card'
|
||||||
|
import Type from '../../../interfaces/Type'
|
||||||
|
import Tag from '../../../interfaces/Tag'
|
||||||
|
import Rarity from '../../../interfaces/Rarity'
|
||||||
|
import AbilityType from '../../../interfaces/AbilityType'
|
||||||
|
import Category from '../../../interfaces/Category'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
|
||||||
|
// ids
|
||||||
|
id: "swsh1-205",
|
||||||
|
localId: 205,
|
||||||
|
|
||||||
|
// Card informations
|
||||||
|
name: {
|
||||||
|
en: "Stonjourner VMAX",
|
||||||
|
fr: "Dolman VMAX",
|
||||||
|
},
|
||||||
|
|
||||||
|
hp: 330,
|
||||||
|
|
||||||
|
type: [
|
||||||
|
Type.FIGHTING,
|
||||||
|
],
|
||||||
|
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Stonjourner V",
|
||||||
|
fr: "Dolman-V",
|
||||||
|
},
|
||||||
|
|
||||||
|
tags: [
|
||||||
|
Tag.VMAX,
|
||||||
|
],
|
||||||
|
|
||||||
|
illustrator: {
|
||||||
|
id: 39,
|
||||||
|
name: "5ban Graphics"
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: [
|
||||||
|
Type.FIGHTING
|
||||||
|
],
|
||||||
|
name: {
|
||||||
|
en: "Stone Gift",
|
||||||
|
fr: "Cadeau Roc",
|
||||||
|
},
|
||||||
|
text: {
|
||||||
|
en: "Attach a Fighting Energy card from your hand to 1 of your Pokémon. If you do, heal 120 damage from that Pokémon.",
|
||||||
|
fr: "Attachez une carte Énergie Fighting de votre main à l’un de vos Pokémon. Dans ce cas, soignez 120 dégâts de ce Pokémon-là.",
|
||||||
|
},
|
||||||
|
},{
|
||||||
|
cost: [
|
||||||
|
Type.FIGHTING,
|
||||||
|
Type.FIGHTING,
|
||||||
|
Type.FIGHTING
|
||||||
|
],
|
||||||
|
name: {
|
||||||
|
en: "Max Rockfall",
|
||||||
|
fr: "Lithomax",
|
||||||
|
},
|
||||||
|
damage: 200
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: Type.GRASS,
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
|
||||||
|
rarity: Rarity.RareRainbow,
|
||||||
|
|
||||||
|
category: Category.POKEMON,
|
||||||
|
|
||||||
|
set: {
|
||||||
|
name: "Sword & Shield",
|
||||||
|
code: "swsh1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
80
cards/swsh/swsh1/206.ts
Normal file
80
cards/swsh/swsh1/206.ts
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
import Card from '../../../interfaces/Card'
|
||||||
|
import Type from '../../../interfaces/Type'
|
||||||
|
import Tag from '../../../interfaces/Tag'
|
||||||
|
import Rarity from '../../../interfaces/Rarity'
|
||||||
|
import AbilityType from '../../../interfaces/AbilityType'
|
||||||
|
import Category from '../../../interfaces/Category'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
|
||||||
|
// ids
|
||||||
|
id: "swsh1-206",
|
||||||
|
localId: 206,
|
||||||
|
|
||||||
|
// Card informations
|
||||||
|
name: {
|
||||||
|
en: "Snorlax VMAX",
|
||||||
|
fr: "Ronflex VMAX",
|
||||||
|
},
|
||||||
|
|
||||||
|
hp: 340,
|
||||||
|
|
||||||
|
type: [
|
||||||
|
Type.COLORLESS,
|
||||||
|
],
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
evolveFrom: {
|
||||||
|
en: "Snorlax V",
|
||||||
|
fr: "Ronflex-V",
|
||||||
|
},
|
||||||
|
|
||||||
|
tags: [
|
||||||
|
Tag.VMAX,
|
||||||
|
],
|
||||||
|
|
||||||
|
illustrator: {
|
||||||
|
id: 61,
|
||||||
|
name: "aky CG Works"
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: [
|
||||||
|
Type.COLORLESS,
|
||||||
|
Type.COLORLESS,
|
||||||
|
Type.COLORLESS
|
||||||
|
],
|
||||||
|
name: {
|
||||||
|
en: "G-Max Fall",
|
||||||
|
fr: "Chute G-Max",
|
||||||
|
},
|
||||||
|
text: {
|
||||||
|
en: "This attack does 30 more damage for each of your Benched Pokémon.",
|
||||||
|
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chacun de vos Pokémon de Banc.",
|
||||||
|
},
|
||||||
|
damage: "60+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: Type.FIGHTING,
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
retreat: 4,
|
||||||
|
|
||||||
|
rarity: Rarity.RareRainbow,
|
||||||
|
|
||||||
|
category: Category.POKEMON,
|
||||||
|
|
||||||
|
set: {
|
||||||
|
name: "Sword & Shield",
|
||||||
|
code: "swsh1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
61
cards/swsh/swsh1/207.ts
Normal file
61
cards/swsh/swsh1/207.ts
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
import Card from '../../../interfaces/Card'
|
||||||
|
import Type from '../../../interfaces/Type'
|
||||||
|
import Tag from '../../../interfaces/Tag'
|
||||||
|
import Rarity from '../../../interfaces/Rarity'
|
||||||
|
import AbilityType from '../../../interfaces/AbilityType'
|
||||||
|
import Category from '../../../interfaces/Category'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
|
||||||
|
// ids
|
||||||
|
id: "swsh1-207",
|
||||||
|
localId: 207,
|
||||||
|
|
||||||
|
// Card informations
|
||||||
|
name: {
|
||||||
|
en: "Bede",
|
||||||
|
fr: "Travis",
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
evolveFrom: {},
|
||||||
|
|
||||||
|
tags: [
|
||||||
|
Tag.SUPPORTER,
|
||||||
|
],
|
||||||
|
|
||||||
|
illustrator: {
|
||||||
|
id: 4,
|
||||||
|
name: "Naoki Saito"
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Attach a basic Energy card from your hand to 1 of your Benched Pokémon.",
|
||||||
|
fr: "Attachez une carte Énergie de base de votre main à l’un de vos Pokémon de Banc.",
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
rarity: Rarity.RareRainbow,
|
||||||
|
|
||||||
|
category: Category.TRAINER,
|
||||||
|
|
||||||
|
set: {
|
||||||
|
name: "Sword & Shield",
|
||||||
|
code: "swsh1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
60
cards/swsh/swsh1/208.ts
Normal file
60
cards/swsh/swsh1/208.ts
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
import Card from '../../../interfaces/Card'
|
||||||
|
import Type from '../../../interfaces/Type'
|
||||||
|
import Tag from '../../../interfaces/Tag'
|
||||||
|
import Rarity from '../../../interfaces/Rarity'
|
||||||
|
import AbilityType from '../../../interfaces/AbilityType'
|
||||||
|
import Category from '../../../interfaces/Category'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
|
||||||
|
// ids
|
||||||
|
id: "swsh1-208",
|
||||||
|
localId: 208,
|
||||||
|
|
||||||
|
// Card informations
|
||||||
|
name: {
|
||||||
|
en: "Marnie",
|
||||||
|
fr: "Rosemary",
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
evolveFrom: {},
|
||||||
|
|
||||||
|
tags: [
|
||||||
|
Tag.SUPPORTER,
|
||||||
|
],
|
||||||
|
|
||||||
|
illustrator: {
|
||||||
|
id: 29,
|
||||||
|
name: "kirisAki"
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Each player shuffles their hand and puts it on the bottom of their deck. If either player put any cards on the bottom of their deck in this way, you draw 5 cards, and your opponent draws 4 cards.",
|
||||||
|
fr: "Chaque joueur mélange sa main, puis la place en dessous de son deck. Si l’un des joueurs place ainsi au moins une carte en dessous de son deck, vous piochez 5 cartes et votre adversaire en pioche 4.",
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
rarity: Rarity.RareRainbow,
|
||||||
|
|
||||||
|
category: Category.TRAINER,
|
||||||
|
|
||||||
|
set: {
|
||||||
|
name: "Sword & Shield",
|
||||||
|
code: "swsh1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
60
cards/swsh/swsh1/209.ts
Normal file
60
cards/swsh/swsh1/209.ts
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
import Card from '../../../interfaces/Card'
|
||||||
|
import Type from '../../../interfaces/Type'
|
||||||
|
import Tag from '../../../interfaces/Tag'
|
||||||
|
import Rarity from '../../../interfaces/Rarity'
|
||||||
|
import AbilityType from '../../../interfaces/AbilityType'
|
||||||
|
import Category from '../../../interfaces/Category'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
|
||||||
|
// ids
|
||||||
|
id: "swsh1-209",
|
||||||
|
localId: 209,
|
||||||
|
|
||||||
|
// Card informations
|
||||||
|
name: {
|
||||||
|
en: "Professor's Research (Professor Magnolia)",
|
||||||
|
fr: "Recherches Professorales (Professeure Magnolia)",
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
evolveFrom: {},
|
||||||
|
|
||||||
|
tags: [
|
||||||
|
Tag.SUPPORTER,
|
||||||
|
],
|
||||||
|
|
||||||
|
illustrator: {
|
||||||
|
id: 29,
|
||||||
|
name: "kirisAki"
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard your hand and draw 7 cards.",
|
||||||
|
fr: "Défaussez votre main, puis piochez 7 cartes.",
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
rarity: Rarity.RareRainbow,
|
||||||
|
|
||||||
|
category: Category.TRAINER,
|
||||||
|
|
||||||
|
set: {
|
||||||
|
name: "Sword & Shield",
|
||||||
|
code: "swsh1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
59
cards/swsh/swsh1/210.ts
Normal file
59
cards/swsh/swsh1/210.ts
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
import Card from '../../../interfaces/Card'
|
||||||
|
import Type from '../../../interfaces/Type'
|
||||||
|
import Tag from '../../../interfaces/Tag'
|
||||||
|
import Rarity from '../../../interfaces/Rarity'
|
||||||
|
import AbilityType from '../../../interfaces/AbilityType'
|
||||||
|
import Category from '../../../interfaces/Category'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
|
||||||
|
// ids
|
||||||
|
id: "swsh1-210",
|
||||||
|
localId: 210,
|
||||||
|
|
||||||
|
// Card informations
|
||||||
|
name: {
|
||||||
|
en: "Team Yell Grunt",
|
||||||
|
fr: "Sbire de la Team Yell",
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
evolveFrom: {},
|
||||||
|
|
||||||
|
tags: [
|
||||||
|
Tag.SUPPORTER,
|
||||||
|
],
|
||||||
|
|
||||||
|
illustrator: {
|
||||||
|
id: 15,
|
||||||
|
name: "nagimiso"
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Put an Energy attached to 1 of your opponent’s Pokémon into their hand.",
|
||||||
|
fr: "Ajoutez à la main de votre adversaire une Énergie attachée à l’un de ses Pokémon.",
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
rarity: Rarity.RareRainbow,
|
||||||
|
|
||||||
|
category: Category.TRAINER,
|
||||||
|
|
||||||
|
set: {
|
||||||
|
name: "Sword & Shield",
|
||||||
|
code: "swsh1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
91
cards/swsh/swsh1/211.ts
Normal file
91
cards/swsh/swsh1/211.ts
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
import Card from '../../../interfaces/Card'
|
||||||
|
import Type from '../../../interfaces/Type'
|
||||||
|
import Tag from '../../../interfaces/Tag'
|
||||||
|
import Rarity from '../../../interfaces/Rarity'
|
||||||
|
import AbilityType from '../../../interfaces/AbilityType'
|
||||||
|
import Category from '../../../interfaces/Category'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
|
||||||
|
// ids
|
||||||
|
id: "swsh1-211",
|
||||||
|
localId: 211,
|
||||||
|
|
||||||
|
// Card informations
|
||||||
|
name: {
|
||||||
|
en: "Zacian V",
|
||||||
|
fr: "Zacian V",
|
||||||
|
},
|
||||||
|
|
||||||
|
hp: 220,
|
||||||
|
|
||||||
|
type: [
|
||||||
|
Type.METAL,
|
||||||
|
],
|
||||||
|
|
||||||
|
|
||||||
|
evolveFrom: {},
|
||||||
|
|
||||||
|
tags: [
|
||||||
|
Tag.BASIC,
|
||||||
|
Tag.V,
|
||||||
|
],
|
||||||
|
|
||||||
|
illustrator: {
|
||||||
|
id: 39,
|
||||||
|
name: "5ban Graphics"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
id: -1,
|
||||||
|
type: AbilityType.TALENT,
|
||||||
|
name: {
|
||||||
|
en: "Intrepid Sword",
|
||||||
|
fr: "Lame Indomptable",
|
||||||
|
},
|
||||||
|
text: {
|
||||||
|
en: "Once during your turn, you may look at the top 3 cards of your deck and attach any number of Metal Energy cards you find there to this Pokémon. Put the other cards into your hand. If you use this Ability, your turn ends.",
|
||||||
|
fr: "Une fois pendant votre tour, vous pouvez regarder les 3 cartes du dessus de votre deck, puis attacher à ce Pokémon le nombre voulu de cartes Énergie Metal que vous y trouvez. Ajoutez les autres cartes à votre main. Si vous utilisez ce talent, votre tour se termine.",
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: [
|
||||||
|
Type.METAL,
|
||||||
|
Type.METAL,
|
||||||
|
Type.METAL
|
||||||
|
],
|
||||||
|
name: {
|
||||||
|
en: "Brave Blade",
|
||||||
|
fr: "Lame Vaillante",
|
||||||
|
},
|
||||||
|
text: {
|
||||||
|
en: "During your next turn, this Pokémon can't attack.",
|
||||||
|
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
|
||||||
|
},
|
||||||
|
damage: 230
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: Type.FIRE,
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: Type.GRASS,
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
|
||||||
|
rarity: Rarity.RareRainbow,
|
||||||
|
|
||||||
|
category: Category.POKEMON,
|
||||||
|
|
||||||
|
set: {
|
||||||
|
name: "Sword & Shield",
|
||||||
|
code: "swsh1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
90
cards/swsh/swsh1/212.ts
Normal file
90
cards/swsh/swsh1/212.ts
Normal file
@ -0,0 +1,90 @@
|
|||||||
|
import Card from '../../../interfaces/Card'
|
||||||
|
import Type from '../../../interfaces/Type'
|
||||||
|
import Tag from '../../../interfaces/Tag'
|
||||||
|
import Rarity from '../../../interfaces/Rarity'
|
||||||
|
import AbilityType from '../../../interfaces/AbilityType'
|
||||||
|
import Category from '../../../interfaces/Category'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
|
||||||
|
// ids
|
||||||
|
id: "swsh1-212",
|
||||||
|
localId: 212,
|
||||||
|
|
||||||
|
// Card informations
|
||||||
|
name: {
|
||||||
|
en: "Zamazenta V",
|
||||||
|
fr: "Zamazenta V",
|
||||||
|
},
|
||||||
|
|
||||||
|
hp: 230,
|
||||||
|
|
||||||
|
type: [
|
||||||
|
Type.METAL,
|
||||||
|
],
|
||||||
|
|
||||||
|
evolveFrom: {},
|
||||||
|
|
||||||
|
tags: [
|
||||||
|
Tag.BASIC,
|
||||||
|
Tag.V,
|
||||||
|
],
|
||||||
|
|
||||||
|
illustrator: {
|
||||||
|
id: 61,
|
||||||
|
name: "aky CG Works"
|
||||||
|
},
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
id: -1,
|
||||||
|
type: AbilityType.TALENT,
|
||||||
|
name: {
|
||||||
|
en: "Dauntless Shield",
|
||||||
|
fr: "Égide Inflexible",
|
||||||
|
},
|
||||||
|
text: {
|
||||||
|
en: "Prevent all damage done to this Pokémon by attacks from your opponent’s Pokémon VMAX.",
|
||||||
|
fr: "Évitez tous les dégâts infligés à ce Pokémon par les attaques des Pokémon-VMAX de votre adversaire.",
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: [
|
||||||
|
Type.METAL,
|
||||||
|
Type.METAL,
|
||||||
|
Type.COLORLESS
|
||||||
|
],
|
||||||
|
name: {
|
||||||
|
en: "Assault Tackle",
|
||||||
|
fr: "Tacle Assaillant",
|
||||||
|
},
|
||||||
|
text: {
|
||||||
|
en: "Discard a Special Energy from your opponent's Active Pokémon.",
|
||||||
|
fr: "Défaussez une Énergie spéciale du Pokémon Actif de votre adversaire.",
|
||||||
|
},
|
||||||
|
damage: 130
|
||||||
|
}],
|
||||||
|
|
||||||
|
weaknesses: [{
|
||||||
|
type: Type.FIRE,
|
||||||
|
value: "×2"
|
||||||
|
}],
|
||||||
|
|
||||||
|
resistances: [{
|
||||||
|
type: Type.GRASS,
|
||||||
|
value: "-30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
|
||||||
|
rarity: Rarity.RareRainbow,
|
||||||
|
|
||||||
|
category: Category.POKEMON,
|
||||||
|
|
||||||
|
set: {
|
||||||
|
name: "Sword & Shield",
|
||||||
|
code: "swsh1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
60
cards/swsh/swsh1/213.ts
Normal file
60
cards/swsh/swsh1/213.ts
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
import Card from '../../../interfaces/Card'
|
||||||
|
import Type from '../../../interfaces/Type'
|
||||||
|
import Tag from '../../../interfaces/Tag'
|
||||||
|
import Rarity from '../../../interfaces/Rarity'
|
||||||
|
import AbilityType from '../../../interfaces/AbilityType'
|
||||||
|
import Category from '../../../interfaces/Category'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
|
||||||
|
// ids
|
||||||
|
id: "swsh1-213",
|
||||||
|
localId: 213,
|
||||||
|
|
||||||
|
// Card informations
|
||||||
|
name: {
|
||||||
|
en: "Air Balloon",
|
||||||
|
fr: "Ballon",
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
evolveFrom: {},
|
||||||
|
|
||||||
|
tags: [
|
||||||
|
Tag.TOOL,
|
||||||
|
],
|
||||||
|
|
||||||
|
illustrator: {
|
||||||
|
id: 63,
|
||||||
|
name: "Yoshinobu Saito"
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "The Retreat Cost of the Pokémon this card is attached to is ColorlessColorless less.",
|
||||||
|
fr: "Le Coût de Retraite du Pokémon auquel cette carte est attachée est diminué de ColorlessColorless.",
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
rarity: Rarity.RareRainbow,
|
||||||
|
|
||||||
|
category: Category.TRAINER,
|
||||||
|
|
||||||
|
set: {
|
||||||
|
name: "Sword & Shield",
|
||||||
|
code: "swsh1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
59
cards/swsh/swsh1/214.ts
Normal file
59
cards/swsh/swsh1/214.ts
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
import Card from '../../../interfaces/Card'
|
||||||
|
import Type from '../../../interfaces/Type'
|
||||||
|
import Tag from '../../../interfaces/Tag'
|
||||||
|
import Rarity from '../../../interfaces/Rarity'
|
||||||
|
import AbilityType from '../../../interfaces/AbilityType'
|
||||||
|
import Category from '../../../interfaces/Category'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
|
||||||
|
// ids
|
||||||
|
id: "swsh1-214",
|
||||||
|
localId: 214,
|
||||||
|
|
||||||
|
// Card informations
|
||||||
|
name: {
|
||||||
|
en: "Metal Saucer",
|
||||||
|
fr: "Écusson Métal",
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
evolveFrom: {},
|
||||||
|
|
||||||
|
tags: [
|
||||||
|
Tag.ITEM,
|
||||||
|
],
|
||||||
|
|
||||||
|
illustrator: {
|
||||||
|
id: 68,
|
||||||
|
name: "Toyste Beach"
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Attach a Metal Energy card from your discard pile to 1 of your Benched Metal Pokémon.",
|
||||||
|
fr: "Attachez une carte Énergie Metal de votre pile de défausse à l’un de vos Pokémon Metal de Banc.",
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
rarity: Rarity.RareRainbow,
|
||||||
|
|
||||||
|
category: Category.TRAINER,
|
||||||
|
|
||||||
|
set: {
|
||||||
|
name: "Sword & Shield",
|
||||||
|
code: "swsh1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
60
cards/swsh/swsh1/215.ts
Normal file
60
cards/swsh/swsh1/215.ts
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
import Card from '../../../interfaces/Card'
|
||||||
|
import Type from '../../../interfaces/Type'
|
||||||
|
import Tag from '../../../interfaces/Tag'
|
||||||
|
import Rarity from '../../../interfaces/Rarity'
|
||||||
|
import AbilityType from '../../../interfaces/AbilityType'
|
||||||
|
import Category from '../../../interfaces/Category'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
|
||||||
|
// ids
|
||||||
|
id: "swsh1-215",
|
||||||
|
localId: 215,
|
||||||
|
|
||||||
|
// Card informations
|
||||||
|
name: {
|
||||||
|
en: "Ordinary Rod",
|
||||||
|
fr: "Canne Ordinaire",
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
evolveFrom: {},
|
||||||
|
|
||||||
|
tags: [
|
||||||
|
Tag.ITEM,
|
||||||
|
],
|
||||||
|
|
||||||
|
illustrator: {
|
||||||
|
id: 39,
|
||||||
|
name: "5ban Graphics"
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Choose 1 or both:\n\n• Shuffle up to 2 Pokémon from your discard pile into your deck.\n\n• Shuffle up to 2 basic Energy cards from your discard pile into your deck.",
|
||||||
|
fr: "Choisissez l’une de ces options ou les deux :\n\n• Mélangez avec votre deck jusqu’à 2 Pokémon de votre pile de défausse.\n\n• Mélangez avec votre deck jusqu’à 2 cartes Énergie de base de votre pile de défausse.",
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
rarity: Rarity.RareRainbow,
|
||||||
|
|
||||||
|
category: Category.TRAINER,
|
||||||
|
|
||||||
|
set: {
|
||||||
|
name: "Sword & Shield",
|
||||||
|
code: "swsh1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
60
cards/swsh/swsh1/216.ts
Normal file
60
cards/swsh/swsh1/216.ts
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
import Card from '../../../interfaces/Card'
|
||||||
|
import Type from '../../../interfaces/Type'
|
||||||
|
import Tag from '../../../interfaces/Tag'
|
||||||
|
import Rarity from '../../../interfaces/Rarity'
|
||||||
|
import AbilityType from '../../../interfaces/AbilityType'
|
||||||
|
import Category from '../../../interfaces/Category'
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
|
||||||
|
// ids
|
||||||
|
id: "swsh1-216",
|
||||||
|
localId: 216,
|
||||||
|
|
||||||
|
// Card informations
|
||||||
|
name: {
|
||||||
|
en: "Quick Ball",
|
||||||
|
fr: "Rapide Ball",
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
evolveFrom: {},
|
||||||
|
|
||||||
|
tags: [
|
||||||
|
Tag.ITEM,
|
||||||
|
],
|
||||||
|
|
||||||
|
illustrator: {
|
||||||
|
id: 64,
|
||||||
|
name: "sadaji"
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "You can play this card only if you discard another card from your hand.\n\nSearch your deck for a Basic Pokémon, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||||||
|
fr: "Vous ne pouvez jouer cette carte que si vous défaussez une autre carte de votre main.\n\nCherchez dans votre deck un Pokémon de base, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.",
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
rarity: Rarity.RareRainbow,
|
||||||
|
|
||||||
|
category: Category.TRAINER,
|
||||||
|
|
||||||
|
set: {
|
||||||
|
name: "Sword & Shield",
|
||||||
|
code: "swsh1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
Loading…
x
Reference in New Issue
Block a user