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:
77
data/Platinum/Rising Rivals/54.ts
Normal file
77
data/Platinum/Rising Rivals/54.ts
Normal file
@ -0,0 +1,77 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Rising Rivals'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Whiscash 4",
|
||||
fr: "Barbicha Niv. 50",
|
||||
},
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
340,
|
||||
],
|
||||
hp: 80,
|
||||
types: [
|
||||
"Fightning",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Sleep Pulse",
|
||||
fr: "Pouls dodo",
|
||||
},
|
||||
effect: {
|
||||
en: "The Defending Pokémon is now Asleep.",
|
||||
fr: "Le Pokémon Défenseur est maintenant Endormi.",
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fightning",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Earthquake",
|
||||
fr: "Séisme",
|
||||
},
|
||||
effect: {
|
||||
en: "Does 10 damage to each of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Inflige 10 dégâts à chacun de vos Pokémon de Banc. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc).",
|
||||
},
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user