mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 09:59:19 +00:00
102
cards/xy/xyp/XY49.ts
Normal file
102
cards/xy/xyp/XY49.ts
Normal file
@ -0,0 +1,102 @@
|
||||
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: "xyp-XY49",
|
||||
localId: "XY49",
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Regirock",
|
||||
fr: "Regirock",
|
||||
},
|
||||
|
||||
hp: 110,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
dexId: 377,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xyp/XY49/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xyp/XY49/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xyp/XY49/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xyp/XY49/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 10,
|
||||
name: "Kouki Saitou"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIGHTING
|
||||
],
|
||||
name: {
|
||||
en: "Land Maker",
|
||||
fr: "Fabric'Roc",
|
||||
},
|
||||
text: {
|
||||
en: "Put 2 Stadium cards from your discard pile into your hand.",
|
||||
fr: "Ajoutez 2 cartes Stade de votre pile de défausse à votre main.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Stone Edge",
|
||||
fr: "Lame de Roc",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 40 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 40 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 80
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "XY Black Star Promos",
|
||||
code: "xyp"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user