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

102
cards/dp/dp6/145.ts Normal file
View File

@ -0,0 +1,102 @@
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: "dp6-145",
localId: 145,
// Card informations
name: {
en: "Rhyperior",
fr: "Rhinastoc",
},
hp: 170,
type: [
Type.FIGHTING,
],
dexId: 464,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp6/145/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp6/145/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp6/145/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp6/145/high.png",
},
},
evolveFrom: {},
tags: [
Tag.LEVELUP,
],
illustrator: {
id: 1,
name: "Ryo Ueda"
},
attacks: [{
name: {
en: "Hard Crush",
fr: "Écras'dur",
},
text: {
en: "Discard the top 5 cards from your deck. This attack does 50 damage for each Energy card you discarded.",
fr: "Défaussez les 5 cartes du dessus de votre deck. Cette attaque inflige 50 dégâts par chaque carte Énergie défaussée.",
},
damage: 50
},{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.COLORLESS
],
name: {
en: "Upthrow",
fr: "Soulèvement",
},
text: {
en: "Search your discard pile for all Fighting Energy cards, show them to your opponent, and shuffle them into your deck.",
fr: "Cherchez dans votre pile de défausse toutes les cartes Énergie Fighting, montrez-les à votre adversaire et mélangez-les à votre deck.",
},
damage: 60
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
resistances: [{
type: Type.LIGHTNING,
value: "-20"
}],
retreat: 4,
rarity: Rarity.RareHoloLvX,
category: Category.POKEMON,
set: {
name: "Legends Awakened",
code: "dp6"
}
}
export default card