mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
50
data-asia/SV/SV3s/082.ts
Normal file
50
data-asia/SV/SV3s/082.ts
Normal file
@ -0,0 +1,50 @@
|
||||
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
|
Reference in New Issue
Block a user