1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29: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/pl/pl3/9.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: "pl3-9",
localId: 9,
// Card informations
name: {
en: "Regigigas FB",
fr: "Regigigas ",
},
hp: 100,
type: [
Type.COLORLESS,
],
dexId: 486,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl3/9/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/9/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl3/9/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/9/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 19,
name: "Shin Nagasawa"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Drain Punch",
fr: "Vampipoing",
},
text: {
en: "Remove from Regigigas FB a number of damage counters equal to the amount of Energy attached to the Defending Pokémon.",
fr: "Retirez à Regigigas autant de marqueurs de dégât qu'il y a d'Énergie(s) attachée(s) au Pokémon Défenseur.",
},
damage: 30
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Rainbow Lariat",
fr: "Lasso arc-en-ciel",
},
text: {
en: "Does 20 damage times the number of different types of Pokémon SP you have in play.",
fr: "Inflige 20 dégâts multipliés par le nombre de types de Pokémon SP différents que vous avez en jeu.",
},
damage: 20
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
retreat: 4,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Supreme Victors",
code: "pl3"
}
}
export default card