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

57 lines
1.7 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 "../SV2D"
const card: Card = {
set: Set,
name: {
ja: "シルシュルー",
'zh-tw': "滋汁鼴",
th: "ชิรุชูลู",
id: "Shroodle"
},
illustrator: "Anesaki Dynamic",
rarity: "Common",
category: "Pokemon",
dexId: [944],
hp: 60,
types: ["Darkness"],
description: {
ja: "温厚だが 怒らせると 毒が 染みこんだ 鋭い 前歯で 咬みつき 痺れさせてくるぞ。",
'zh-tw': "雖然性情溫馴,但一旦被激怒,就會用滲入了毒素的尖銳門牙 過來咬住你,讓你全身麻痺不已。",
th: "มีนิสัยอ่อนโยน แต่ถ้าโกรธขึ้นมาจะใช้ฟันหน้าอันแหลมคมที่ชุ่มไปด้วยพิษกัดและทำให้อีกฝ่ายตัวชา",
id: "Walaupun ramah, Shroodle akan menggigit dan melumpuhkan siapa pun yang membuatnya marah dengan gigi depan tajam berlumur racun miliknya."
},
stage: "Basic",
attacks: [{
cost: ["Darkness"],
name: {
ja: "どくえき",
'zh-tw': "毒液",
th: "ของเหลวพิษ",
id: "Cairan Racun"
},
effect: {
ja: "相手のバトルポケモンをどくにする。",
'zh-tw': "將對手的戰鬥寶可夢【中毒】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ]",
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Racun."
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card