1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

69 lines
2.2 KiB
TypeScript
Raw 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ヤバソチャ",
'zh-tw': "來悲粗茶",
th: "ยาบาโซฉะ"
},
category: "Pokemon",
rarity: "Rare",
illustrator: "Kouki Saitou",
dexId: [1013],
hp: 70,
types: ["Grass"],
description: {
ja: "民家の 床下や 棚の奥など 冷暗所を 好む。 日没後 獲物を 探して 徘徊する。",
'zh-tw': "喜歡待在民宅的地板下或 架子深處等陰涼的地方。 日落後會四處徘徊尋找獵物。",
th: "ชอบสถานที่เย็น ๆ มืด ๆ อย่างใต้พื้นบ้านหรือตามซอกมุมชั้นวางของ หลังพระอาทิตย์ตกจะไปตระเวนหาอาหาร"
},
stage: "Stage1",
attacks: [{
cost: ["Grass"],
name: {
ja: "のろいのしずく",
'zh-tw': "詛咒水滴",
th: "หยาดหยดแห่งคำสาป"
},
effect: {
ja: "ダメカン4個を、相手のポケモンに好きなようにのせる。",
'zh-tw': "將4個傷害指示物以任意方式放置於對手的寶可夢身上。",
th: "วางตัวนับแดเมจ 4 ตัว บนโปเกมอนฝ่ายตรงข้ามตามชอบ"
}
}, {
cost: ["Grass"],
name: {
ja: "ぶちまけちゃ",
'zh-tw': "傾瀉茶",
th: "คว่ำชาทิ้ง"
},
damage: "70×",
effect: {
ja: "自分の場のポケモンについているエネルギーを3枚までトラッシュし、その枚数×70ダメージ。",
'zh-tw': "將最多3張自己的場上寶可夢身上附加的【草】能量卡丟棄造成其張數×70點傷害。",
th: "ทิ้งการ์ดพลังงาน[หญ้า]ที่ติดอยู่กับโปเกมอนบนกระดานฝ่ายเราได้สูงสุด 3 ใบที่ตำแหน่งทิ้งการ์ด แดเมจจะเท่ากับจำนวนการ์ดนั้น x70"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card