mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
58
data-asia/SV/SV2a/147.ts
Normal file
58
data-asia/SV/SV2a/147.ts
Normal file
@ -0,0 +1,58 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV2a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ミニリュウ",
|
||||
'zh-tw': "迷你龍",
|
||||
th: "มินิริว",
|
||||
id: "Dratini"
|
||||
},
|
||||
|
||||
illustrator: "Sanosuke Sakuma",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [147],
|
||||
hp: 60,
|
||||
types: ["Dragon"],
|
||||
|
||||
description: {
|
||||
ja: "激しく 流れ落ちる 滝に 守られながら 脱皮を 繰り返し どんどん 大きくなる。",
|
||||
'zh-tw': "會在直瀉而下的瀑布保護下反覆蛻皮, 使身體變得越來越大。",
|
||||
th: "ขณะที่ถูกปกป้องด้วยน้ำตกที่ไหลแรง ก็จะลอกคราบไปเรื่อย ๆ จนค่อย ๆ โตขึ้น",
|
||||
id: "Sambil dilindungi air terjun yang mengalir deras, Dratini terus-menerus berganti kulit dan tumbuh membesar."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
ja: "たたく",
|
||||
'zh-tw': "敲擊",
|
||||
th: "ตี",
|
||||
id: "Menghantam"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Water", "Lightning"],
|
||||
|
||||
name: {
|
||||
ja: "ドラゴンウィップ",
|
||||
'zh-tw': "龍之鞭打",
|
||||
th: "ดรากอนวิป",
|
||||
id: "Dragon Whip"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user