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

63 lines
1.8 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 "../SV8a"
const card: Card = {
set: Set,
name: {
ja: "シガロコ",
id: "Rellor",
th: "ชิกาโรโค",
'zh-tw': "蟲滾泥",
'zh-cn': "蟲滾泥"
},
illustrator: "Saboteri",
rarity: "None",
category: "Pokemon",
dexId: [953],
hp: 50,
types: ["Grass"],
description: {
ja: "泥玉を 転がしながら 進化の エネルギーを 熟成させる。 やがて 進化のときを 迎える。",
id: "Rellor mematangkan energi evolusi sambil menggelindingkan bola lumpur. Pada akhirnya, waktu evolusi Pokémon ini akan tiba.",
th: "บ่มพลังงานที่ใช้ในการวิวัฒนาการให้สุกไปในขณะที่กลิ้งก้อนโคลน เพื่อรอช่วงเวลาที่จะได้วิวัฒนาการ",
'zh-tw': "會一邊滾著泥巴球, 一邊使進化的能量成熟。 最終會迎接進化的時刻。",
'zh-cn': "會一邊滾著泥巴球, 一邊使進化的能量成熟。 最終會迎接進化的時刻。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ちょっとつっこむ",
id: "Gasak Sedikit",
th: "จุ้นจ้านหน่อย",
'zh-tw': "撞一下",
'zh-cn': "撞一下"
},
damage: 30,
effect: {
ja: "このポケモンにも10ダメージ。",
id: "Pokémon ini juga menerima kerusakan sejumlah 10.",
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 10 ด้วย",
'zh-tw': "這隻寶可夢也受到10點傷害。",
'zh-cn': "這隻寶可夢也受到10點傷害。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card