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:
57
data-asia/SV/SV2a/096.ts
Normal file
57
data-asia/SV/SV2a/096.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV2a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "スリープ",
|
||||
'zh-tw': "催眠貘",
|
||||
th: "สลีป",
|
||||
id: "Drowzee"
|
||||
},
|
||||
|
||||
illustrator: "Mousho",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [96],
|
||||
hp: 80,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
ja: "食べた夢は 全部 覚えている。 子どもの 夢のほうが 美味しいので めったに 大人の 夢は食べない。",
|
||||
'zh-tw': "能記住所有自己吃下的夢。由於小孩的夢更加美味, 因此幾乎不吃大人的夢。",
|
||||
th: "จำฝันที่กินเข้าไปได้หมด ไม่ค่อยกินฝันของผู้ใหญ่เพราะฝันของเด็กอร่อยกว่า",
|
||||
id: "Drowzee mengingat semua mimpi yang dimakannya. Pokémon ini jarang memakan mimpi orang dewasa karena mimpi anak-anak rasanya lebih lezat."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "しねんのずつき",
|
||||
'zh-tw': "意念頭錘",
|
||||
th: "ท่าโขกหัวพลังจิต",
|
||||
id: "Sundulan Spiritual"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user