1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

74 lines
1.2 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Stormfront'
const card: Card = {
name: {
en: "Onix",
fr: "Onix",
},
illustrator: "Kyoko Umemoto",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
95,
],
hp: 90,
types: [
"Fighting",
],
evolveFrom: {
fr: "Onix",
},
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Harden",
fr: "Armure",
},
effect: {
en: "During your opponent's next turn, if Onix would be damaged by an attack, prevent that attack's damage done to Onix if that damage is 40 or less.",
fr: "Lors du prochain tour de votre adversaire, si une attaque inflige des dégâts à Onix, prévenez ces dégâts s'ils sont de 40 ou moins.",
},
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Bind",
fr: "Étreinte",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Grass",
value: "+20"
},
],
retreat: 3,
}
export default card