1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00
Florian Bouillon e024bae69e
Added English version of swsh/swshp
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-19 19:18:51 +01:00

84 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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'
import path from 'path'
import set from '../../../sets/swsh/swshp'
const localId = path.basename(__filename).split(".")[0]
const card: Card = {
// ids
id: `swshp-${localId}`,
localId: localId,
// Card informations
name: {
en: "Galarian Perrserker",
fr: "Berserkatt de Galar",
},
hp: 120,
type: [
Type.METAL,
],
tags: [
Tag.STAGE1,
],
illustrator: {
id: 48,
name: "Akira Komayama"
},
abilities: [{
type: AbilityType.TALENT,
name: {
en: "Steely Spirit",
fr: "Boost Acier"
},
text: {
en: "Your Steel Pokémon's attacks do 20 more damage to your opponent's Active Pokémon (before applying Weakness and Resistance).",
fr: "Les attaques de vos Pokémon Acier infligent 20 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la résistance)."
}
}],
attacks: [{
cost: [
Type.METAL,
Type.METAL,
Type.COLORLESS
],
name: {
en: "Metal Claw",
fr: "Griffe Acier",
},
damage: 70
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.GRASS,
value: "-30"
}],
retreat: 2,
rarity: Rarity.Common,
category: Category.POKEMON,
set,
}
export default card