mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
49
data-asia/SV/SV3/007.ts
Normal file
49
data-asia/SV/SV3/007.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV3"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ボクレー",
|
||||
'zh-tw': "小木靈",
|
||||
th: "โบคุเร"
|
||||
},
|
||||
|
||||
illustrator: "Narumi Sato",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [708],
|
||||
hp: 60,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
ja: "人間の 子どもに 似た 声で 鳴いて 大人を 森の 奥へ 誘い込み 迷わせて しまうのだ。",
|
||||
'zh-tw': "用類似人類小孩的聲音鳴叫,把大人引到森林的深處,讓他們在其中迷失方向。",
|
||||
th: "ส่งเสียงร้องคล้ายกับเด็กเพื่อหลอกล่อให้ผู้ใหญ่หลงเข้าไปในป่าลึก"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "えだづき",
|
||||
'zh-tw': "木枝突刺",
|
||||
th: "ต่อกิ่ง"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user