1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
2021-11-12 17:24:19 +01:00

79 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Neo Discovery'
const card: Card = {
name: {
en: "Omastar",
fr: "Amonistar"
},
illustrator: "Shin-ichi Yoshida",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
139,
],
hp: 80,
types: [
"Fighting",
],
evolveFrom: {
en: "Omanyte",
},
stage: "Stage2",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Squeeze",
fr: "Compression"
},
effect: {
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage and the Defending Pokémon is now Paralyzed. If tails, this attack does 10 damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque fait 10 dégâts plus 20 dégâts supplémentaires et le Pokémon Défenseur est Paralysé. Si c'est pile, l'attaque ne fait que 10 dégâts."
},
damage: "10+",
},
{
cost: [
"Water",
"Water",
"Water",
],
name: {
en: "Spike Barrage",
fr: "Barrage de pics"
},
effect: {
en: "Flip a number of coins equal to the number of Energy attached to Omastar. This attack does 20 damage plus 20 more for each heads.",
fr: "Lancez un nombre de pièces équivalent au nombre d'Énergies attachées à Amonistar. Cette attaque fait 20 dégâts plus 20 dégâts par face."
},
damage: "20+",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
description: {
fr: "Apparemment, il a brisé la coquille de Kokiyas avec ses crocs acérés et il a mangé ce qui était à l'intérieur."
}
}
export default card