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

108
cards/xy/xy4/81.ts Normal file
View File

@ -0,0 +1,108 @@
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: "xy4-81",
localId: 81,
// Card informations
name: {
en: "Blissey",
fr: "Leuphorie",
},
hp: 130,
type: [
Type.COLORLESS,
],
dexId: 242,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy4/81/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy4/81/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy4/81/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy4/81/high.png",
},
},
evolveFrom: {
en: "Chansey",
fr: "Leveinard",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 95,
name: "kirisAki"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Tender Vengeance",
fr: "Douce Vengeance",
},
text: {
en: "Flip a coin. If heads, this attack does 10 damage times the number of damage counters on each of your Benched Pokémon.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts multipliés par le nombre de marqueurs de dégâts placés sur chacun de vos Pokémon de Banc.",
},
damage: 10
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Charge Dash",
fr: "Attaque Précipitée",
},
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
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
retreat: 3,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Phantom Forces",
code: "xy4"
}
}
export default card