1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

70 lines
2.2 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "バウッツェル",
'zh-tw': "麻花犬",
th: "บัลซ์เซล",
id: "Dachsbun"
},
illustrator: "You Iribi",
rarity: "Uncommon",
category: "Pokemon",
dexId: [927],
hp: 90,
types: ["Psychic"],
description: {
ja: "体から 放つ 良い香りが 小麦の 成長を 助けるため 農村で 大切にされてきた。",
'zh-tw': "身體散發出的迷人香氣能有助於小麥的成長,因此 一直都備受農村人家的珍視。",
th: "กลิ่นหอมที่ปล่อยออกมาจากร่างกายช่วยให้ข้าวสาลีเจริญเติบโต มันจึงได้รับการดูแลเอาใจใส่เป็นอย่างดีในหมู่บ้านเกษตรกรรม",
id: "Dachsbun dijaga dengan baik di desa pertanian karena aroma wangi yang keluar dari tubuh Pokémon ini membantu pertumbuhan gandum."
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "こんがりボディ",
'zh-tw': "焦香之軀",
th: "สุกได้ที่",
id: "Tubuh Matang"
},
effect: {
ja: "このポケモンは、相手のポケモンからワザのダメージを受けず、やけどにならない。",
'zh-tw': "這隻寶可夢不會受到對手的【火】寶可夢招式的傷害,不會【灼傷】。",
th: "โปเกมอนนี้ จะไม่ได้รับแดเมจของท่าต่อสู้จากโปเกมอน[ไฟ]ฝ่ายตรงข้าม และไม่เป็นสภาวะ[ไหม้]",
id: "Pokémon ini tidak menerima kerusakan akibat serangan dari Pokémon {Api} lawan dan tidak akan menjadi Luka Bakar."
}
}],
attacks: [{
cost: ["Psychic", "Colorless", "Colorless"],
name: {
ja: "とびだしヘッド",
'zh-tw': "魯莽頭擊",
th: "กระโดดโหม่ง",
id: "Sundulan Meloncat"
},
damage: 100
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card