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

60 lines
939 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 "../SV3s"
const card: Card = {
set: Set,
name: {
id: "Orthworm"
},
illustrator: "Pani Kobayashi",
category: "Pokemon",
hp: 140,
types: ["Metal"],
description: {
id: "Jika diserang musuh, Orthworm menggunakan bulu badannya seperti kepalan tangan dan menyarangkan badai pukulan."
},
stage: "Basic",
attacks: [{
name: {
id: "Punch & Draw"
},
effect: {
id: "Ambil 2 kartu dari atas Deck sendiri."
},
damage: 20,
cost: ["Metal"]
}, {
name: {
id: "Terjangan Detik Terakhir"
},
effect: {
id: "Jika sisa Deck sendiri adalah 3 lembar atau kurang, kerusakan yang diberikan bertambah sejumlah 150."
},
damage: "90+",
cost: ["Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "G"
}
export default card