mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
56
data-asia/SV/SV3s/114.ts
Normal file
56
data-asia/SV/SV3s/114.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV3s"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
id: "Malamar"
|
||||
},
|
||||
|
||||
illustrator: "Nelnal",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
id: "Dikatakan bahwa kekuatan hipnosis Malamar berperan dalam kasus besar yang mengubah sejarah."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
id: "Psychovision"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Dapat digunakan 1 kali pada giliran sendiri. Lihat 1 kartu dari atas Deck lawan, lalu kembalikan ke posisi semula. Setelah itu, lihat 1 kartu dari atas Deck sendiri, lalu kembalikan ke posisi semula."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
id: "Sinar Hipnotis"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Tidur."
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
cost: ["Darkness", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user