1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

52 lines
1.3 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: "Silicobra"
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
dexId: [843],
hp: 80,
types: ["Fighting"],
description: {
ja: "風船のように 伸び縮む 首の 袋は 脱皮を 重ねるたびに 伸縮性が 増していく。",
'zh-tw': "頸部的囊袋就像氣球一樣能伸縮自如,而隨著不斷 蛻皮,伸縮性會隨之增加。",
th: "ถุงที่คอยืดหดได้เหมือนลูกโป่ง ยิ่งลอกคราบมากเท่าไหร่ ถุงที่คอก็จะยืดหยุ่นมากขึ้นเท่านั้น",
id: "Kantong di leher Silicobra yang dapat memanjang dan memendek seperti balon akan menjadi makin elastis setiap kali ia berganti kulit."
},
stage: "Basic",
attacks: [{
cost: ["Fighting", "Colorless"],
name: {
ja: "どろかけ",
'zh-tw': "擲泥",
th: "สาดโคลน",
id: "Semprotan Lumpur"
},
damage: 30
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card