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

70 lines
2.3 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 "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "オリーニョ",
'zh-tw': "奧利紐",
th: "โอลีเนียว",
id: "Dolliv"
},
illustrator: "Mina Nakai",
rarity: "Common",
category: "Pokemon",
dexId: [929],
hp: 90,
types: ["Grass"],
description: {
ja: "フレッシュな 香りの 美味しい オイルを 分けてくれる。 古くから 人間と 共存してきた。",
'zh-tw': "會分享自己香氣新鮮、美味可口的油。自古以來 就與人類共存,直到現在。",
th: "จะแบ่งน้ำมันแสนอร่อยที่มีกลิ่นหอมสดใหม่ให้ อาศัยอยู่ร่วมกับมนุษย์มาตั้งแต่อดีตกาล",
id: "Dolliv membagikan minyak lezat beraroma segar. Pokémon ini telah hidup bersama manusia sejak zaman dahulu."
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ビンタ",
'zh-tw': "巴掌",
th: "ตบ",
id: "Menampar"
},
damage: 20
}, {
cost: ["Grass", "Colorless"],
name: {
ja: "オイルかけ",
'zh-tw': "潑油",
th: "สาดน้ำมัน",
id: "Guyuran Minyak"
},
damage: 40,
effect: {
ja: "次の相手の番、このワザを受けたポケモンがワザを使うとき、相手はコインを1回投げる。ウラならそのワザは失敗。",
'zh-tw': "在下個對手的回合受到這個招式的寶可夢使用招式時對手擲1次硬幣。若為反面則那個招式失敗。",
th: "เทิร์นถัดไปของฝ่ายตรงข้าม เมื่อโปเกมอนที่ได้รับท่าต่อสู้นี้จะใช้ท่าต่อสู้ ฝ่ายตรงข้ามทอยเหรียญ 1 ครั้ง ถ้าออกก้อยท่าต่อสู้นั้นจะล้มเหลว",
id: "Pada giliran lawan berikutnya, saat Pokémon yang menerima serangan ini menggunakan serangan, lawan melempar koin 1 kali. Jika hasilnya sisi belakang, serangan tersebut gagal."
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card