1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

55 lines
1001 B
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 "../SV4s"
const card: Card = {
set: Set,
name: {
id: "Mienshao"
},
illustrator: "Taira Akitsu",
category: "Pokemon",
hp: 100,
types: ["Fighting"],
description: {
id: "Tendangan yang diluncurkan Mienshao dengan kecepatan yang tidak dapat ditangkap mata dapat menghancurleburkan batu raksasa."
},
stage: "Stage1",
attacks: [{
name: {
id: "Tusukan Tiga Tingkat"
},
effect: {
id: "Lempar koin 3 kali. Serangan ini memberikan kerusakan sejumlah 20 untuk tiap lemparan dengan hasil sisi depan."
},
damage: "20×",
cost: ["Fighting"]
}, {
name: {
id: "Cambuk Ahli"
},
effect: {
id: "Jika pada giliran ini, Pokémon Tool dikenakan dari Kartu Pegangan pada Pokémon ini, kerusakan yang diberikan bertambah sejumlah 70."
},
damage: "50+",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card