mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
79
data/Sun & Moon/Unbroken Bonds/117.ts
Normal file
79
data/Sun & Moon/Unbroken Bonds/117.ts
Normal file
@ -0,0 +1,79 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Unbroken Bonds'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Greninja",
|
||||
fr: "Amphinobi",
|
||||
},
|
||||
illustrator: "Yusuke Ohmura",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
658,
|
||||
],
|
||||
hp: 130,
|
||||
types: [
|
||||
"Darkness",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Frogadier",
|
||||
fr: "Croâporal",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Bring Down",
|
||||
fr: "Réduire à Rien",
|
||||
},
|
||||
effect: {
|
||||
en: "The Pokémon that has the least HP remaining, except for this Pokémon, is Knocked Out. (If multiple Pokémon are tied, choose one.)",
|
||||
fr: "Le Pokémon qui a le moins de PV restants, à l’exception de ce Pokémon, est mis K.O. (Si plusieurs Pokémon sont à égalité, choisissez-en un.)",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Darkness",
|
||||
"Darkness",
|
||||
],
|
||||
name: {
|
||||
en: "Mist Slash",
|
||||
fr: "Tranche-Brume",
|
||||
},
|
||||
effect: {
|
||||
en: "This attack's damage isn't affected by Weakness, Resistance, or any other effects on your opponent's Active Pokémon.",
|
||||
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance ou tout autre effet en action sur le Pokémon Actif de votre adversaire.",
|
||||
},
|
||||
damage: 70,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user