1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 09:59: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

105
cards/bw/bw4/99.ts Normal file
View File

@ -0,0 +1,105 @@
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: "bw4-99",
localId: 99,
// Card informations
name: {
en: "Regigigas-EX",
fr: "Regigigas-EX",
},
hp: 180,
type: [
Type.COLORLESS,
],
dexId: 486,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw4/99/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw4/99/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw4/99/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw4/99/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Giga Power",
fr: "Giga Pouvoir",
},
text: {
en: "You may do 20 more damage. If you do, this Pokémon does 20 damage to itself.",
fr: "Vous pouvez infliger 20 dégâts supplémentaires. Dans ce cas, ce Pokémon s'inflige 20 dégâts.",
},
damage: 60
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Raging Hammer",
fr: "Marteau Rageur",
},
text: {
en: "Does 10 more damage for each damage counter on this Pokémon.",
fr: "Inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur ce Pokémon.",
},
damage: 50
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
retreat: 4,
rarity: Rarity.RareUltra,
category: Category.POKEMON,
set: {
name: "Next Destinies",
code: "bw4"
}
}
export default card