1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,79 @@
import { Card } from '../../../interfaces'
import Set from '../Rising Rivals'
const card: Card = {
name: {
en: "Rhyperior 4",
fr: "Rhinastoc Niv. 55",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
464,
],
hp: 100,
types: [
"Fightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Fightning",
"Colorless",
],
name: {
en: "Double Lariat",
fr: "Double lasso",
},
effect: {
en: "Flip 2 coins. This attack does 30 damage times the number of heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de faces.",
},
damage: 30,
},
{
cost: [
"Fightning",
"Fightning",
"Colorless",
"Colorless",
],
name: {
en: "Rock Tumble",
fr: "Roule-pierre",
},
effect: {
en: "This attack's damage isn't affected by Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 3,
}
export default card