mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
Added whole Sword Shied promo set
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
66
cards/swsh/swshp/SWSH003.ts
Normal file
66
cards/swsh/swshp/SWSH003.ts
Normal file
@ -0,0 +1,66 @@
|
||||
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: {
|
||||
fr: "Larméléon",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 3,
|
||||
name: "Mizue"
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
fr: "Étreinte",
|
||||
},
|
||||
text: {
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user