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

114
cards/sm/sm12/95.ts Normal file
View File

@ -0,0 +1,114 @@
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: "sm12-95",
localId: 95,
// Card informations
name: {
en: "Oricorio-GX",
fr: "Plumeline-GX",
},
hp: 170,
type: [
Type.PSYCHIC,
],
dexId: 741,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm12/95/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm12/95/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm12/95/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm12/95/high.png",
},
},
evolveFrom: {},
tags: [
Tag.GX,
],
illustrator: {
id: 149,
name: "aky CG Works"
},
abilities: [{
id: 1376,
type: AbilityType.TALENT,
name: {
en: "Dance of Tribute",
fr: "Danse Respectueuse",
},
text: {
en: "Once during your turn (before your attack), if any of your Pokémon were Knocked Out during your opponent's last turn, you may draw 3 cards. You can't use more than 1 Dance of Tribute Ability each turn.",
fr: "Une seule fois pendant votre tour (avant votre attaque), si lun de vos Pokémon a été mis K.O. pendant le dernier tour de votre adversaire, vous pouvez piocher 3 cartes. Vous ne pouvez pas utiliser plus dun talent Danse Respectueuse par tour.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Razor Wing",
fr: "Aile Tranchante",
},
damage: 80
},{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Strafe-GX",
fr: "Bombarder-GX",
},
text: {
en: "Switch this Pokémon with 1 of your Benched Pokémon. (You can't use more than 1 GX attack in a game.)",
fr: "Échangez ce Pokémon avec lun de vos Pokémon de Banc. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 100
}],
weaknesses: [{
type: Type.DARKNESS,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
retreat: 1,
rarity: Rarity.RareHoloGX,
category: Category.POKEMON,
set: {
name: "Cosmic Eclipse",
code: "sm12"
}
}
export default card