1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49:19 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

100
cards/xy/xy10/43.ts Normal file
View File

@ -0,0 +1,100 @@
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: "xy10-43",
localId: 43,
// Card informations
name: {
en: "Regirock-EX",
fr: "Regirock-EX",
},
hp: 180,
type: [
Type.FIGHTING,
],
dexId: 377,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy10/43/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy10/43/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy10/43/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy10/43/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 116,
name: "PLANETA"
},
abilities: [{
id: 881,
type: AbilityType.TALENT,
name: {
en: "Regi Power",
fr: "Regi-Pouvoir",
},
text: {
en: "The attacks of your Fighting Pokémon (excluding Regirock-EX) do 10 more damage to your opponent's Active Pokémon (before applying Weakness and Resistance).",
fr: "Les attaques de vos Pokémon Fighting (excepté Regirock-EX) infligent 10 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.FIGHTING,
Type.FIGHTING,
Type.FIGHTING
],
name: {
en: "Bedrock Press",
fr: "Charge Substrat",
},
text: {
en: "During your opponent's next turn, any damage done to this Pokémon by attacks is reduced by 20 (after applying Weakness and Resistance).",
fr: "Pendant le prochain tour de votre adversaire, tous les dégâts infligés à ce Pokémon par des attaques sont réduits de 20 (après application de la Faiblesse et de la Résistance).",
},
damage: 100
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
retreat: 3,
rarity: Rarity.RareHoloEX,
category: Category.POKEMON,
set: {
name: "Fates Collide",
code: "xy10"
}
}
export default card