mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
66
data/Platinum/Platinum/91.ts
Normal file
66
data/Platinum/Platinum/91.ts
Normal file
@ -0,0 +1,66 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Platinum'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Riolu",
|
||||
fr: "Riolu",
|
||||
},
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
447,
|
||||
],
|
||||
hp: 60,
|
||||
types: [
|
||||
"Fightning",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
|
||||
name: {
|
||||
en: "Light Punch",
|
||||
fr: "Poing léger",
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Steady Punch",
|
||||
fr: "Poing énergétique",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts plus 10 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user