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

50 lines
883 B
TypeScript
Raw Permalink 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: "Nosepass"
},
illustrator: "Nobuhiro Imagawa",
category: "Pokemon",
hp: 90,
types: ["Fighting"],
description: {
id: "Ketika berburu, Nosepass tidak bergerak dan menarik buruannya menggunakan kekuatan magnet yang kuat. Kadang kekuatan magnet tersebut justru menarik musuh alaminya."
},
stage: "Basic",
attacks: [{
name: {
id: "Mengumpulkan Besi"
},
effect: {
id: "Pilih paling banyak 2 lembar Energi Dasar {Logam} dari Trash sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan."
},
cost: ["Colorless"]
}, {
name: {
id: "Tubrukan Menggelinding"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card