“tongbu”
parent
8ff79a51cc
commit
d471fd04bf
|
|
@ -143,7 +143,11 @@ local function __getReason(data)
|
|||
return "提取能量包"
|
||||
elseif data.reason == 15 then
|
||||
return ""
|
||||
elseif data.reason == 18 then
|
||||
elseif data.reason == 16 then
|
||||
return "保险箱取出"
|
||||
elseif data.reason == 17 then
|
||||
return "存入保险箱"
|
||||
elseif data.reason == 18 then
|
||||
return "保底房卡"
|
||||
elseif data.reason == 20 then
|
||||
return "洗牌"
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ function Main()
|
|||
FairyGUI.FontManager.RegisterFont(FairyGUI.DynamicFont.New("SIYUAN", "base/static/fonts/SIYUAN.TTF"), null)
|
||||
FairyGUI.FontManager.RegisterFont(
|
||||
FairyGUI.DynamicFont.New("AlimamaFangYuanTiVF-Thin", "base/static/fonts/AlimamaFangYuanTiVF-Thin.ttf"), null)
|
||||
|
||||
FairyGUI.FontManager.RegisterFont(FairyGUI.DynamicFont.New("ALIBABAPUHUITI-3-55-REGULAR", "base/static/fonts/ALIBABAPUHUITI-3-55-REGULAR.TTF"), null)
|
||||
_game_info = json.decode(GameApplication.Instance.GameInfo)
|
||||
--_game_info["login_url"]="http://8.134.59.224:8101/"
|
||||
--pt(_game_info)
|
||||
|
|
|
|||
|
|
@ -28,6 +28,8 @@ function M:InitView(url)
|
|||
self._tex_round = self._view:GetChild("tex_round")
|
||||
self._tex_LeftCard = self._view:GetChild("remaining_card")
|
||||
self._anchor = self._view:GetChild("mask_tips")
|
||||
self._view:GetChild('wanfa_text').text =(self._room.room_config.round == 1 and '红把结' or '红中麻将') .. room.room_config.config.hpData.times/100
|
||||
|
||||
self._eventmap = {}
|
||||
|
||||
self._cmdmap = {}
|
||||
|
|
|
|||
|
|
@ -28,6 +28,8 @@ function M:InitView(url)
|
|||
self._tex_round = self._view:GetChild("tex_round")
|
||||
self._tex_LeftCard = self._view:GetChild("remaining_card")
|
||||
self._anchor = self._view:GetChild("mask_tips")
|
||||
self._view:GetChild('wanfa_text').text ='转转麻将' .. room.room_config.config.hpData.times/100
|
||||
|
||||
self._eventmap = {}
|
||||
|
||||
self._cmdmap = {}
|
||||
|
|
|
|||
|
|
@ -139,15 +139,15 @@ function M:InitView(url)
|
|||
local round = self._room.curren_round or 1
|
||||
local xpconfig = DataManager.CurrenRoom.room_config.config.xi_pai
|
||||
-- if flag_daniao then
|
||||
if xpconfig then
|
||||
if round > 1 then
|
||||
self._ctr_action.selectedIndex = 1
|
||||
else
|
||||
self._ctr_action.selectedIndex = 2
|
||||
end
|
||||
else
|
||||
if xpconfig then
|
||||
if round > 1 then
|
||||
self._ctr_action.selectedIndex = 1
|
||||
else
|
||||
self._ctr_action.selectedIndex = 2
|
||||
end
|
||||
else
|
||||
self._ctr_action.selectedIndex = 1
|
||||
end
|
||||
-- else
|
||||
-- self._ctr_action.selectedIndex = 3
|
||||
-- self.ctr_state.selectedIndex = 1
|
||||
|
|
@ -191,15 +191,19 @@ function M:InitView(url)
|
|||
self._view:GetChild('info_text'):GetChild('text').text = room.room_config:GetDes()
|
||||
if room.room_config.Leaf == 1 then
|
||||
if room.room_config.people_num == 2 then
|
||||
self._view:GetChild('wanfa_text').text = (self._room.room_config.Times == 1 and '跑把结' or '跑得快') .. room.score_times
|
||||
self._view:GetChild('wanfa_text').text = (self._room.room_config.Times == 1 and '跑把结' or '跑得快') ..
|
||||
room.score_times
|
||||
else
|
||||
self._view:GetChild('wanfa_text').text = (self._room.room_config.Times == 1 and '跑把结' or '跑得快') .. room.score_times
|
||||
self._view:GetChild('wanfa_text').text = (self._room.room_config.Times == 1 and '跑把结' or '跑得快') ..
|
||||
room.score_times
|
||||
end
|
||||
else
|
||||
if room.room_config.people_num == 2 then
|
||||
self._view:GetChild('wanfa_text').text = (self._room.room_config.Times == 1 and '跑把结' or '跑得快') .. room.score_times
|
||||
self._view:GetChild('wanfa_text').text = (self._room.room_config.Times == 1 and '跑把结' or '跑得快') ..
|
||||
room.score_times
|
||||
else
|
||||
self._view:GetChild('wanfa_text').text = (self._room.room_config.Times == 1 and '跑把结' or '跑得快') .. room.score_times
|
||||
self._view:GetChild('wanfa_text').text = (self._room.room_config.Times == 1 and '跑把结' or '跑得快') ..
|
||||
room.score_times
|
||||
end
|
||||
end
|
||||
local text_playName = self._view:GetChild('text_playName')
|
||||
|
|
@ -565,6 +569,14 @@ function M:EventInit()
|
|||
|
||||
|
||||
if p.seat == self._room.self_player.seat then
|
||||
local tempCardList = {}
|
||||
for i, v in ipairs(cardlist) do
|
||||
table.insert(tempCardList, card_info:ChangeOneCodeByFrom(v))
|
||||
end
|
||||
table.sort(tempCardList, function(a, b) return a < b end)
|
||||
for i, v in ipairs(tempCardList) do
|
||||
cardlist[i] = card_info:ChangeCodeByTo(v)
|
||||
end
|
||||
if self._room.room_config.people_num == 3 and self._room.room_config.fangzuobi == 1 then
|
||||
-- body
|
||||
card_info:InitPoker(cardlist, false, 1)
|
||||
|
|
@ -1229,6 +1241,14 @@ function M:ReConnectForStart()
|
|||
head_info._view:GetChild("shengyu").text = player.hand_count
|
||||
end
|
||||
if player.seat == self._room.self_player.seat then
|
||||
local tempCardList = {}
|
||||
for i, v in ipairs(player.hand_list) do
|
||||
table.insert(tempCardList, player_card_info:ChangeOneCodeByFrom(v))
|
||||
end
|
||||
table.sort(tempCardList, function(a, b) return a < b end)
|
||||
for i, v in ipairs(tempCardList) do
|
||||
player.hand_list[i] = player_card_info:ChangeCodeByTo(v)
|
||||
end
|
||||
if player.open ~= nil and player.open == 0 and self._room.room_config.people_num == 3 and self._room.room_config.fangzuobi == 1 then
|
||||
-- body
|
||||
self.MypokerList = player.hand_list
|
||||
|
|
@ -1247,7 +1267,6 @@ function M:ReConnectForStart()
|
|||
player_card_info._ctr_time_clock.selectedIndex = 1
|
||||
self._tex_leftTime = player_card_info._view_comp_clock
|
||||
self._left_time = 15
|
||||
|
||||
else
|
||||
-- head_info:MarkBank(true)
|
||||
if player.out_card_list[1] == 0 then
|
||||
|
|
|
|||
|
|
@ -82,6 +82,21 @@ function M:InitView(url)
|
|||
self._view:GetChild('roominfo_panel1'):GetChild('tex_beishu').text = ''
|
||||
end
|
||||
|
||||
self._view:GetChild('info_text'):GetChild('text').text = room.room_config:GetDes()
|
||||
if room.room_config.Leaf == 1 then
|
||||
if room.room_config.people_num == 2 then
|
||||
self._view:GetChild('wanfa_text').text = (self._room.room_config.Times == 1 and '跑把结' or '跑得快') .. room.room_config.config.hpData.times/100
|
||||
else
|
||||
self._view:GetChild('wanfa_text').text = (self._room.room_config.Times == 1 and '跑把结' or '跑得快') .. room.room_config.config.hpData.times/100
|
||||
end
|
||||
else
|
||||
if room.room_config.people_num == 2 then
|
||||
self._view:GetChild('wanfa_text').text = (self._room.room_config.Times == 1 and '跑把结' or '跑得快') .. room.room_config.config.hpData.times/100
|
||||
else
|
||||
self._view:GetChild('wanfa_text').text = (self._room.room_config.Times == 1 and '跑把结' or '跑得快') .. room.room_config.config.hpData.times/100
|
||||
end
|
||||
end
|
||||
|
||||
self._cardCheck = RunFast_CardCheck:InitFlag()
|
||||
self._gamectr._cardCheck = self._cardCheck
|
||||
|
||||
|
|
|
|||
|
|
@ -224,6 +224,8 @@ function M:InitPoker(pokerList, isPlayAni, open)
|
|||
elseif DataManager.CurrenRoom.cardsize == 1 then
|
||||
cs = 0.95
|
||||
end
|
||||
local card_width = 275 * cs
|
||||
|
||||
if isPlayAni == true then
|
||||
self.cor_init_poker =
|
||||
coroutine.start(
|
||||
|
|
@ -232,9 +234,8 @@ function M:InitPoker(pokerList, isPlayAni, open)
|
|||
if self._mainView._rightPanelView._settingView ~= nil then
|
||||
self._mainView._rightPanelView._settingView:SetBtnDismissRoomEnable(false)
|
||||
end
|
||||
local card_width = (GRoot.inst.width*0.95 - self._view_handCard.columnGap * 14) / 15 * cs
|
||||
self._view_handCard.align = FairyGUI.AlignType.Left
|
||||
self._view_handCard.width = card_width*15 + self._view_handCard.columnGap*14
|
||||
self._view_handCard.width = card_width * 15 + self._view_handCard.columnGap * 14
|
||||
self._view_handCard:Center()
|
||||
for i = #pokerList, 1, -1 do
|
||||
if pokerList[i] == 403 then
|
||||
|
|
@ -250,11 +251,11 @@ function M:InitPoker(pokerList, isPlayAni, open)
|
|||
self.card_list[#self.card_list + 1] = card_view
|
||||
btn_card.data = card_view
|
||||
btn_card.width = card_width
|
||||
btn_card.height = btn_card.width * 1.33 * 0.95
|
||||
-- btn_card.height = btn_card.width * 1.33 * 0.95
|
||||
btn_card:TweenFade(1, 0.1):OnComplete(function()
|
||||
btn_card.selected = false -- 先让所有牌掉下去,不知道为什么第一张牌回起来
|
||||
end)
|
||||
coroutine.wait(0.3 / #pokerList)
|
||||
coroutine.wait(0.01)
|
||||
end
|
||||
table.sort(self.card_list, tableSortNumber)
|
||||
self._view_handCard.x = 0
|
||||
|
|
@ -288,8 +289,8 @@ function M:InitPoker(pokerList, isPlayAni, open)
|
|||
local card_view = NewCardView(btn_card, card_number_code, card_flower_code)
|
||||
self.card_list[#self.card_list + 1] = card_view
|
||||
btn_card.data = card_view
|
||||
btn_card.width = (GRoot.inst.width*0.95 - self._view_handCard.columnGap * 14) / 15 * cs
|
||||
btn_card.height = btn_card.width * 1.33 * 0.95
|
||||
btn_card.width = card_width
|
||||
-- btn_card.height = btn_card.width * 1.33 * 0.95
|
||||
end
|
||||
table.sort(self.card_list, tableSortNumber)
|
||||
self:AddTouchMoveEvent(self._view_handCard)
|
||||
|
|
@ -518,11 +519,10 @@ end
|
|||
-- end
|
||||
function M:SetBtnCardColor(card, num)
|
||||
if DataManager.CurrenRoom.pai == 0 then
|
||||
card.btn_card:GetController('choose').selectedIndex = num
|
||||
card.btn_card:GetController('choose').selectedIndex = num
|
||||
else
|
||||
card.btn_card:GetController('choose2').selectedIndex = num
|
||||
card.btn_card:GetController('choose2').selectedIndex = num
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
function M:ShowPiao(piao)
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ function M:InitView(url)
|
|||
self._gamectr = ControllerManager.GetController(GameController)
|
||||
UIPackage.AddPackage('base/main_zipai/ui/Main_RunBeard')
|
||||
UIPackage.AddPackage('extend/zipai/fanpaofa/ui/Extend_Poker_FanPaoFa')
|
||||
printlog("room.room_config.people_num"..room.room_config.people_num)
|
||||
printlog("room.room_config.people_num" .. room.room_config.people_num)
|
||||
ZPPlayBackView.InitView(self, 'ui://Main_RunBeard/Main_' .. room.room_config.people_num)
|
||||
UpdateBeat:Add(self.OnUpdate, self)
|
||||
|
||||
|
|
@ -87,6 +87,8 @@ function M:InitView(url)
|
|||
local tex_roomid = rightpanel:GetChild('tex_roomid')
|
||||
tex_roomid.text = room.room_id
|
||||
rightpanel:GetChild('tex_gametype').text = room.room_config:GetGameName()
|
||||
self._view:GetChild('di_text').text =
|
||||
self._room.room_config:GetGameName() .. room.room_config.config.hpData.times/100
|
||||
|
||||
self._tex_round = self._view:GetChild('tex_round')
|
||||
self._tex_LeftCard = self._view:GetChild('remaining_card')
|
||||
|
|
@ -102,7 +104,7 @@ function M:InitView(url)
|
|||
self._cmdmap[Record_Event.Evt_ChangePaiXing] = self.CmdChangePaiXing
|
||||
self._cmdmap[Record_Event.Evt_result] = self.onResult
|
||||
|
||||
|
||||
|
||||
local btn_safe = self._view:GetChild('btn_safe')
|
||||
self.safe_arrow1 = btn_safe:GetChild("arrow1")
|
||||
self.safe_arrow2 = btn_safe:GetChild("arrow2")
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ ui://27vd145bhez87j26
|
|||
ui://27vd145bhez87j25
|
||||
ui://27vd145btjnvcfo
|
||||
ui://27vd145btjnvcfn
|
||||
ui://27vd145blktg7j6h
|
||||
ui://27vd145bik9v7imk
|
||||
ui://27vd145bik9v7imf
|
||||
ui://27vd145bik9v7img
|
||||
|
|
@ -42,8 +43,6 @@ ui://8wph7p8nyffng
|
|||
ui://8wph7p8nyffn1e
|
||||
ui://8wph7p8nyffn7w
|
||||
ui://8wph7p8nyffn89
|
||||
ui://9n9stu2enaueci9
|
||||
ui://9n9stu2enauecht
|
||||
ui://eyxz924gffp34g
|
||||
ui://4wmd3o8gvlhjde
|
||||
ui://z3z0ysurvlhj7t
|
||||
|
|
|
|||
|
|
@ -1 +1,7 @@
|
|||
{}
|
||||
{
|
||||
"objectStatus": {
|
||||
"n120_124ey": {
|
||||
"hidden": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -2,39 +2,31 @@
|
|||
"libview.firstColumnWidth": 413,
|
||||
"libview.iconScale": 0,
|
||||
"doc.openedDocs": [
|
||||
"ui://m7iejg46gltdhc9",
|
||||
"ui://m7iejg4610snh5j",
|
||||
"ui://v0j9abjygq7ms8",
|
||||
"ui://v0j9abjygq7mcc",
|
||||
"ui://v0j9abjygq7m85",
|
||||
"ui://lkq9ne9speuq8b",
|
||||
"ui://lkq9ne9speuq5a",
|
||||
"ui://v0j9abjygq7mc9",
|
||||
"ui://v0j9abjygq7mca",
|
||||
"ui://v0j9abjygq7mcb"
|
||||
"ui://8wph7p8nyffnmy",
|
||||
"ui://8wph7p8nyffn8s",
|
||||
"ui://m7iejg46mpllhv2",
|
||||
"ui://m7iejg46kwi0hkl",
|
||||
"ui://m7iejg46mpllhv5",
|
||||
"ui://8wph7p8nyffn2h",
|
||||
"ui://8wph7p8nhuw1cms",
|
||||
"ui://8wph7p8nhuw1cmm"
|
||||
],
|
||||
"test.device": "Huawei Mate20",
|
||||
"canvasColor": 10066329,
|
||||
"auxline2": true,
|
||||
"doc.activeDoc": "ui://v0j9abjygq7ms8",
|
||||
"doc.activeDoc": "ui://m7iejg46mpllhv5",
|
||||
"libview.twoColumn": false,
|
||||
"libview.expandedNodes": [
|
||||
"v0j9abjy",
|
||||
"8wph7p8n",
|
||||
"/",
|
||||
"v0j9abjy",
|
||||
"8wph7p8n",
|
||||
"/component/",
|
||||
"v0j9abjy",
|
||||
"/component/card/",
|
||||
"v0j9abjy",
|
||||
"/component/chi_peng_effect/",
|
||||
"4skil1l6",
|
||||
"/",
|
||||
"4skil1l6",
|
||||
"/component/",
|
||||
"4skil1l6",
|
||||
"/component/chi_peng_effect/",
|
||||
"4skil1l6",
|
||||
"/component/chi_peng_effect/image/"
|
||||
"8wph7p8n",
|
||||
"/component/newcard/",
|
||||
"8wph7p8n",
|
||||
"/component/newcard/1/",
|
||||
"8wph7p8n",
|
||||
"/component/newcard/素材/"
|
||||
],
|
||||
"auxline1": true,
|
||||
"snapToGrid": true,
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@
|
|||
</list>
|
||||
<component id="n77_syh3" name="btn_close" src="vg2c4" fileName="buttons/Btn_Close.xml" pkg="27vd145b" xy="900,-14" visible="false"/>
|
||||
<image id="n68_zgd9" name="n68" src="kxwjac" fileName="images/szsrk.png" xy="914,710" size="717,83" group="n70_zgd9"/>
|
||||
<text id="n71_zgd9" name="tex_chat" xy="936,711" size="669,83" group="n70_zgd9" visible="false" touchable="false" font="Microsoft YaHei" fontSize="36" color="#cfd3de" vAlign="middle" autoSize="none" bold="true" singleLine="true" autoClearText="true" text="发的发顺丰撒旦法" input="true" prompt="[color=#888888]输入内容[/color]" maxLength="20"/>
|
||||
<text id="n71_zgd9" name="tex_chat" xy="936,711" size="669,83" group="n70_zgd9" visible="false" touchable="false" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="36" color="#cfd3de" vAlign="middle" autoSize="none" bold="true" singleLine="true" autoClearText="true" text="发的发顺丰撒旦法" input="true" prompt="[color=#888888]输入内容[/color]" maxLength="20"/>
|
||||
<component id="n69_zgd9" name="btn_send" src="zgd92y" fileName="component/Button3.xml" xy="1644,708" size="182,110" group="n70_zgd9" visible="false" touchable="false"/>
|
||||
<group id="n70_zgd9" name="n70" xy="914,708" size="912,110" visible="false" advanced="true">
|
||||
<gearDisplay controller="sdk" pages="0"/>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
<image id="n4_hr0l" name="n4" src="k8tm7j6g" fileName="font/images/win/9bg_06.png" pkg="27vd145b" xy="0,1" size="979,92" alpha="0.8">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
<text id="n1" name="title" xy="0,1" size="979,92" font="Microsoft YaHei" fontSize="46" color="#ffffff" vAlign="middle" letterSpacing="-1" autoSize="none" singleLine="true" text="你太牛了">
|
||||
<text id="n1" name="title" xy="0,1" size="979,92" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="46" color="#ffffff" vAlign="middle" letterSpacing="-1" autoSize="none" singleLine="true" text="你太牛了">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</text>
|
||||
</displayList>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<image id="n0" name="back" src="e54q2s" fileName="images/game_icon_07.png" xy="2,-28" pivot="1,0" size="201,122" flip="vt">
|
||||
<relation target="n3" sidePair="width-width"/>
|
||||
</image>
|
||||
<text id="n3" name="title" xy="31,26" pivot="1,0" size="124,42" font="Microsoft YaHei" fontSize="30" color="#ffffff" align="center" vAlign="middle" text="你太牛了"/>
|
||||
<text id="n3" name="title" xy="31,26" pivot="1,0" size="124,42" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="30" color="#ffffff" align="center" vAlign="middle" text="你太牛了"/>
|
||||
</displayList>
|
||||
<relation target="n3" sidePair="width-width"/>
|
||||
<transition name="t0">
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<image id="n0" name="back" src="e54q2s" fileName="images/game_icon_07.png" xy="0,0" pivot="1,0" anchor="true" size="194,122" scale="-1,1">
|
||||
<relation target="n3" sidePair="width-width"/>
|
||||
</image>
|
||||
<text id="n3" name="title" xy="47,27" size="124,42" font="Microsoft YaHei" fontSize="30" color="#ffffff" text="你太牛了"/>
|
||||
<text id="n3" name="title" xy="47,27" size="124,42" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="30" color="#ffffff" text="你太牛了"/>
|
||||
</displayList>
|
||||
<relation target="n3" sidePair="width-width"/>
|
||||
<transition name="t0">
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
</graph>
|
||||
<component id="n4_9p4j" name="gcm_qiu" src="cjli6" fileName="UIPanel.xml" xy="872,465" size="1,1"/>
|
||||
<image id="n6_f86r" name="n6" src="f86rhxn" fileName="font/images/加载底(1).png" xy="477,442" size="897,117" group="n7_f86r"/>
|
||||
<text id="n3_lwcl" name="title" xy="776,473" size="592,54" group="n7_f86r" scale="0.9,0.9" font="Microsoft YaHei" fontSize="40" color="#ffffff" align="center" vAlign="middle" text="网络信号太差,正在检查网络中..."/>
|
||||
<text id="n3_lwcl" name="title" xy="776,473" size="592,54" group="n7_f86r" scale="0.9,0.9" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="40" color="#ffffff" align="center" vAlign="middle" text="网络信号太差,正在检查网络中..."/>
|
||||
<component id="n5_j1s2" name="n5" src="j4vkhxi" fileName="component/loading.xml" xy="684,448" group="n7_f86r"/>
|
||||
<group id="n7_f86r" name="n7" xy="477,442" size="897,117" advanced="true">
|
||||
<relation target="" sidePair="center-center,middle-middle"/>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
<image id="n0_lwcl" name="bg" src="m0eibt" fileName="font/images/win/tkd.png" xy="0,0" size="736,590">
|
||||
<relation target="" sidePair="width-width,height-height" />
|
||||
</image>
|
||||
<text id="n5_ovii" name="n5" xy="208,57" size="148,70" visible="false" font="Microsoft YaHei" fontSize="36" color="#ffffff" autoSize="none" text="" bold="true">
|
||||
<text id="n5_ovii" name="n5" xy="208,57" size="148,70" visible="false" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="36" color="#ffffff" autoSize="none" text="" bold="true">
|
||||
<gearText controller="title" pages="0" values="" default="设置" />
|
||||
</text>
|
||||
</displayList>
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
<loader id="n1_eeqm" name="icon" xy="0,0" size="262,82" url="ui://27vd145bofsx1k" align="center" vAlign="middle">
|
||||
<relation target="" sidePair="width-width,height-height" />
|
||||
</loader>
|
||||
<text id="n2_ovii" name="title" xy="0,0" pivot="0.5,0.5" size="262,82" font="Microsoft YaHei" fontSize="36" color="#ffffff" align="center" vAlign="middle" letterSpacing="5" autoSize="none" text="确定" bold="true" />
|
||||
<text id="n2_ovii" name="title" xy="0,0" pivot="0.5,0.5" size="262,82" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="36" color="#ffffff" align="center" vAlign="middle" letterSpacing="5" autoSize="none" text="确定" bold="true" />
|
||||
</displayList>
|
||||
<Button downEffect="dark" downEffectValue=".8" />
|
||||
</component>
|
||||
|
|
@ -10,7 +10,7 @@
|
|||
<gearDisplay controller="button" pages="1,3" />
|
||||
<relation target="" sidePair="width-width,height-height" />
|
||||
</image>
|
||||
<text id="n3_ovii" name="n3" xy="0,0" size="262,82" font="Microsoft YaHei" fontSize="36" color="#a65e3e" align="center" vAlign="middle" letterSpacing="4" autoSize="none" text="取消" bold="true" />
|
||||
<text id="n3_ovii" name="n3" xy="0,0" size="262,82" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="36" color="#a65e3e" align="center" vAlign="middle" letterSpacing="4" autoSize="none" text="取消" bold="true" />
|
||||
</displayList>
|
||||
<Button downEffect="dark" downEffectValue=".8" />
|
||||
</component>
|
||||
|
|
@ -5,7 +5,7 @@
|
|||
<loader id="n1_eeqm" name="icon" xy="0,0" size="262,82" url="ui://27vd145bofsx1k" align="center" vAlign="middle" clearOnPublish="true">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</loader>
|
||||
<text id="n2_ovii" name="title" xy="0,0" pivot="0.5,0.5" size="262,82" font="Microsoft YaHei" fontSize="36" color="#ffffff" align="center" vAlign="middle" letterSpacing="5" autoSize="none" bold="true" text=""/>
|
||||
<text id="n2_ovii" name="title" xy="0,0" pivot="0.5,0.5" size="262,82" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="36" color="#ffffff" align="center" vAlign="middle" letterSpacing="5" autoSize="none" bold="true" text=""/>
|
||||
</displayList>
|
||||
<Button downEffect="dark" downEffectValue=".8"/>
|
||||
</component>
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
<image id="n5_h2hj" name="n5" src="h2hj7iiu" fileName="font/images/xx_button_01_2.png" xy="0,0" size="298,133">
|
||||
<gearDisplay controller="button" pages="1"/>
|
||||
</image>
|
||||
<text id="n2_eeqm" name="title" xy="28,0" size="243,114" font="Microsoft YaHei" fontSize="46" color="#ffffff" vAlign="middle" autoSize="none" bold="true" singleLine="true" autoClearText="true" text="实名">
|
||||
<text id="n2_eeqm" name="title" xy="28,0" size="243,114" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="46" color="#ffffff" vAlign="middle" autoSize="none" bold="true" singleLine="true" autoClearText="true" text="实名">
|
||||
<gearDisplay controller="button" pages="0"/>
|
||||
<gearColor controller="button" pages="0,1" values="#55774e,#000000|#ffffff,#000000"/>
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -20,8 +20,8 @@
|
|||
<component id="n9" name="gcm_wifi" src="yffng5" fileName="component/phone_info/Component3.xml" pkg="8wph7p8n" xy="473,5" aspect="true" touchable="false">
|
||||
<gearDisplay controller="xinhao" pages="1"/>
|
||||
</component>
|
||||
<text id="n7" name="tex_data" xy="320,30" size="212,49" visible="false" font="Microsoft YaHei" fontSize="36" color="#ffffff" align="center" vAlign="middle" bold="true" text="2017-07-09"/>
|
||||
<text id="n12_yyhx" name="tex_time" xy="942,17" size="122,61" font="Microsoft YaHei" fontSize="46" color="#ffffff" vAlign="middle" text="13:00">
|
||||
<text id="n7" name="tex_data" xy="320,30" size="212,49" visible="false" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="36" color="#ffffff" align="center" vAlign="middle" bold="true" text="2017-07-09"/>
|
||||
<text id="n12_yyhx" name="tex_time" xy="942,17" size="122,61" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="46" color="#ffffff" vAlign="middle" text="13:00">
|
||||
<relation target="" sidePair="left-left%,top-top%"/>
|
||||
</text>
|
||||
</displayList>
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="280,62" initName="roominfo_panel">
|
||||
<displayList>
|
||||
<text id="n1_h1uu" name="n1" xy="9,0" size="107,61" group="n5_qpk6" font="Microsoft YaHei" fontSize="46" color="#ffffff" vAlign="middle" text="房号:"/>
|
||||
<text id="n2_h1uu" name="tex_roomid" xy="116,0" size="164,61" group="n5_qpk6" font="Microsoft YaHei" fontSize="46" color="#ffffff" vAlign="middle" text="123456"/>
|
||||
<text id="n1_h1uu" name="n1" xy="9,0" size="107,61" group="n5_qpk6" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="46" color="#ffffff" vAlign="middle" text="房号:"/>
|
||||
<text id="n2_h1uu" name="tex_roomid" xy="116,0" size="164,61" group="n5_qpk6" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="46" color="#ffffff" vAlign="middle" text="123456"/>
|
||||
<text id="n3_h1uu" name="tex_gametype" xy="89,28" size="134,33" group="n5_qpk6" visible="false" fontSize="25" color="#ffffff" autoSize="none" bold="true" text="湘乡告胡子 "/>
|
||||
<text id="n4_h1uu" name="tex_roomconfig" xy="204,6" size="10,9" group="n5_qpk6" visible="false" fontSize="1" color="#ffffff" autoSize="none" bold="true" text=" "/>
|
||||
<text id="n7_f2pr" name="tex_beishu" xy="0,0" size="65,41" group="n5_qpk6" visible="false" fontSize="28" color="#b93f05" vAlign="middle" autoSize="shrink" bold="true" text="500倍"/>
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
<image id="n7" name="n7" src="onpsf" fileName="component/create_room/image/single_btn_s.png" xy="4,5">
|
||||
<gearDisplay controller="button" pages="1,3"/>
|
||||
</image>
|
||||
<text id="n8" name="title" xy="74,1" size="265,69" font="Microsoft YaHei" fontSize="46" color="#917033" vAlign="middle" autoSize="none" text="2"/>
|
||||
<text id="n8" name="title" xy="74,1" size="265,69" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="46" color="#917033" vAlign="middle" autoSize="none" text="2"/>
|
||||
</displayList>
|
||||
<Button mode="Radio"/>
|
||||
</component>
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
<controller name="button" pages="0,up,1,down" selected="1"/>
|
||||
<displayList>
|
||||
<image id="n7_rpaz" name="n7" src="onpsi" fileName="component/create_room/image/multiple_btn_n.png" xy="0,0" aspect="true"/>
|
||||
<text id="n9_rpaz" name="title" xy="69,-1" size="10,62" font="Microsoft YaHei" fontSize="46" color="#917033" vAlign="middle" text=""/>
|
||||
<text id="n9_rpaz" name="title" xy="69,-1" size="10,62" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="46" color="#917033" vAlign="middle" text=""/>
|
||||
<image id="n11_vyn3" name="n11" src="onpsj" fileName="component/create_room/image/gou.png" xy="-5,-14">
|
||||
<gearDisplay controller="button" pages="1"/>
|
||||
</image>
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
<image id="n7_rpaz" name="n7" src="m16m7ijj" fileName="component/create_room/image/Rectangle 388.png" xy="1,8">
|
||||
<gearDisplay controller="button" pages="0"/>
|
||||
</image>
|
||||
<text id="n9_rpaz" name="title" xy="42,0" size="185,47" font="Microsoft YaHei" fontSize="26" color="#c3a864" vAlign="middle" autoSize="shrink" bold="true" text="积分操作"/>
|
||||
<text id="n9_rpaz" name="title" xy="42,0" size="185,47" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="26" color="#c3a864" vAlign="middle" autoSize="shrink" bold="true" text="积分操作"/>
|
||||
<image id="n10_vyn3" name="n10" src="m16m7ijj" fileName="component/create_room/image/Rectangle 388.png" xy="1,8">
|
||||
<gearDisplay controller="button" pages="1"/>
|
||||
</image>
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
<gearDisplay controller="button" pages="1,2" />
|
||||
<relation target="" sidePair="width-width,height-height" />
|
||||
</graph>
|
||||
<text id="n2_mkdv" name="title" xy="0,0" size="100,42" font="Microsoft YaHei" fontSize="28" color="#ffffff" vAlign="middle" autoSize="none" singleLine="true" text="" bold="true">
|
||||
<text id="n2_mkdv" name="title" xy="0,0" size="100,42" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#ffffff" vAlign="middle" autoSize="none" singleLine="true" text="" bold="true">
|
||||
<relation target="" sidePair="width-width,height-height" />
|
||||
</text>
|
||||
</displayList>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<component size="163,60" extention="Button" designImageAlpha="0">
|
||||
<controller name="type" exported="true" pages="0,,1,,2," selected="0"/>
|
||||
<displayList>
|
||||
<text id="n10_qjw9" name="title" xy="0,0" size="163,62" font="Microsoft YaHei" fontSize="46" color="#43633d" vAlign="middle" autoSize="shrink" text="">
|
||||
<text id="n10_qjw9" name="title" xy="0,0" size="163,62" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="46" color="#43633d" vAlign="middle" autoSize="shrink" text="">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</text>
|
||||
</displayList>
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
<loader id="n5" name="icon" xy="0,0" size="140,60" url="ui://27vd145boviihz2" align="center" vAlign="middle" autoSize="true">
|
||||
<relation target="" sidePair="width-width,height-height" />
|
||||
</loader>
|
||||
<text id="n6_ovii" name="title" xy="0,0" size="140,60" font="Microsoft YaHei" fontSize="28" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="1" bold="true" />
|
||||
<text id="n6_ovii" name="title" xy="0,0" size="140,60" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="1" bold="true" />
|
||||
</displayList>
|
||||
<Button downEffect="dark" downEffectValue=".8" />
|
||||
</component>
|
||||
|
|
@ -10,7 +10,7 @@
|
|||
<gearDisplay controller="button" pages="1,3" />
|
||||
<relation target="" sidePair="width-width,height-height" />
|
||||
</image>
|
||||
<text id="n2_10xl7" name="title" xy="0,-3" size="70,60" font="Microsoft YaHei" fontSize="28" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="清零" bold="true" />
|
||||
<text id="n2_10xl7" name="title" xy="0,-3" size="70,60" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="清零" bold="true" />
|
||||
</displayList>
|
||||
<Button downEffect="dark" downEffectValue=".8" />
|
||||
</component>
|
||||
|
|
@ -10,7 +10,7 @@
|
|||
<gearDisplay controller="button" pages="1,3"/>
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
<text id="n2_10xl7" name="title" xy="0,-10" size="70,60" font="Microsoft YaHei" fontSize="40" color="#ffffff" align="center" vAlign="middle" autoSize="none" bold="true" text="."/>
|
||||
<text id="n2_10xl7" name="title" xy="0,-10" size="70,60" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="40" color="#ffffff" align="center" vAlign="middle" autoSize="none" bold="true" text="."/>
|
||||
</displayList>
|
||||
<Button downEffect="dark" downEffectValue=".8"/>
|
||||
</component>
|
||||
|
|
@ -10,7 +10,7 @@
|
|||
<gearDisplay controller="button" pages="1,3" />
|
||||
<relation target="" sidePair="width-width,height-height" />
|
||||
</image>
|
||||
<text id="n2_10xl7" name="title" xy="0,-3" size="70,60" font="Microsoft YaHei" fontSize="28" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="0" bold="true" />
|
||||
<text id="n2_10xl7" name="title" xy="0,-3" size="70,60" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="0" bold="true" />
|
||||
</displayList>
|
||||
<Button downEffect="dark" downEffectValue=".8" />
|
||||
</component>
|
||||
|
|
@ -6,11 +6,11 @@
|
|||
<relation target="" sidePair="width-width,height-height"/>
|
||||
<Button title="申请解散"/>
|
||||
</component>
|
||||
<text id="n11_bt6w" name="n11" xy="443,133" size="188,62" group="n16_fscl" font="Microsoft YaHei" fontSize="46" color="#e83e3e" align="center" vAlign="middle" text="倒计时:"/>
|
||||
<text id="n12_bt6w" name="tex_time" xy="611,134" size="105,62" group="n16_fscl" font="Microsoft YaHei" fontSize="46" color="#e83e3e" text="180s"/>
|
||||
<text id="n11_bt6w" name="n11" xy="443,133" size="188,62" group="n16_fscl" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="46" color="#e83e3e" align="center" vAlign="middle" text="倒计时:"/>
|
||||
<text id="n12_bt6w" name="tex_time" xy="611,134" size="105,62" group="n16_fscl" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="46" color="#e83e3e" text="180s"/>
|
||||
<group id="n16_fscl" name="n16" xy="443,133" size="273,63"/>
|
||||
<text id="n0_pgy9" name="tex_tip" xy="36,214" size="1086,65" font="Microsoft YaHei" fontSize="42" color="#43633d" align="center" vAlign="middle" ubb="true" autoSize="none" text="[color=#902F5D]【淡淡对对对的道的】[/color]发起了解散房间申请,是否同意?"/>
|
||||
<text id="n10_bt6w" name="n10" xy="262,295" size="634,57" font="Microsoft YaHei" fontSize="42" color="#43633d" align="center" vAlign="middle" text="(倒计时之内不操作则视为同意)"/>
|
||||
<text id="n0_pgy9" name="tex_tip" xy="36,214" size="1086,65" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="42" color="#43633d" align="center" vAlign="middle" ubb="true" autoSize="none" text="[color=#902F5D]【淡淡对对对的道的】[/color]发起了解散房间申请,是否同意?"/>
|
||||
<text id="n10_bt6w" name="n10" xy="262,295" size="634,57" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="42" color="#43633d" align="center" vAlign="middle" text="(倒计时之内不操作则视为同意)"/>
|
||||
<list id="n13_bt6w" name="lst_player" xy="78,390" size="1003,143" touchable="false" layout="flow_hz" overflow="scroll" lineGap="11" colGap="17" lineItemCount="4" defaultItem="ui://27vd145bbt6w96" align="center" vAlign="middle" autoClearItems="true">
|
||||
<item/>
|
||||
<item/>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<component size="337,51">
|
||||
<controller name="falg" pages="0,,1," selected="0"/>
|
||||
<displayList>
|
||||
<text id="n1_bt6w" name="tex_name" xy="3,0" size="292,49" font="Microsoft YaHei" fontSize="36" color="#43633d" align="center" vAlign="middle" autoSize="none" text="地方的负担对方答"/>
|
||||
<text id="n1_bt6w" name="tex_name" xy="3,0" size="292,49" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="36" color="#43633d" align="center" vAlign="middle" autoSize="none" text="地方的负担对方答"/>
|
||||
<image id="n3_fscl" name="n3" src="otnw9p" fileName="component/create_room/image/pic08.png" xy="295,5" size="42,41" group="n5_fscl"/>
|
||||
<image id="n4_fscl" name="n4" src="otnw9q" fileName="component/create_room/image/pic09.png" xy="295,9" size="42,42" group="n5_fscl">
|
||||
<gearDisplay controller="falg" pages="1"/>
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
<image id="n7" name="n7" src="onpsf" fileName="component/create_room/image/single_btn_s.png" xy="4,5">
|
||||
<gearDisplay controller="button" pages="1,3"/>
|
||||
</image>
|
||||
<text id="n8" name="title" xy="74,1" size="265,69" font="Microsoft YaHei" fontSize="46" color="#917033" vAlign="middle" autoSize="none" text="2"/>
|
||||
<text id="n8" name="title" xy="74,1" size="265,69" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="46" color="#917033" vAlign="middle" autoSize="none" text="2"/>
|
||||
</displayList>
|
||||
<Button mode="Radio"/>
|
||||
</component>
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
<controller name="button" pages="0,up,1,down" selected="1"/>
|
||||
<displayList>
|
||||
<image id="n7_rpaz" name="n7" src="onpsi" fileName="component/create_room/image/multiple_btn_n.png" xy="0,0" aspect="true"/>
|
||||
<text id="n9_rpaz" name="title" xy="69,-1" size="10,62" font="Microsoft YaHei" fontSize="46" color="#917033" vAlign="middle" text=""/>
|
||||
<text id="n9_rpaz" name="title" xy="69,-1" size="10,62" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="46" color="#917033" vAlign="middle" text=""/>
|
||||
<image id="n11_vyn3" name="n11" src="onpsj" fileName="component/create_room/image/gou.png" xy="-5,-14">
|
||||
<gearDisplay controller="button" pages="1"/>
|
||||
</image>
|
||||
|
|
|
|||
|
|
@ -8,10 +8,10 @@
|
|||
</controller>
|
||||
<displayList>
|
||||
<image id="n11_nnri" name="n11" src="hr0l7hzk" fileName="font/images/win/9bg_05.png" xy="0,0" size="478,70"/>
|
||||
<text id="n9_yffn" name="text_title" xy="40,0" size="10,69" font="Microsoft YaHei" fontSize="52" color="#80622c" text="">
|
||||
<text id="n9_yffn" name="text_title" xy="40,0" size="10,69" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="52" color="#80622c" text="">
|
||||
<relation target="" sidePair="left-left"/>
|
||||
</text>
|
||||
<text id="n10_yffn" name="text_value" xy="418,0" size="10,69" font="Microsoft YaHei" fontSize="52" color="#80622c" text="">
|
||||
<text id="n10_yffn" name="text_value" xy="418,0" size="10,69" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="52" color="#80622c" text="">
|
||||
<relation target="" sidePair="right-right"/>
|
||||
</text>
|
||||
</displayList>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<component size="163,60" extention="Button" designImageAlpha="0">
|
||||
<controller name="type" exported="true" pages="0,,1,,2," selected="0"/>
|
||||
<displayList>
|
||||
<text id="n10_qjw9" name="title" xy="0,0" size="163,62" font="Microsoft YaHei" fontSize="46" color="#43633d" vAlign="middle" autoSize="shrink" text="">
|
||||
<text id="n10_qjw9" name="title" xy="0,0" size="163,62" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="46" color="#43633d" vAlign="middle" autoSize="shrink" text="">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</text>
|
||||
</displayList>
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
<image id="n16_lwcl" name="n16" src="lwcl2h" fileName="images/head/touxiang_icon_03.png" xy="344,32" size="106,34" group="n7" visible="false">
|
||||
<relation target="n4" sidePair="left-right" />
|
||||
</image>
|
||||
<text id="n40_q6sp" name="tex_lvl" xy="353,35" size="89,27" group="n7" visible="false" font="Microsoft YaHei" fontSize="20" color="#5b2793" align="center" vAlign="middle" autoSize="none" text="初级玩家" bold="true">
|
||||
<text id="n40_q6sp" name="tex_lvl" xy="353,35" size="89,27" group="n7" visible="false" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#5b2793" align="center" vAlign="middle" autoSize="none" text="初级玩家" bold="true">
|
||||
<relation target="n16_lwcl" sidePair="center-center,middle-middle" />
|
||||
</text>
|
||||
<text id="n42_qvbx" name="tex_id" xy="387,80" size="14,42" group="n7" fontSize="30" color="#5b2793" text="-" bold="true" />
|
||||
|
|
|
|||
|
|
@ -10,9 +10,9 @@
|
|||
<component id="n15_10i2p" name="btn_close" src="vg2c4" fileName="buttons/Btn_Close.xml" xy="1407,-14" size="107,107"/>
|
||||
<graph id="n5_qmc1" name="n5" xy="197,225" size="306,306" scale="1.3,1.3" type="rect" lineSize="3" lineColor="#ffffffff" fillColor="#4cffffff" corner="20"/>
|
||||
<loader id="n4_qmc1" name="loader_icon" xy="209,237" size="283,283" scale="1.3,1.3" align="center" vAlign="middle" fill="scaleFree"/>
|
||||
<text id="n6_qmc1" name="tex_id" xy="617,365" size="829,104" font="Microsoft YaHei" fontSize="80" color="#444444" autoSize="none" text="#43633D"/>
|
||||
<text id="n7_qmc1" name="tex_ip" xy="617,488" size="827,104" visible="false" font="Microsoft YaHei" fontSize="80" color="#444444" autoSize="none" text="9A5F34"/>
|
||||
<text id="n8_qmc1" name="tex_name" xy="617,241" size="832,104" font="Microsoft YaHei" fontSize="80" color="#444444" autoSize="none" text="9A5F34"/>
|
||||
<text id="n6_qmc1" name="tex_id" xy="617,365" size="829,104" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="80" color="#444444" autoSize="none" text="#43633D"/>
|
||||
<text id="n7_qmc1" name="tex_ip" xy="617,488" size="827,104" visible="false" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="80" color="#444444" autoSize="none" text="9A5F34"/>
|
||||
<text id="n8_qmc1" name="tex_name" xy="617,241" size="832,104" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="80" color="#444444" autoSize="none" text="9A5F34"/>
|
||||
<graph id="n16_10i2p" name="n16" xy="43,682" pivot="0.5,0.5" size="1413,211" group="n13_fj6f" type="rect" lineSize="0" lineColor="#ffb8c7a5" fillColor="#ffb8c7a5" corner="30"/>
|
||||
<component id="n9_qmc1" name="btn_boom" src="hez87j27" fileName="component/Component/btn_emoji.xml" xy="62,697" group="n13_fj6f">
|
||||
<Button icon="ui://27vd145bhez87j28"/>
|
||||
|
|
|
|||
|
|
@ -33,10 +33,10 @@
|
|||
<item />
|
||||
</list>
|
||||
<text id="n10_tjnv" name="n10" xy="26,367" size="95,34" fontSize="30" color="#624520" align="center" vAlign="middle" text="战绩:" bold="true" />
|
||||
<text id="n11_tjnv" name="txt_positive" xy="102,354" size="213,64" font="Microsoft YaHei" fontSize="14" color="#624520" vAlign="middle" autoSize="none" text="" bold="true">
|
||||
<text id="n11_tjnv" name="txt_positive" xy="102,354" size="213,64" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="14" color="#624520" vAlign="middle" autoSize="none" text="" bold="true">
|
||||
<gearDisplay controller="pn" pages="1" />
|
||||
</text>
|
||||
<text id="n12_tjnv" name="txt_navigate" xy="102,354" size="213,64" font="Microsoft YaHei" fontSize="14" color="#624520" vAlign="middle" autoSize="none" text="234234" bold="true">
|
||||
<text id="n12_tjnv" name="txt_navigate" xy="102,354" size="213,64" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="14" color="#624520" vAlign="middle" autoSize="none" text="234234" bold="true">
|
||||
<gearDisplay controller="pn" pages="0" />
|
||||
</text>
|
||||
<image id="n13_tjnv" name="n13" src="tjnvcg2" fileName="component/result/images/tgz.png" xy="135,276">
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<displayList>
|
||||
<text id="n0_l8gg" name="n0" xy="19,0" size="142,61" group="n6_l8gg" visible="false" fontSize="46" color="#5b2793" bold="true" text="玩法:"/>
|
||||
<text id="n1_l8gg" name="tex_gametype" xy="109,0" size="198,62" group="n6_l8gg" visible="false" fontSize="46" color="#5b2793" autoSize="none" bold="true" text="红中麻将"/>
|
||||
<text id="n4_l8gg" name="tex_roomconfig" xy="19,10" size="895,319" group="n6_l8gg" font="Microsoft YaHei" fontSize="46" color="#43633d" align="center" autoSize="none" text="房主设置介绍">
|
||||
<text id="n4_l8gg" name="tex_roomconfig" xy="19,10" size="895,319" group="n6_l8gg" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="46" color="#43633d" align="center" autoSize="none" text="房主设置介绍">
|
||||
<gearXY controller="hide_id" pages="0,1" values="19,10|19,65"/>
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -6,8 +6,8 @@
|
|||
<Button title="玩法详情"/>
|
||||
</component>
|
||||
<component id="n6_xyf8" name="btn_close2" src="j0h759" fileName="component/rule/Component2.xml" xy="0,12" size="1635,848"/>
|
||||
<text id="n10_i2p6" name="n10" xy="132,172" size="889,255" group="n3_xyf8" visible="false" font="Microsoft YaHei" fontSize="30" color="#4297f9" align="center" vAlign="middle" autoSize="none" bold="true" text="《玩法规则》"/>
|
||||
<text id="n11_i2p6" name="text_gameName" xy="185,140" size="889,74" group="n3_xyf8" font="Microsoft YaHei" fontSize="56" color="#444444" align="center" vAlign="middle" autoSize="none" text="《房主设置》"/>
|
||||
<text id="n10_i2p6" name="n10" xy="132,172" size="889,255" group="n3_xyf8" visible="false" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="30" color="#4297f9" align="center" vAlign="middle" autoSize="none" bold="true" text="《玩法规则》"/>
|
||||
<text id="n11_i2p6" name="text_gameName" xy="185,140" size="889,74" group="n3_xyf8" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="56" color="#444444" align="center" vAlign="middle" autoSize="none" text="《房主设置》"/>
|
||||
<component id="n0_l8gg" name="n0" src="eeqmcgu" fileName="Win_Frame_full.xml" xy="93,102" size="1457,682" group="n3_xyf8" visible="false" controller="show_line,1,show_di,1,style,1">
|
||||
<Button icon="ui://27vd145bxyf8b7"/>
|
||||
</component>
|
||||
|
|
|
|||
|
|
@ -9,8 +9,8 @@
|
|||
<component id="n9_i2p6" name="btn_close" src="i2p67hzg" fileName="buttons/Btn_close(1).xml" xy="1071,111">
|
||||
<Button icon="ui://27vd145bi2p67hzf" />
|
||||
</component>
|
||||
<text id="n10_i2p6" name="n10" xy="325,210" size="194,42" group="n3_xyf8" font="Microsoft YaHei" fontSize="30" color="#4297f9" align="center" vAlign="middle" autoSize="none" text="《玩法规则》" bold="true" />
|
||||
<text id="n11_i2p6" name="n11" xy="828,211" size="194,42" group="n3_xyf8" font="Microsoft YaHei" fontSize="30" color="#4297f9" align="center" vAlign="middle" autoSize="none" text="《房主设置》" bold="true" />
|
||||
<text id="n10_i2p6" name="n10" xy="325,210" size="194,42" group="n3_xyf8" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="30" color="#4297f9" align="center" vAlign="middle" autoSize="none" text="《玩法规则》" bold="true" />
|
||||
<text id="n11_i2p6" name="n11" xy="828,211" size="194,42" group="n3_xyf8" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="30" color="#4297f9" align="center" vAlign="middle" autoSize="none" text="《房主设置》" bold="true" />
|
||||
<component id="n0_l8gg" name="n0" src="eeqmcgu" fileName="Win_Frame_full.xml" xy="286,140" size="762,469" group="n3_xyf8" visible="false" controller="show_line,1,show_di,1,style,1">
|
||||
<Button icon="ui://27vd145bxyf8b7" />
|
||||
</component>
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -61,7 +61,7 @@
|
|||
<image id="n97_cvc8" name="n97" src="cvc87i5k" fileName="images/btn_keyboard/qingling.png" xy="415,517" group="n88_omkm" />
|
||||
<group id="n88_omkm" name="input_panel" xy="43,180" size="716,415" group="n92_omkm" />
|
||||
<image id="n89_omkm" name="n89" src="oviihz1" fileName="images/btn_keyboard/bg_05.png" xy="44,81" group="n91_omkm" />
|
||||
<text id="n90_omkm" name="tex_num" xy="45,83" size="704,94" group="n91_omkm" font="Microsoft YaHei" fontSize="36" color="#825c38" vAlign="middle" autoSize="none" text="123" bold="true" />
|
||||
<text id="n90_omkm" name="tex_num" xy="45,83" size="704,94" group="n91_omkm" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="36" color="#825c38" vAlign="middle" autoSize="none" text="123" bold="true" />
|
||||
<group id="n91_omkm" name="show" xy="44,81" size="711,96" group="n92_omkm" />
|
||||
<group id="n92_omkm" name="n92" xy="43,81" size="716,514" advanced="true">
|
||||
<relation target="" sidePair="center-center%" />
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@
|
|||
<image id="n97_cvc8" name="n97" src="cvc87i5k" fileName="images/btn_keyboard/qingling.png" xy="415,517" group="n88_omkm" />
|
||||
<group id="n88_omkm" name="input_panel" xy="43,180" size="716,415" group="n92_omkm" />
|
||||
<image id="n89_omkm" name="n89" src="oviihz1" fileName="images/btn_keyboard/bg_05.png" xy="44,81" group="n91_omkm" />
|
||||
<text id="n90_omkm" name="tex_num" xy="45,83" size="704,94" group="n91_omkm" font="Microsoft YaHei" fontSize="36" color="#825c38" vAlign="middle" autoSize="none" text="123" bold="true" />
|
||||
<text id="n90_omkm" name="tex_num" xy="45,83" size="704,94" group="n91_omkm" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="36" color="#825c38" vAlign="middle" autoSize="none" text="123" bold="true" />
|
||||
<group id="n91_omkm" name="show" xy="44,81" size="711,96" group="n92_omkm" />
|
||||
<group id="n92_omkm" name="n92" xy="43,81" size="716,514" advanced="true">
|
||||
<relation target="" sidePair="center-center%" />
|
||||
|
|
|
|||
|
|
@ -1603,6 +1603,7 @@
|
|||
<image id="s1xu7j6e" name="8 - 7.png" path="/font/font_table_gameName/"/>
|
||||
<image id="s1xu7j6f" name="9 - 8.png" path="/font/font_table_gameName/"/>
|
||||
<image id="k8tm7j6g" name="9bg_06.png" path="/font/images/win/" exported="true"/>
|
||||
<font id="lktg7j6h" name="ALIBABAPUHUITI-3-55-REGULAR.TTF" path="/font/" renderMode="" samplePointSize="16"/>
|
||||
</resources>
|
||||
<publish name="Common" path="..\wb_unity_pro\Assets\ART\base\common\ui" packageCount="2">
|
||||
<atlas name="默认" index="0"/>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
<loader id="n3_hp0b" name="icon" xy="19,54" pivot="0.5,0.5" size="50,30" url="ui://lxhyy2sdh1uu1s" autoSize="true">
|
||||
<gearColor controller="color" pages="0,1" values="#ffffff|#ffff66" />
|
||||
</loader>
|
||||
<text id="n6_n9k8" name="tex_score" xy="-22,-43" size="133,76" visible="false" font="Microsoft YaHei" fontSize="48" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="+10" bold="true">
|
||||
<text id="n6_n9k8" name="tex_score" xy="-22,-43" size="133,76" visible="false" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="+10" bold="true">
|
||||
<gearDisplay controller="bg" pages="1" />
|
||||
</text>
|
||||
</displayList>
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
<graph id="n31_128w8" name="n31" xy="0,0" size="1300,141" type="rect" lineSize="0" fillColor="#801c5360" />
|
||||
<loader id="n2_fux2" name="seat" xy="42,47" size="51,50" url="ui://lxhyy2sdfux2ee" align="right" vAlign="middle" />
|
||||
<text id="n5_fux2" name="playerName" xy="0,110" size="130,24" fontSize="18" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" singleLine="true" autoClearText="true" text="fsdafdsafdsa" bold="true" />
|
||||
<text id="n7_fux2" name="tex_hp" xy="1086,1" size="144,52" font="Microsoft YaHei" fontSize="48" color="#ffffff" align="center" vAlign="middle" ubb="true" autoSize="shrink" autoClearText="true" text="+10000" bold="true">
|
||||
<text id="n7_fux2" name="tex_hp" xy="1086,1" size="144,52" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#ffffff" align="center" vAlign="middle" ubb="true" autoSize="shrink" autoClearText="true" text="+10000" bold="true">
|
||||
<gearDisplay controller="nonnegative" pages="1" />
|
||||
</text>
|
||||
<component id="n9_nrno" name="btn_head" src="kio210" fileName="component/head/Head.xml" pkg="27vd145b" xy="16,7" size="95,95" />
|
||||
|
|
|
|||
|
|
@ -8,15 +8,15 @@
|
|||
<displayList>
|
||||
<image id="n25_xtwh" name="n25" src="xtwh97" fileName="component/result/di(1).png" pkg="27vd145b" xy="0,0" size="205,464" />
|
||||
<text id="n2_fux2" name="name" xy="0,84" size="210,39" fontSize="24" color="#ffffff" align="center" vAlign="middle" autoSize="none" strokeColor="#174a4b" strokeSize="2" text="玩家的名字則麽長~~" bold="true" />
|
||||
<text id="n41_kgcp" name="pscore" xy="38,151" size="135,62" font="Microsoft YaHei" fontSize="50" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+5" bold="true">
|
||||
<text id="n41_kgcp" name="pscore" xy="38,151" size="135,62" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="50" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+5" bold="true">
|
||||
<gearDisplay controller="times" pages="1" />
|
||||
</text>
|
||||
<text id="n42_kgcp" name="score" xy="77,200" size="128,78" font="Microsoft YaHei" fontSize="56" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+180" bold="true">
|
||||
<text id="n42_kgcp" name="score" xy="77,200" size="128,78" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="56" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+180" bold="true">
|
||||
<gearXY controller="times" pages="0,1" values="41,171|77,200" />
|
||||
</text>
|
||||
<image id="n43_kgcp" name="n43" src="jkmabp" fileName="component/result/bd.png" pkg="27vd145b" xy="24,217" group="n46_kgcp" />
|
||||
<image id="n44_kgcp" name="n44" src="e8zlbo" fileName="component/result/bsxz.png" pkg="27vd145b" xy="50,220" group="n46_kgcp" />
|
||||
<text id="n45_kgcp" name="tex_times" xy="-36,202" pivot="0.5,0.5" size="124,64" group="n46_kgcp" scale="0.4,0.4" font="Microsoft YaHei" fontSize="60" color="#ffffff" align="center" vAlign="middle" autoClearText="true" text="500" bold="true" />
|
||||
<text id="n45_kgcp" name="tex_times" xy="-36,202" pivot="0.5,0.5" size="124,64" group="n46_kgcp" scale="0.4,0.4" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="60" color="#ffffff" align="center" vAlign="middle" autoClearText="true" text="500" bold="true" />
|
||||
<group id="n46_kgcp" name="n46" xy="-36,203" size="123,62" advanced="true">
|
||||
<gearDisplay controller="times" pages="1" />
|
||||
</group>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
<loader id="n3_hp0b" name="icon" xy="19,54" pivot="0.5,0.5" size="50,30" url="ui://lxhyy2sdh1uu1s" autoSize="true">
|
||||
<gearColor controller="color" pages="0,1" values="#ffffff|#ffff66" />
|
||||
</loader>
|
||||
<text id="n6_n9k8" name="tex_score" xy="-22,-43" size="133,76" visible="false" font="Microsoft YaHei" fontSize="48" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="+10" bold="true">
|
||||
<text id="n6_n9k8" name="tex_score" xy="-22,-43" size="133,76" visible="false" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="+10" bold="true">
|
||||
<gearDisplay controller="bg" pages="1" />
|
||||
</text>
|
||||
</displayList>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<component size="484,345" overflow="scroll">
|
||||
<controller name="hide_id" pages="0,,1," selected="0" />
|
||||
<displayList>
|
||||
<text id="n4_l8gg" name="tex_roomconfig" xy="5,0" size="477,1952" group="n6_l8gg" font="Microsoft YaHei" fontSize="20" autoSize="none" text="基本规则 1.首局后,庄家胡不换庄,称为“连庄”,其他情况庄家的下家接庄。 2.起张牌数:庄家的起张牌数为14张,闲家的起张牌数为13张。 3.可行操作:可摸牌,可碰牌、可吃牌、可补张、可开杠,手中的牌满足相关规定的牌型条件时胡牌。 4.胡牌时,小番子需2、5、8作将。 5.点炮时点炮者只负责自己的输分,允许一炮多响,一炮多响被称为通炮。 6.胡牌时若为自摸、杠上花、海底捞月,则三家输分。 算分规则 牌型的番数 庄闲 胡牌后,与庄家有关的番数都要加1。如庄家自摸或点胡,番数加1;如果其他玩家自摸,庄家单独多付1番;庄家点炮也需要多付1番。 起手胡 1.大四喜:起完牌后,玩家手上已有四张一样的牌,即可胡牌。 2.板板胡:起完牌后,玩家手上没有一张2、5、8(将牌),即可胡牌。 3.缺一色:起完牌后,玩家手上筒、索、万任缺一门,即可胡牌。 4.六六顺:起手抓牌手上有任意俩个三张同样的牌算胡牌,比如你手上有三个4万、三个5条。 1.杠上花:玩家有四张一样的牌,即可开杠(听牌的情况下)。 ·按照开出的点数从牌城倒数,摸上面那张牌,此牌为杠牌(如果上面那张没有则取下一张),如果杠牌能胡,则为杠上花。 2.抢杠胡:甲玩家先碰,后又摸到相同的一张牌,然后开杠。而别的玩家可以胡所补张的牌,即为抢杠胡。 3.杠炮:某玩家开杠,而杠后摸的牌别的玩家可胡,为杠炮。 4.海底捞月:摸到最后一张牌称为海底牌。海底捞月即为摸了海底牌自摸。 5.海底炮:点胡别人出的海底牌。 6.清一色:同一种花色的牌。 7.七小对:七对任意牌。 8.全求人:牌全部依靠吃和碰对,最后只叫成一张牌,且为点胡。 其他规则 1.扎鸟: ·玩家胡牌后,再摸紧跟着的牌即为鸟。如果海底胡,即以海底为牌为鸟,看鸟落谁家。 ·鸟的计算方法为:以胡牌家为起点,按牌面数字计算。一、五、九表示胡牌家,二、六表示下家,三、七为对家,四、八为上家。 点炮时, ·点胡时、鸟如果扎在胡牌方或点炮方,即为中鸟,点炮人出双倍分数 (加相应分数,由鸟翻倍、鸟加分选项决定)。 ·自摸时,鸟如果扎在胡牌方,即所有玩家给双倍分数(加相应分数);如果扎在别的玩家,只此一玩家给双倍分数(加相应分数)。 2.杠和补: ·长沙麻将获得4张相同的牌后,只可以选“杠”或“补”。 ·长沙麻将在可以补张的情况下,手中的牌成牌,可以“杠”或“补”。 ·选择杠后为开杠,不可换张,如果不能胡牌,直接出摸到的牌。 3.海底牌: · 长沙麻将中,海底牌可漫游。即第一个玩家不要,第二个玩家可要,依此类推。如果四个玩家都不要,就直接流局。" bold="true" />
|
||||
<text id="n4_l8gg" name="tex_roomconfig" xy="5,0" size="477,1952" group="n6_l8gg" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" autoSize="none" text="基本规则 1.首局后,庄家胡不换庄,称为“连庄”,其他情况庄家的下家接庄。 2.起张牌数:庄家的起张牌数为14张,闲家的起张牌数为13张。 3.可行操作:可摸牌,可碰牌、可吃牌、可补张、可开杠,手中的牌满足相关规定的牌型条件时胡牌。 4.胡牌时,小番子需2、5、8作将。 5.点炮时点炮者只负责自己的输分,允许一炮多响,一炮多响被称为通炮。 6.胡牌时若为自摸、杠上花、海底捞月,则三家输分。 算分规则 牌型的番数 庄闲 胡牌后,与庄家有关的番数都要加1。如庄家自摸或点胡,番数加1;如果其他玩家自摸,庄家单独多付1番;庄家点炮也需要多付1番。 起手胡 1.大四喜:起完牌后,玩家手上已有四张一样的牌,即可胡牌。 2.板板胡:起完牌后,玩家手上没有一张2、5、8(将牌),即可胡牌。 3.缺一色:起完牌后,玩家手上筒、索、万任缺一门,即可胡牌。 4.六六顺:起手抓牌手上有任意俩个三张同样的牌算胡牌,比如你手上有三个4万、三个5条。 1.杠上花:玩家有四张一样的牌,即可开杠(听牌的情况下)。 ·按照开出的点数从牌城倒数,摸上面那张牌,此牌为杠牌(如果上面那张没有则取下一张),如果杠牌能胡,则为杠上花。 2.抢杠胡:甲玩家先碰,后又摸到相同的一张牌,然后开杠。而别的玩家可以胡所补张的牌,即为抢杠胡。 3.杠炮:某玩家开杠,而杠后摸的牌别的玩家可胡,为杠炮。 4.海底捞月:摸到最后一张牌称为海底牌。海底捞月即为摸了海底牌自摸。 5.海底炮:点胡别人出的海底牌。 6.清一色:同一种花色的牌。 7.七小对:七对任意牌。 8.全求人:牌全部依靠吃和碰对,最后只叫成一张牌,且为点胡。 其他规则 1.扎鸟: ·玩家胡牌后,再摸紧跟着的牌即为鸟。如果海底胡,即以海底为牌为鸟,看鸟落谁家。 ·鸟的计算方法为:以胡牌家为起点,按牌面数字计算。一、五、九表示胡牌家,二、六表示下家,三、七为对家,四、八为上家。 点炮时, ·点胡时、鸟如果扎在胡牌方或点炮方,即为中鸟,点炮人出双倍分数 (加相应分数,由鸟翻倍、鸟加分选项决定)。 ·自摸时,鸟如果扎在胡牌方,即所有玩家给双倍分数(加相应分数);如果扎在别的玩家,只此一玩家给双倍分数(加相应分数)。 2.杠和补: ·长沙麻将获得4张相同的牌后,只可以选“杠”或“补”。 ·长沙麻将在可以补张的情况下,手中的牌成牌,可以“杠”或“补”。 ·选择杠后为开杠,不可换张,如果不能胡牌,直接出摸到的牌。 3.海底牌: · 长沙麻将中,海底牌可漫游。即第一个玩家不要,第二个玩家可要,依此类推。如果四个玩家都不要,就直接流局。" bold="true" />
|
||||
<group id="n6_l8gg" name="n6" xy="5,0" size="477,1952" />
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -9,6 +9,6 @@
|
|||
<component id="n5_uokn" name="btn_qs" src="xu706d" fileName="buttons/Btn_Yellow_long.xml" pkg="27vd145b" xy="523,306">
|
||||
<Button title="起手胡" titleColor="#ffffff"/>
|
||||
</component>
|
||||
<text id="n6_nlz3" name="n6" xy="530,309" size="273,75" font="Microsoft YaHei" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="none" bold="true" text="板板胡"/>
|
||||
<text id="n6_nlz3" name="n6" xy="530,309" size="273,75" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="none" bold="true" text="板板胡"/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -9,6 +9,6 @@
|
|||
<component id="n5_uokn" name="btn_qs" src="xu706d" fileName="buttons/Btn_Yellow_long.xml" pkg="27vd145b" xy="523,306">
|
||||
<Button title="起手胡" titleColor="#ffffff"/>
|
||||
</component>
|
||||
<text id="n6_nlz3" name="n6" xy="532,310" size="273,75" font="Microsoft YaHei" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="none" bold="true" text="板板胡"/>
|
||||
<text id="n6_nlz3" name="n6" xy="532,310" size="273,75" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="none" bold="true" text="板板胡"/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
<component size="143,51" initName="com_three_win">
|
||||
<displayList>
|
||||
<image id="n1_hhtd" name="n1" src="7q1m2z" fileName="clearing/font/d01.png" xy="3,12" pivot="0.5,0.5" />
|
||||
<text id="n6_hhtd" name="tex_win" xy="95,7" pivot="-1.03,0.76" size="22,30" font="Microsoft YaHei" fontSize="25" align="center" vAlign="middle" leading="-3" letterSpacing="-4" text="3" bold="true" />
|
||||
<text id="n6_hhtd" name="tex_win" xy="95,7" pivot="-1.03,0.76" size="22,30" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="25" align="center" vAlign="middle" leading="-3" letterSpacing="-4" text="3" bold="true" />
|
||||
<image id="n7_hhtd" name="n7" src="hhtd31" fileName="clearing/font/ww.png" xy="25,7" pivot="0.68,0.82" />
|
||||
</displayList>
|
||||
<transition name="t0" autoPlay="true">
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
<loader id="n3_hp0b" name="icon" xy="-3,2" pivot="0.5,0.5" size="95,134" url="ui://lxhyy2sdh1uu1s" autoSize="true">
|
||||
<gearColor controller="color" pages="0,1" values="#ffffff|#ffff66" />
|
||||
</loader>
|
||||
<text id="n6_n9k8" name="tex_score" xy="-22,-43" size="133,76" font="Microsoft YaHei" fontSize="48" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="+10" bold="true">
|
||||
<text id="n6_n9k8" name="tex_score" xy="-22,-43" size="133,76" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="+10" bold="true">
|
||||
<gearDisplay controller="bg" pages="1" />
|
||||
</text>
|
||||
</displayList>
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@
|
|||
<image id="n18_8kzv" name="n18" src="8kzv11c" fileName="images/clearing/w02.png" pkg="lxhyy2sd" xy="828,9">
|
||||
<gearDisplay controller="win" pages="0" />
|
||||
</image>
|
||||
<text id="n19_r4s4" name="tex_hp" xy="1074,2" size="144,52" font="Microsoft YaHei" fontSize="48" color="#ffffff" align="center" vAlign="middle" ubb="true" autoSize="shrink" autoClearText="true" text="+10000" bold="true">
|
||||
<text id="n19_r4s4" name="tex_hp" xy="1074,2" size="144,52" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#ffffff" align="center" vAlign="middle" ubb="true" autoSize="shrink" autoClearText="true" text="+10000" bold="true">
|
||||
<gearDisplay controller="nonnegative" pages="1" />
|
||||
</text>
|
||||
<text id="n20_r4s4" name="score2" xy="954,2" size="127,52" fontSize="28" color="#ffffff" align="center" vAlign="middle" ubb="true" autoSize="shrink" autoClearText="true" text="+10000" bold="true" />
|
||||
|
|
|
|||
|
|
@ -8,15 +8,15 @@
|
|||
<displayList>
|
||||
<image id="n25_xtwh" name="n25" src="xtwh97" fileName="component/result/di(1).png" pkg="27vd145b" xy="0,0" size="205,464" />
|
||||
<text id="n2_fux2" name="name" xy="0,84" size="210,39" fontSize="24" color="#ffffff" align="center" vAlign="middle" autoSize="none" strokeColor="#174a4b" strokeSize="2" text="玩家的名字則麽長~~" bold="true" />
|
||||
<text id="n39_e8zl" name="pscore" xy="38,152" size="135,62" font="Microsoft YaHei" fontSize="50" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+5" bold="true">
|
||||
<text id="n39_e8zl" name="pscore" xy="38,152" size="135,62" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="50" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+5" bold="true">
|
||||
<gearDisplay controller="times" pages="1" />
|
||||
</text>
|
||||
<text id="n3_fux2" name="score" xy="80,203" size="128,62" font="Microsoft YaHei" fontSize="56" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+720" bold="true">
|
||||
<text id="n3_fux2" name="score" xy="80,203" size="128,62" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="56" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+720" bold="true">
|
||||
<gearXY controller="times" pages="0,1" values="41,171|80,203" />
|
||||
</text>
|
||||
<image id="n40_jkma" name="n40" src="jkmabp" fileName="component/result/bd.png" pkg="27vd145b" xy="24,218" group="n43_jkma" />
|
||||
<image id="n41_jkma" name="n41" src="e8zlbo" fileName="component/result/bsxz.png" pkg="27vd145b" xy="50,221" group="n43_jkma" />
|
||||
<text id="n42_jkma" name="tex_times" xy="-36,203" pivot="0.5,0.5" size="124,64" group="n43_jkma" scale="0.4,0.4" font="Microsoft YaHei" fontSize="60" color="#ffffff" align="center" vAlign="middle" autoClearText="true" text="500" bold="true" />
|
||||
<text id="n42_jkma" name="tex_times" xy="-36,203" pivot="0.5,0.5" size="124,64" group="n43_jkma" scale="0.4,0.4" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="60" color="#ffffff" align="center" vAlign="middle" autoClearText="true" text="500" bold="true" />
|
||||
<group id="n43_jkma" name="n43" xy="-36,204" size="123,62" advanced="true" collapsed="true">
|
||||
<gearDisplay controller="times" pages="1" />
|
||||
</group>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<component size="484,345" overflow="scroll">
|
||||
<controller name="hide_id" pages="0,,1," selected="0" />
|
||||
<displayList>
|
||||
<text id="n4_l8gg" name="tex_roomconfig" xy="5,0" size="477,1969" group="n6_l8gg" font="Microsoft YaHei" fontSize="20" autoSize="none" text="1.基本规则 牌数:共112张:1-9筒、1-9索、1-9万各四张,红中四张,不带东、南、西、北风、发、白。 游戏人数:4人 1人为庄 3人为闲 游戏的基础输赢为“一等” 只能碰或杠牌,不能吃上家的牌。 红中可以代替任何一张牌,但不能参与杠牌 红中:红中可代替任何一张牌,红中可以碰、杠,但不能辅助其它牌来碰和杠。 2.专有术语 庄 4人中,一人为庄家,庄家摸14张牌 第一局,由房主做庄,以后谁胡牌,谁做庄,如没有人胡牌,最后摸牌的人做庄。一炮多响,放炮的人为庄。 闲 4人中,除庄之外的3家为闲家,闲家13张牌 杠牌 所有杠牌只有牌局最后胡牌时才有效,如本局牌无人胡牌,则无效。 1、暗杠。玩牌时,自己手中有三张一样的牌,然后又自摸起一张同样的牌。这四张同样的牌扑倒放在桌面,一张暗扑三张明扑。然后从所有待摸的牌最尾巴上摸最后上面一只牌放入自己的牌中,称之为“补章”,再打出一张不要的牌。如果没有及时补章,则暗杠无效,最后不作为计牌依据。暗杠有效时,其他三玩家要给暗杠者两等牌资。 2、明杠。当自己手中有三张同样的牌,而此时桌面上其他玩家放出一张同样的牌时,就可以杠牌,四张牌都明面朝上,然后从所有待摸的牌最尾巴上摸最后上面一只牌放入自己的牌中,称之为“补章”,再打出一张不要的牌。如果没有及时补章,则明杠无效,最后不作为计牌依据。明杠有效时,放牌出来的放杠玩家要给明杠者三等牌资。 3、碰杠。当自己摸牌时摸到自己已经碰在桌面的明牌时,就可以杠牌,四张牌都明面朝上,然后从所有待摸的牌最尾巴上摸最后上面一只牌放入自己的牌中,称之为“补章”,再打出一张不要的牌。如果没有及时补章,则碰杠无效,最后不作为计牌依据。碰杠有效时,其他三方玩家要各给碰杠者一等牌资。 碰杠要注意摸到手里的杠是否可以杠牌,如其他玩家能胡这张杠子,则在补章后会抢杠胡牌,由杠牌者全包三方牌资。 碰牌 玩家手中有两张同样的子,然后其他玩家放出和这个一样的子时,即可碰牌。碰牌之后要做牌。 胡牌 胡牌只有两种情况,一是自摸胡牌,二是抢杠胡牌。 胡牌时,必须是有任意一对牌做将,然后其他牌组成三个顺子一句话或者三个同样子一句话。如一二三、二三四、四五六、五六七、七八九或者一一一、二二二、三三三、四四四、五五五、六六六、七七七、八八八、九九九。 自摸胡牌,即玩家从待摸的子里摸到的牌可以胡牌,其他玩家放出来的子不能胡,只能碰或杠。自摸后,其他玩家要付给自摸者每家2等牌资。 抢杠胡牌,玩家完成碰杠时,从待摸的子尾巴补章之前,其他玩家如果正好要胡玩家杠的这个牌,即可抢杠胡牌,由杠牌的玩家全赔自摸的牌资,三方每家2等共计6等。 另外,起手4个红中 直接胡牌 抓鸟 一人胡牌,从胡牌人开始数,1、5、9中鸟,中鸟的人相当于多胡一次 自摸只多一分 多人胡牌,从放炮的人开始数,1、5、9中鸟,中鸟的人相当于多放一炮。 3.摸牌规则 从112张牌随机不放回的抽取14张牌,分配给庄,再随机不放回的抽取3*13张牌,分配给3个闲家 " bold="true" />
|
||||
<text id="n4_l8gg" name="tex_roomconfig" xy="5,0" size="477,1969" group="n6_l8gg" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" autoSize="none" text="1.基本规则 牌数:共112张:1-9筒、1-9索、1-9万各四张,红中四张,不带东、南、西、北风、发、白。 游戏人数:4人 1人为庄 3人为闲 游戏的基础输赢为“一等” 只能碰或杠牌,不能吃上家的牌。 红中可以代替任何一张牌,但不能参与杠牌 红中:红中可代替任何一张牌,红中可以碰、杠,但不能辅助其它牌来碰和杠。 2.专有术语 庄 4人中,一人为庄家,庄家摸14张牌 第一局,由房主做庄,以后谁胡牌,谁做庄,如没有人胡牌,最后摸牌的人做庄。一炮多响,放炮的人为庄。 闲 4人中,除庄之外的3家为闲家,闲家13张牌 杠牌 所有杠牌只有牌局最后胡牌时才有效,如本局牌无人胡牌,则无效。 1、暗杠。玩牌时,自己手中有三张一样的牌,然后又自摸起一张同样的牌。这四张同样的牌扑倒放在桌面,一张暗扑三张明扑。然后从所有待摸的牌最尾巴上摸最后上面一只牌放入自己的牌中,称之为“补章”,再打出一张不要的牌。如果没有及时补章,则暗杠无效,最后不作为计牌依据。暗杠有效时,其他三玩家要给暗杠者两等牌资。 2、明杠。当自己手中有三张同样的牌,而此时桌面上其他玩家放出一张同样的牌时,就可以杠牌,四张牌都明面朝上,然后从所有待摸的牌最尾巴上摸最后上面一只牌放入自己的牌中,称之为“补章”,再打出一张不要的牌。如果没有及时补章,则明杠无效,最后不作为计牌依据。明杠有效时,放牌出来的放杠玩家要给明杠者三等牌资。 3、碰杠。当自己摸牌时摸到自己已经碰在桌面的明牌时,就可以杠牌,四张牌都明面朝上,然后从所有待摸的牌最尾巴上摸最后上面一只牌放入自己的牌中,称之为“补章”,再打出一张不要的牌。如果没有及时补章,则碰杠无效,最后不作为计牌依据。碰杠有效时,其他三方玩家要各给碰杠者一等牌资。 碰杠要注意摸到手里的杠是否可以杠牌,如其他玩家能胡这张杠子,则在补章后会抢杠胡牌,由杠牌者全包三方牌资。 碰牌 玩家手中有两张同样的子,然后其他玩家放出和这个一样的子时,即可碰牌。碰牌之后要做牌。 胡牌 胡牌只有两种情况,一是自摸胡牌,二是抢杠胡牌。 胡牌时,必须是有任意一对牌做将,然后其他牌组成三个顺子一句话或者三个同样子一句话。如一二三、二三四、四五六、五六七、七八九或者一一一、二二二、三三三、四四四、五五五、六六六、七七七、八八八、九九九。 自摸胡牌,即玩家从待摸的子里摸到的牌可以胡牌,其他玩家放出来的子不能胡,只能碰或杠。自摸后,其他玩家要付给自摸者每家2等牌资。 抢杠胡牌,玩家完成碰杠时,从待摸的子尾巴补章之前,其他玩家如果正好要胡玩家杠的这个牌,即可抢杠胡牌,由杠牌的玩家全赔自摸的牌资,三方每家2等共计6等。 另外,起手4个红中 直接胡牌 抓鸟 一人胡牌,从胡牌人开始数,1、5、9中鸟,中鸟的人相当于多胡一次 自摸只多一分 多人胡牌,从放炮的人开始数,1、5、9中鸟,中鸟的人相当于多放一炮。 3.摸牌规则 从112张牌随机不放回的抽取14张牌,分配给庄,再随机不放回的抽取3*13张牌,分配给3个闲家 " bold="true" />
|
||||
<group id="n6_l8gg" name="n6" xy="5,0" size="477,1969" />
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -3,13 +3,13 @@
|
|||
<controller name="score" pages="0,,1," selected="0" />
|
||||
<displayList>
|
||||
<image id="n3_e54q" name="n3" src="e54q3x" fileName="images/head/head_name_bg.png" pkg="27vd145b" xy="0,0" />
|
||||
<text id="n1_e54q" name="tex_score1" xy="0,25" size="135,27" font="Microsoft YaHei" fontSize="8" color="#ffffff" align="center" vAlign="middle" autoSize="none" autoClearText="true" text="+20.0" bold="true">
|
||||
<text id="n1_e54q" name="tex_score1" xy="0,25" size="135,27" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="8" color="#ffffff" align="center" vAlign="middle" autoSize="none" autoClearText="true" text="+20.0" bold="true">
|
||||
<gearDisplay controller="score" pages="0" />
|
||||
</text>
|
||||
<text id="n4_kllg" name="tex_score2" xy="0,25" size="135,27" font="Microsoft YaHei" fontSize="8" color="#ffffff" align="center" vAlign="middle" autoSize="none" autoClearText="true" text="-30" bold="true">
|
||||
<text id="n4_kllg" name="tex_score2" xy="0,25" size="135,27" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="8" color="#ffffff" align="center" vAlign="middle" autoSize="none" autoClearText="true" text="-30" bold="true">
|
||||
<gearDisplay controller="score" pages="1" />
|
||||
</text>
|
||||
<text id="n2_e54q" name="tex_player_name" xy="0,0" size="134,24" fontSize="18" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="的大幅度微软微软" bold="true" />
|
||||
<text id="n5_cmc2" name="tex_score" xy="-1,57" size="135,27" visible="false" font="Microsoft YaHei" fontSize="8" color="#ffffff" align="center" vAlign="middle" autoSize="none" autoClearText="true" text="没用,只是为了不报错" bold="true" />
|
||||
<text id="n5_cmc2" name="tex_score" xy="-1,57" size="135,27" visible="false" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="8" color="#ffffff" align="center" vAlign="middle" autoSize="none" autoClearText="true" text="没用,只是为了不报错" bold="true" />
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -11,13 +11,13 @@
|
|||
<text id="n86_wpr3" name="n1111" xy="540,286" size="130,27" group="n90_wpr3" fontSize="18" color="#c2ffe0" vAlign="middle" autoSize="none" text="剩余 张牌 " bold="true">
|
||||
<gearDisplay controller="state" pages="1,3" />
|
||||
</text>
|
||||
<text id="n87_wpr3" name="remaining_card" xy="577,286" size="51,27" group="n90_wpr3" font="Microsoft YaHei" fontSize="8" color="#cccccc" align="center" vAlign="middle" autoSize="none" text="70" bold="true">
|
||||
<text id="n87_wpr3" name="remaining_card" xy="577,286" size="51,27" group="n90_wpr3" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="8" color="#cccccc" align="center" vAlign="middle" autoSize="none" text="70" bold="true">
|
||||
<gearDisplay controller="state" pages="1,3" />
|
||||
</text>
|
||||
<text id="n88_wpr3" name="tex_round1" xy="691,286" size="34,27" group="n90_wpr3" font="Microsoft YaHei" fontSize="8" color="#cccccc" align="center" vAlign="middle" autoSize="none" text="1" bold="true">
|
||||
<text id="n88_wpr3" name="tex_round1" xy="691,286" size="34,27" group="n90_wpr3" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="8" color="#cccccc" align="center" vAlign="middle" autoSize="none" text="1" bold="true">
|
||||
<gearDisplay controller="state" pages="1,3" />
|
||||
</text>
|
||||
<text id="n89_wpr3" name="tex_round2" xy="734,286" size="40,27" group="n90_wpr3" font="Microsoft YaHei" fontSize="8" color="#cccccc" align="center" vAlign="middle" autoSize="none" text="8" bold="true">
|
||||
<text id="n89_wpr3" name="tex_round2" xy="734,286" size="40,27" group="n90_wpr3" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="8" color="#cccccc" align="center" vAlign="middle" autoSize="none" text="8" bold="true">
|
||||
<gearDisplay controller="state" pages="1,3" />
|
||||
</text>
|
||||
<group id="n90_wpr3" name="n90" xy="540,286" size="254,27" group="n84_wpr3" advanced="true">
|
||||
|
|
|
|||
|
|
@ -11,13 +11,13 @@
|
|||
<text id="n78_wpr3" name="n1111" xy="540,285" size="130,27" group="n82_wpr3" fontSize="18" color="#c2ffe0" vAlign="middle" autoSize="none" text="剩余 张牌 " bold="true">
|
||||
<gearDisplay controller="state" pages="1,3" />
|
||||
</text>
|
||||
<text id="n79_wpr3" name="remaining_card" xy="577,285" size="51,27" group="n82_wpr3" font="Microsoft YaHei" fontSize="8" color="#cccccc" align="center" vAlign="middle" autoSize="none" text="70" bold="true">
|
||||
<text id="n79_wpr3" name="remaining_card" xy="577,285" size="51,27" group="n82_wpr3" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="8" color="#cccccc" align="center" vAlign="middle" autoSize="none" text="70" bold="true">
|
||||
<gearDisplay controller="state" pages="1,3" />
|
||||
</text>
|
||||
<text id="n80_wpr3" name="tex_round1" xy="692,285" size="36,27" group="n82_wpr3" font="Microsoft YaHei" fontSize="8" color="#cccccc" align="center" vAlign="middle" autoSize="none" text="16" bold="true">
|
||||
<text id="n80_wpr3" name="tex_round1" xy="692,285" size="36,27" group="n82_wpr3" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="8" color="#cccccc" align="center" vAlign="middle" autoSize="none" text="16" bold="true">
|
||||
<gearDisplay controller="state" pages="1,3" />
|
||||
</text>
|
||||
<text id="n81_wpr3" name="tex_round2" xy="734,285" size="40,27" group="n82_wpr3" font="Microsoft YaHei" fontSize="8" color="#cccccc" align="center" vAlign="middle" autoSize="none" text="20" bold="true">
|
||||
<text id="n81_wpr3" name="tex_round2" xy="734,285" size="40,27" group="n82_wpr3" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="8" color="#cccccc" align="center" vAlign="middle" autoSize="none" text="20" bold="true">
|
||||
<gearDisplay controller="state" pages="1,3" />
|
||||
</text>
|
||||
<group id="n82_wpr3" name="n82" xy="540,285" size="254,27" group="n84_wpr3" advanced="true">
|
||||
|
|
|
|||
|
|
@ -11,13 +11,13 @@
|
|||
<text id="n79_wpr3" name="n1111" xy="540,285" size="130,27" group="n83_wpr3" fontSize="18" color="#c2ffe0" vAlign="middle" autoSize="none" text="剩余 张牌 " bold="true">
|
||||
<gearDisplay controller="state" pages="1,3" />
|
||||
</text>
|
||||
<text id="n80_wpr3" name="remaining_card" xy="577,285" size="51,27" group="n83_wpr3" font="Microsoft YaHei" fontSize="8" color="#cccccc" align="center" vAlign="middle" autoSize="none" text="70" bold="true">
|
||||
<text id="n80_wpr3" name="remaining_card" xy="577,285" size="51,27" group="n83_wpr3" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="8" color="#cccccc" align="center" vAlign="middle" autoSize="none" text="70" bold="true">
|
||||
<gearDisplay controller="state" pages="1,3" />
|
||||
</text>
|
||||
<text id="n81_wpr3" name="tex_round1" xy="695,285" size="33,27" group="n83_wpr3" font="Microsoft YaHei" fontSize="8" color="#cccccc" align="center" vAlign="middle" autoSize="none" text="16" bold="true">
|
||||
<text id="n81_wpr3" name="tex_round1" xy="695,285" size="33,27" group="n83_wpr3" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="8" color="#cccccc" align="center" vAlign="middle" autoSize="none" text="16" bold="true">
|
||||
<gearDisplay controller="state" pages="1,3" />
|
||||
</text>
|
||||
<text id="n82_wpr3" name="tex_round2" xy="731,285" size="40,27" group="n83_wpr3" font="Microsoft YaHei" fontSize="8" color="#cccccc" align="center" vAlign="middle" autoSize="none" text="20" bold="true">
|
||||
<text id="n82_wpr3" name="tex_round2" xy="731,285" size="40,27" group="n83_wpr3" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="8" color="#cccccc" align="center" vAlign="middle" autoSize="none" text="20" bold="true">
|
||||
<gearDisplay controller="state" pages="1,3" />
|
||||
</text>
|
||||
<group id="n83_wpr3" name="n83" xy="540,285" size="254,27" group="n76_wpr3" advanced="true">
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
<loader id="n3_hp0b" name="icon" xy="-3,2" pivot="0.5,0.5" size="95,134" url="ui://lxhyy2sdh1uu1s" autoSize="true">
|
||||
<gearColor controller="color" pages="0,1" values="#ffffff|#ffff66" />
|
||||
</loader>
|
||||
<text id="n6_n9k8" name="tex_score" xy="-22,-43" size="133,76" font="Microsoft YaHei" fontSize="48" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="+10" bold="true">
|
||||
<text id="n6_n9k8" name="tex_score" xy="-22,-43" size="133,76" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="+10" bold="true">
|
||||
<gearDisplay controller="bg" pages="1" />
|
||||
</text>
|
||||
</displayList>
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
<relation target="n3_fux2" sidePair="leftext-right" />
|
||||
</list>
|
||||
<text id="n6_fux2" name="score1" xy="294,13" size="95,34" fontSize="26" color="#00ffff" vAlign="middle" text="1111分" bold="true" />
|
||||
<text id="n7_fux2" name="tex_hp" xy="1093,5" size="159,48" font="Microsoft YaHei" fontSize="48" color="#ffffff" align="center" vAlign="middle" ubb="true" autoSize="shrink" autoClearText="true" text="-10000" bold="true">
|
||||
<text id="n7_fux2" name="tex_hp" xy="1093,5" size="159,48" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#ffffff" align="center" vAlign="middle" ubb="true" autoSize="shrink" autoClearText="true" text="-10000" bold="true">
|
||||
<gearDisplay controller="nonnegative" pages="1" />
|
||||
</text>
|
||||
<component id="n9_nrno" name="btn_head" src="kio210" fileName="component/head/Head.xml" pkg="27vd145b" xy="27,26" size="96,96" />
|
||||
|
|
|
|||
|
|
@ -17,15 +17,15 @@
|
|||
<image id="n40_pikf" name="n40" src="fux2e3" fileName="images/clearing/renshengyingjia.png" pkg="lxhyy2sd" xy="50,102" scale="0.8,0.8">
|
||||
<gearDisplay controller="winner" pages="1" />
|
||||
</image>
|
||||
<text id="n64_kgcp" name="pscore" xy="41,151" size="135,62" font="Microsoft YaHei" fontSize="50" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+5" bold="true">
|
||||
<text id="n64_kgcp" name="pscore" xy="41,151" size="135,62" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="50" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+5" bold="true">
|
||||
<gearDisplay controller="times" pages="1" />
|
||||
</text>
|
||||
<text id="n65_kgcp" name="score" xy="80,200" size="128,78" font="Microsoft YaHei" fontSize="56" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+180" bold="true">
|
||||
<text id="n65_kgcp" name="score" xy="80,200" size="128,78" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="56" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+180" bold="true">
|
||||
<gearXY controller="times" pages="0,1" values="41,171|80,200" />
|
||||
</text>
|
||||
<image id="n66_kgcp" name="n66" src="jkmabp" fileName="component/result/bd.png" pkg="27vd145b" xy="27,217" group="n69_kgcp" />
|
||||
<image id="n67_kgcp" name="n67" src="e8zlbo" fileName="component/result/bsxz.png" pkg="27vd145b" xy="53,220" group="n69_kgcp" />
|
||||
<text id="n68_kgcp" name="tex_times" xy="-36,202" pivot="0.5,0.5" size="124,64" group="n69_kgcp" scale="0.4,0.4" font="Microsoft YaHei" fontSize="60" color="#ffffff" align="center" vAlign="middle" singleLine="true" autoClearText="true" text="500" bold="true" />
|
||||
<text id="n68_kgcp" name="tex_times" xy="-36,202" pivot="0.5,0.5" size="124,64" group="n69_kgcp" scale="0.4,0.4" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="60" color="#ffffff" align="center" vAlign="middle" singleLine="true" autoClearText="true" text="500" bold="true" />
|
||||
<group id="n69_kgcp" name="n69" xy="-36,203" size="123,62" advanced="true" collapsed="true">
|
||||
<gearDisplay controller="times" pages="1" />
|
||||
</group>
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
<displayList>
|
||||
<image id="n0_fux2" name="n0" src="g8y26o" xy="0,0" size="661,117" pkg="442j0uep" />
|
||||
<image id="n1_fux2" name="n1" src="g8y26p" xy="-2,-3" size="937,120" pkg="442j0uep" />
|
||||
<text id="n7_fux2" name="score2" xy="641,5" size="256,111" font="Microsoft YaHei" fontSize="48" color="#ffffff" align="center" vAlign="middle" ubb="true" autoSize="none" text="-10000" bold="true" />
|
||||
<text id="n7_fux2" name="score2" xy="641,5" size="256,111" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#ffffff" align="center" vAlign="middle" ubb="true" autoSize="none" text="-10000" bold="true" />
|
||||
<image id="n18_jqcw" name="n18" src="e54q3w" pkg="27vd145b" xy="-13,-13" scale="0.8,0.8" visible="false">
|
||||
<gearDisplay controller="bank" pages="1" />
|
||||
</image>
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
<displayList>
|
||||
<image id="n22_n1ry" name="n22" src="ffp35p" fileName="component/clearing/di(1).png" xy="0,0" size="205,484" />
|
||||
<text id="n2_fux2" name="name" xy="0,114" size="210,39" fontSize="24" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="玩家的名字則麽長~~" bold="true" />
|
||||
<text id="n3_fux2" name="score" xy="-3,162" size="213,78" font="Microsoft YaHei" fontSize="50" color="#f16bc0" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+1223" bold="true">
|
||||
<text id="n3_fux2" name="score" xy="-3,162" size="213,78" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="50" color="#f16bc0" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+1223" bold="true">
|
||||
<gearColor controller="color" pages="0,1" values="#f16bc0,#000000|#5df2a3,#000000" />
|
||||
</text>
|
||||
<component id="n18_nrno" name="btn_head" src="ffp364" fileName="component/head/Head.xml" xy="65,20" size="80,80" />
|
||||
|
|
@ -25,12 +25,12 @@
|
|||
</image>
|
||||
<text id="n25_kl1l" name="win_count" xy="22,298" size="163,38" fontSize="22" color="#ffffff" align="center" vAlign="middle" autoSize="none" strokeColor="#000000" singleLine="true" text="胡牌次数:3" bold="true" />
|
||||
<text id="n26_kl1l" name="total_huxi" xy="22,330" size="163,38" fontSize="22" color="#ffffff" align="center" vAlign="middle" autoSize="none" strokeColor="#000000" singleLine="true" text="胡牌次数:150胡息" bold="true" />
|
||||
<text id="n32_fc32" name="score1" xy="76,230" size="129,60" group="n36_fc32" font="Microsoft YaHei" fontSize="29" color="#f16bc0" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+12234" bold="true">
|
||||
<text id="n32_fc32" name="score1" xy="76,230" size="129,60" group="n36_fc32" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="29" color="#f16bc0" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+12234" bold="true">
|
||||
<gearColor controller="color" pages="0,1" values="#f16bc0,#000000|#5df2a3,#000000" />
|
||||
</text>
|
||||
<image id="n33_fc32" name="n33" src="ffp368" fileName="component/result/bd.png" xy="10,242" size="72,30" group="n36_fc32" />
|
||||
<image id="n34_fc32" name="n34" src="ffp369" fileName="component/result/bsxz.png" xy="54,250" size="25,27" group="n36_fc32" />
|
||||
<text id="n35_fc32" name="sss" xy="0,238" pivot="1,0.5" size="58,52" group="n36_fc32" font="Microsoft YaHei" fontSize="25" align="right" vAlign="middle" autoSize="none" singleLine="true" text="500 " bold="true" />
|
||||
<text id="n35_fc32" name="sss" xy="0,238" pivot="1,0.5" size="58,52" group="n36_fc32" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="25" align="right" vAlign="middle" autoSize="none" singleLine="true" text="500 " bold="true" />
|
||||
<group id="n36_fc32" name="n36" xy="0,230" size="205,60" advanced="true">
|
||||
<gearDisplay controller="bei" pages="1" />
|
||||
</group>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
<image id="n7" name="n7" src="ffp38s" fileName="component/create_room/image/single_btn_s.png" xy="10,5">
|
||||
<gearDisplay controller="button" pages="1,3" />
|
||||
</image>
|
||||
<text id="n8" name="title" xy="49,5" size="265,39" font="Microsoft YaHei" fontSize="28" color="#367256" vAlign="middle" autoSize="none" text="2" bold="true" />
|
||||
<text id="n8" name="title" xy="49,5" size="265,39" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#367256" vAlign="middle" autoSize="none" text="2" bold="true" />
|
||||
</displayList>
|
||||
<Button mode="Radio" />
|
||||
</component>
|
||||
|
|
@ -5,7 +5,7 @@
|
|||
<image id="n7_rpaz" name="n7" src="ffp38v" fileName="component/create_room/image/multiple_btn_n.png" xy="13,8">
|
||||
<gearDisplay controller="button" pages="0" />
|
||||
</image>
|
||||
<text id="n9_rpaz" name="title" xy="59,6" size="212,39" font="Microsoft YaHei" fontSize="20" color="#367256" vAlign="middle" autoSize="shrink" text="123" bold="true" />
|
||||
<text id="n9_rpaz" name="title" xy="59,6" size="212,39" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#367256" vAlign="middle" autoSize="shrink" text="123" bold="true" />
|
||||
<image id="n10_vyn3" name="n10" src="ffp38v" fileName="component/create_room/image/multiple_btn_n.png" xy="13,8">
|
||||
<gearDisplay controller="button" pages="1" />
|
||||
</image>
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@
|
|||
<component id="n309_ozsy" name="btn_round4" src="ffp38q" fileName="component/create_room/Btn_cr_checkbox.xml" xy="453,66" group="n5_mw5l">
|
||||
<Button title="4局" controller="round" page="1" />
|
||||
</component>
|
||||
<text id="n4_mw5l" name="n4" xy="40,73" size="92,29" group="n5_mw5l" font="Microsoft YaHei" fontSize="20" color="#96491f" bold="true" text="局 数" />
|
||||
<text id="n4_mw5l" name="n4" xy="40,73" size="92,29" group="n5_mw5l" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" bold="true" text="局 数" />
|
||||
<text id="n275_se1s" name="tex_price1" xy="345,70" size="30,29" group="n276_se1s" fontSize="20" color="#ffffff" autoSize="none" text="10" bold="true" />
|
||||
<group id="n276_se1s" name="n276" xy="345,70" size="30,29" group="n5_mw5l" advanced="true" />
|
||||
<text id="n278_se1s" name="tex_price2" xy="606,72" size="30,29" group="n279_se1s" fontSize="20" color="#ffffff" autoSize="none" text="20" bold="true" />
|
||||
|
|
@ -61,23 +61,23 @@
|
|||
<group id="n5_mw5l" name="n5" xy="40,66" size="870,47" />
|
||||
<component id="n23_i1r6" name="n23" src="ffp38n" fileName="component/create_room/di01.xml" xy="0,122" size="1050,263" group="n133_r282" />
|
||||
<component id="n116_r282" name="n116" src="ffp38n" fileName="component/create_room/di01.xml" xy="0,400" group="n133_r282" />
|
||||
<text id="n45_g92u" name="n45" xy="40,233" size="92,29" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" bold="true" text="名 堂" />
|
||||
<text id="n45_g92u" name="n45" xy="40,233" size="92,29" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" bold="true" text="名 堂" />
|
||||
<image id="n77_r282" name="n77" src="ffp38t" fileName="component/create_room/image/pic10.png" xy="209,139" size="40,33" group="n79_r282" aspect="true" />
|
||||
<text id="n78_r282" name="n78" xy="256,139" size="87,39" group="n79_r282" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="天胡 6" />
|
||||
<text id="n78_r282" name="n78" xy="256,139" size="87,39" group="n79_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="天胡 6" />
|
||||
<group id="n79_r282" name="n79" xy="209,139" size="134,39" group="n46_g92u" />
|
||||
<text id="n81_r282" name="n81" xy="365,139" size="90,39" group="n82_r282" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="地胡 6" />
|
||||
<text id="n81_r282" name="n81" xy="365,139" size="90,39" group="n82_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="地胡 6" />
|
||||
<group id="n82_r282" name="n82" xy="365,139" size="90,39" group="n46_g92u" />
|
||||
<text id="n84_r282" name="n84" xy="490,139" size="91,37" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="海胡 6" />
|
||||
<text id="n87_r282" name="n87" xy="620,139" size="113,37" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="红胡 3+n" />
|
||||
<text id="n90_r282" name="n90" xy="750,139" size="92,37" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="乌胡 8" />
|
||||
<text id="n84_r282" name="n84" xy="490,139" size="91,37" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="海胡 6" />
|
||||
<text id="n87_r282" name="n87" xy="620,139" size="113,37" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="红胡 3+n" />
|
||||
<text id="n90_r282" name="n90" xy="750,139" size="92,37" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="乌胡 8" />
|
||||
<image id="n92_r282" name="n92" src="ffp38t" fileName="component/create_room/image/pic10.png" xy="209,184" size="40,33" group="n94_r282" aspect="true" />
|
||||
<text id="n93_r282" name="n93" xy="252,183" size="88,37" group="n94_r282" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="点胡 6" />
|
||||
<text id="n93_r282" name="n93" xy="252,183" size="88,37" group="n94_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="点胡 6" />
|
||||
<group id="n94_r282" name="n94" xy="209,183" size="131,37" group="n46_g92u" />
|
||||
<text id="n96_r282" name="n96" xy="365,183" size="106,37" group="n97_r282" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="大胡 8+n" />
|
||||
<text id="n96_r282" name="n96" xy="365,183" size="106,37" group="n97_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="大胡 8+n" />
|
||||
<group id="n97_r282" name="n97" xy="365,183" size="106,37" group="n46_g92u" />
|
||||
<text id="n99_r282" name="n99" xy="487,183" size="136,37" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="小胡 10+n" />
|
||||
<text id="n103_r282" name="n103" xy="620,183" size="125,37" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="对子胡 8" />
|
||||
<text id="n106_r282" name="n106" xy="750,183" size="169,38" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="自摸加一囤" />
|
||||
<text id="n99_r282" name="n99" xy="487,183" size="136,37" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="小胡 10+n" />
|
||||
<text id="n103_r282" name="n103" xy="620,183" size="125,37" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="对子胡 8" />
|
||||
<text id="n106_r282" name="n106" xy="750,183" size="169,38" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="自摸加一囤" />
|
||||
<component id="n76_r282" name="n76" src="ffp38u" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="206,283" group="n46_g92u">
|
||||
<Button title="行行息 8" controller="hanghangxi" page="1" />
|
||||
</component>
|
||||
|
|
@ -107,7 +107,7 @@
|
|||
</component>
|
||||
<group id="n46_g92u" name="n46" xy="40,139" size="879,244" group="n133_r282" />
|
||||
<component id="n122_r282" name="n122" src="ffp38n" fileName="component/create_room/di01.xml" xy="0,477" group="n133_r282" />
|
||||
<text id="n117_r282" name="n117" xy="40,411" size="86,29" group="n123_r282" font="Microsoft YaHei" fontSize="20" color="#96491f" bold="true" text="充 囤" />
|
||||
<text id="n117_r282" name="n117" xy="40,411" size="86,29" group="n123_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" bold="true" text="充 囤" />
|
||||
<graph id="n271_se1s" name="n271" xy="251,421" size="93,31" group="n123_r282" type="rect" fillColor="#99000000" />
|
||||
<text id="n120_r282" name="shu" xy="265,417" size="65,38" group="n123_r282" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="0" bold="true">
|
||||
<gearText controller="tun" pages="0,2,3,4,5" values="0|2|3|4|5" default="1" />
|
||||
|
|
@ -115,7 +115,7 @@
|
|||
<component id="n121_r282" name="btn_jian" src="ffp38x" fileName="component/create_room/Button3.xml" xy="197,412" group="n123_r282" />
|
||||
<component id="n118_r282" name="btn_jia" src="ffp38z" fileName="component/create_room/Button2.xml" xy="350,412" group="n123_r282" />
|
||||
<group id="n123_r282" name="n123" xy="40,411" size="388,44" group="n133_r282" advanced="true" />
|
||||
<text id="n124_r282" name="n124" xy="40,489" size="84,29" group="n128_r282" font="Microsoft YaHei" fontSize="20" color="#96491f" bold="true" text="封顶设置" />
|
||||
<text id="n124_r282" name="n124" xy="40,489" size="84,29" group="n128_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" bold="true" text="封顶设置" />
|
||||
<component id="n129_r282" name="btn_bufen" src="ffp38q" fileName="component/create_room/Btn_cr_checkbox.xml" xy="203,483" size="227,47" group="n128_r282">
|
||||
<Button checked="true" title="不封顶" controller="fengding" page="0" />
|
||||
</component>
|
||||
|
|
@ -137,7 +137,7 @@
|
|||
</group>
|
||||
<component id="n134_r282" name="n134" src="ffp38n" fileName="component/create_room/di01.xml" xy="0,410" group="n172_r282" />
|
||||
<component id="n135_r282" name="n135" src="ffp38n" fileName="component/create_room/di01.xml" xy="0,340" group="n172_r282" />
|
||||
<text id="n136_r282" name="n1361" xy="40,353" size="116,39" group="n140_r282" font="Microsoft YaHei" fontSize="28" color="#83523a" bold="true" text="充 囤" />
|
||||
<text id="n136_r282" name="n1361" xy="40,353" size="116,39" group="n140_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#83523a" bold="true" text="充 囤" />
|
||||
<graph id="n272_se1s" name="n272" xy="272,354" size="93,31" group="n140_r282" type="rect" fillColor="#99000000" />
|
||||
<text id="n138_r282" name="shu1" xy="286,351" size="65,38" group="n140_r282" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="0" bold="true">
|
||||
<gearText controller="tun" pages="0,2,3,4,5" values="0|2|3|4|5" default="1" />
|
||||
|
|
@ -145,7 +145,7 @@
|
|||
<component id="n137_r282" name="btn_jia1" src="ffp38z" fileName="component/create_room/Button2.xml" xy="355,352" group="n140_r282" />
|
||||
<component id="n139_r282" name="btn_jian1" src="ffp38x" fileName="component/create_room/Button3.xml" xy="206,352" group="n140_r282" />
|
||||
<group id="n140_r282" name="n140" xy="40,351" size="393,38" group="n172_r282" />
|
||||
<text id="n141_r282" name="n141" xy="40,422" size="116,39" group="n145_r282" font="Microsoft YaHei" fontSize="28" color="#83523a" bold="true" text="封顶设置" />
|
||||
<text id="n141_r282" name="n141" xy="40,422" size="116,39" group="n145_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#83523a" bold="true" text="封顶设置" />
|
||||
<component id="n142_r282" name="btn_bufen1" src="ffp38q" fileName="component/create_room/Btn_cr_checkbox.xml" xy="209,417" size="227,47" group="n145_r282">
|
||||
<Button checked="true" title="不封顶" controller="fengding" page="0" />
|
||||
</component>
|
||||
|
|
@ -157,7 +157,7 @@
|
|||
</component>
|
||||
<group id="n145_r282" name="n145" xy="40,417" size="858,47" group="n172_r282" />
|
||||
<component id="n146_r282" name="n146" src="ffp38n" fileName="component/create_room/di01.xml" xy="0,200" size="1050,117" group="n172_r282" />
|
||||
<text id="n147_r282" name="n147" xy="40,239" size="128,39" group="n151_r282" font="Microsoft YaHei" fontSize="28" color="#83523a" autoSize="none" bold="true" text="名 堂" />
|
||||
<text id="n147_r282" name="n147" xy="40,239" size="128,39" group="n151_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#83523a" autoSize="none" bold="true" text="名 堂" />
|
||||
<group id="n151_r282" name="n151" xy="40,239" size="128,39" group="n172_r282" />
|
||||
<image id="n155_r282" name="n155" src="ffp38t" fileName="component/create_room/image/pic10.png" xy="206,214" size="40,33" group="n157_r282" aspect="true" />
|
||||
<text id="n156_r282" name="n156" xy="254,214" size="100,38" group="n157_r282" fontSize="28" color="#127352" autoSize="none" text="红胡 2" bold="true" />
|
||||
|
|
@ -179,7 +179,7 @@
|
|||
<component id="n176_ey1o" name="n176" src="ffp38n" fileName="component/create_room/di01.xml" xy="0,200" size="1050,181" group="n231_ey1o" />
|
||||
<component id="n255_os7u" name="n255" src="ffp38n" fileName="component/create_room/di01.xml" xy="0,401" group="n231_ey1o" />
|
||||
<component id="n261_9rmk" name="n261" src="ffp38n" fileName="component/create_room/di01.xml" xy="0,479" group="n231_ey1o" />
|
||||
<text id="n235_ey1o" name="n235" xy="40,414" size="144,44" group="n239_ey1o" font="Microsoft YaHei" fontSize="28" color="#83523a" autoSize="none" bold="true" text="充 囤" />
|
||||
<text id="n235_ey1o" name="n235" xy="40,414" size="144,44" group="n239_ey1o" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#83523a" autoSize="none" bold="true" text="充 囤" />
|
||||
<graph id="n273_se1s" name="n273" xy="266,415" size="93,31" group="n239_ey1o" type="rect" fillColor="#99000000" />
|
||||
<text id="n237_ey1o" name="shu2" xy="279,412" size="65,38" group="n239_ey1o" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="0" bold="true">
|
||||
<gearText controller="tun" pages="0,2,3,4,5" values="0|2|3|4|5" default="1" />
|
||||
|
|
@ -187,7 +187,7 @@
|
|||
<component id="n236_ey1o" name="btn_jia2" src="ffp38z" fileName="component/create_room/Button2.xml" xy="344,413" group="n239_ey1o" />
|
||||
<component id="n238_ey1o" name="btn_jian2" src="ffp38x" fileName="component/create_room/Button3.xml" xy="203,413" group="n239_ey1o" />
|
||||
<group id="n239_ey1o" name="n239" xy="40,412" size="382,46" group="n231_ey1o" advanced="true" />
|
||||
<text id="n250_os7u" name="n250" xy="40,491" size="116,39" group="n254_os7u" font="Microsoft YaHei" fontSize="28" color="#83523a" bold="true" text="封顶设置" />
|
||||
<text id="n250_os7u" name="n250" xy="40,491" size="116,39" group="n254_os7u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#83523a" bold="true" text="封顶设置" />
|
||||
<component id="n251_os7u" name="btn_bufen2" src="ffp38q" fileName="component/create_room/Btn_cr_checkbox.xml" xy="205,486" size="227,47" group="n254_os7u">
|
||||
<Button checked="true" title="不封顶" controller="fengding" page="0" />
|
||||
</component>
|
||||
|
|
@ -198,7 +198,7 @@
|
|||
<Button title="80封顶" controller="fengding" page="2" />
|
||||
</component>
|
||||
<group id="n254_os7u" name="n254" xy="40,486" size="854,47" group="n231_ey1o" />
|
||||
<text id="n181_ey1o" name="n181" xy="40,272" size="124,39" group="n231_ey1o" font="Microsoft YaHei" fontSize="28" color="#83523a" bold="true" text="名 堂" />
|
||||
<text id="n181_ey1o" name="n181" xy="40,272" size="124,39" group="n231_ey1o" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#83523a" bold="true" text="名 堂" />
|
||||
<image id="n182_ey1o" name="n182" src="ffp391" fileName="component/create_room/chuangjian_icon_01.png" xy="209,214" size="40,33" group="n231_ey1o" aspect="true" />
|
||||
<text id="n195_ey1o" name="n195" xy="256,215" size="95,38" group="n231_ey1o" fontSize="28" color="#127352" autoSize="none" text="乌胡 5" bold="true" />
|
||||
<text id="n198_ey1o" name="n198" xy="365,215" size="100,38" group="n231_ey1o" fontSize="28" color="#127352" autoSize="none" text="点胡 3" bold="true" />
|
||||
|
|
@ -225,7 +225,7 @@
|
|||
<gearDisplay controller="btn_Controller" pages="2" />
|
||||
</group>
|
||||
<component id="n289_fnpw" name="n289" src="ffp38n" fileName="component/create_room/di01.xml" xy="1,555" group="n294_fnpw" />
|
||||
<text id="n290_fnpw" name="n290" xy="41,568" size="92,29" group="n293_fnpw" font="Microsoft YaHei" fontSize="20" color="#96491f" bold="true" text="人 数" />
|
||||
<text id="n290_fnpw" name="n290" xy="41,568" size="92,29" group="n293_fnpw" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" bold="true" text="人 数" />
|
||||
<component id="n291_fnpw" name="n291" src="ffp38q" fileName="component/create_room/Btn_cr_checkbox.xml" xy="207,563" group="n293_fnpw">
|
||||
<Button checked="true" title="两人" controller="renshu" page="0" />
|
||||
</component>
|
||||
|
|
@ -242,7 +242,7 @@
|
|||
<component id="n311_ffp3" name="xipai" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="196,639" size="157,47" group="n317_ffp3">
|
||||
<Button title="洗牌" controller="xipaictr" page="1" />
|
||||
</component>
|
||||
<text id="n312_ffp3" name="n312" xy="183,704" size="200,39" group="n316_ffp3" font="Microsoft YaHei" fontSize="28" color="#b53e19" bold="true" text="设置洗牌积分:" />
|
||||
<text id="n312_ffp3" name="n312" xy="183,704" size="200,39" group="n316_ffp3" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#b53e19" bold="true" text="设置洗牌积分:" />
|
||||
<graph id="n313_ffp3" name="n313" xy="388,707" size="93,31" group="n316_ffp3" type="rect" fillColor="#99000000" />
|
||||
<text id="n314_ffp3" name="xipaifen" xy="389,702" size="94,42" group="n316_ffp3" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" text="1" bold="true" />
|
||||
<component id="n315_ffp3" name="sdsrbtn" src="r0qx7i5y" fileName="component/create_room/Btn_Common_Info.xml" pkg="27vd145b" xy="493,692" group="n316_ffp3" />
|
||||
|
|
@ -253,7 +253,7 @@
|
|||
<Button title="暗 抽" titleColor="#83523a" titleFontSize="26" />
|
||||
</component>
|
||||
<group id="n317_ffp3" name="n317" xy="36,626" size="584,184" advanced="true" />
|
||||
<text id="n318_gz8w" name="n318" xy="200,758" size="200,39" group="n322_gz8w" font="Microsoft YaHei" fontSize="28" color="#b53e19" bold="true" text="设置按抽积分:" />
|
||||
<text id="n318_gz8w" name="n318" xy="200,758" size="200,39" group="n322_gz8w" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#b53e19" bold="true" text="设置按抽积分:" />
|
||||
<graph id="n319_gz8w" name="n319" xy="405,761" size="93,31" group="n322_gz8w" type="rect" fillColor="#99000000" />
|
||||
<text id="n320_gz8w" name="anchoufen" xy="406,756" size="94,42" group="n322_gz8w" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" text="0" bold="true" />
|
||||
<component id="n321_gz8w" name="anchoubtn" src="r0qx7i5y" fileName="component/create_room/Btn_Common_Info.xml" pkg="27vd145b" xy="510,746" group="n322_gz8w" />
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<component size="163,60" extention="Button" designImageAlpha="0">
|
||||
<controller name="type" exported="true" pages="0,,1,,2," selected="0" />
|
||||
<displayList>
|
||||
<text id="n10_qjw9" name="title" xy="0,0" size="163,60" font="Microsoft YaHei" fontSize="28" color="#367256" vAlign="middle" autoSize="shrink" text="" bold="true" />
|
||||
<text id="n10_qjw9" name="title" xy="0,0" size="163,60" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#367256" vAlign="middle" autoSize="shrink" text="" bold="true" />
|
||||
</displayList>
|
||||
<Button />
|
||||
</component>
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -4,6 +4,6 @@
|
|||
<loader id="n0_n1ry" name="n0" xy="0,0" size="210,89" aspect="true" url="ui://1utjt0r2ufu9v" fill="scale" clearOnPublish="true">
|
||||
<relation target="" sidePair=""/>
|
||||
</loader>
|
||||
<text id="n2_ey1o" name="n2" xy="215,16" size="162,57" font="Microsoft YaHei" fontSize="42" color="#43633d" vAlign="middle" text="100胡息"/>
|
||||
<text id="n2_ey1o" name="n2" xy="215,16" size="162,57" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="42" color="#43633d" vAlign="middle" text="100胡息"/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -18,9 +18,9 @@
|
|||
<gearDisplay controller="self" pages="0"/>
|
||||
</image>
|
||||
<graph id="n33_mofd" name="n33" xy="73,28" size="108,108" type="rect" lineColor="#ffffffff" fillColor="#4cffffff" corner="10"/>
|
||||
<text id="n34_mofd" name="txt_name" xy="209,25" size="257,62" font="Microsoft YaHei" fontSize="46" color="#43633d" vAlign="middle" autoSize="shrink" bold="true" autoClearText="true" text="对对对"/>
|
||||
<text id="n35_mofd" name="txt_reserve_hp" xy="283,89" size="191,49" visible="false" font="Microsoft YaHei" fontSize="36" color="#43633d" vAlign="middle" autoSize="none" bold="true" autoClearText="true" text=""/>
|
||||
<text id="n36_mofd" name="text_ID_Title" xy="210,88" size="81,49" font="Microsoft YaHei" fontSize="36" color="#43633d" leading="0" bold="true" singleLine="true" text="ID:">
|
||||
<text id="n34_mofd" name="txt_name" xy="209,25" size="257,62" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="46" color="#43633d" vAlign="middle" autoSize="shrink" bold="true" autoClearText="true" text="对对对"/>
|
||||
<text id="n35_mofd" name="txt_reserve_hp" xy="283,89" size="191,49" visible="false" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="36" color="#43633d" vAlign="middle" autoSize="none" bold="true" autoClearText="true" text=""/>
|
||||
<text id="n36_mofd" name="text_ID_Title" xy="210,88" size="81,49" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="36" color="#43633d" leading="0" bold="true" singleLine="true" text="ID:">
|
||||
<relation target="" sidePair="left-right,top-top"/>
|
||||
</text>
|
||||
<image id="n7_tjnv" name="n7" src="ufu93p" fileName="component/clearing/image/fgx.png" xy="22,139" visible="false">
|
||||
|
|
@ -60,12 +60,12 @@
|
|||
<text id="n38_mofd" name="txt_navigate" xy="281,630" size="142,62" font="ui://27vd145byffn7iqf" fontSize="48" color="#ff1212" align="center" vAlign="middle" text="-4555">
|
||||
<gearDisplay controller="pn" pages="0"/>
|
||||
</text>
|
||||
<text id="n43_96nr" name="textTitle_daniao" xy="159,494" size="92,59" font="Microsoft YaHei" fontSize="44" color="#80622c" text="打鸟"/>
|
||||
<text id="n44_96nr" name="text_daniao" xy="282,492" size="33,67" font="Microsoft YaHei" fontSize="50" color="#80622c" text="0"/>
|
||||
<text id="n45_96nr" name="textTitle_score" xy="159,576" size="92,59" font="Microsoft YaHei" fontSize="44" color="#0084ff" text="战绩">
|
||||
<text id="n43_96nr" name="textTitle_daniao" xy="159,494" size="92,59" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="44" color="#80622c" text="打鸟"/>
|
||||
<text id="n44_96nr" name="text_daniao" xy="282,492" size="33,67" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="50" color="#80622c" text="0"/>
|
||||
<text id="n45_96nr" name="textTitle_score" xy="159,576" size="92,59" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="44" color="#0084ff" text="战绩">
|
||||
<gearColor controller="big_win" default="#0084ff,#000000"/>
|
||||
</text>
|
||||
<text id="n46_96nr" name="text_score" xy="282,572" size="33,67" font="Microsoft YaHei" fontSize="50" color="#0084ff" text="0">
|
||||
<text id="n46_96nr" name="text_score" xy="282,572" size="33,67" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="50" color="#0084ff" text="0">
|
||||
<gearColor controller="big_win" default="#0084ff,#000000"/>
|
||||
</text>
|
||||
</displayList>
|
||||
|
|
|
|||
|
|
@ -12,8 +12,8 @@
|
|||
<loader id="n16_of6w" name="card_2" xy="4,159" pivot="0.5,0.5" size="81,81" group="n19_of6w" fill="scaleFree"/>
|
||||
<loader id="n15_of6w" name="card_1" xy="4,241" pivot="0.5,0.5" size="81,81" group="n19_of6w" fill="scaleFree"/>
|
||||
<group id="n19_of6w" name="n19" xy="4,-5" size="82,327" group="n22_of6w" advanced="true"/>
|
||||
<text id="n20_of6w" name="card_type" xy="0,325" pivot="0.5,0.5" size="91,86" group="n22_of6w" font="Microsoft YaHei" fontSize="48" color="#43633d" align="center" vAlign="middle" leading="0" autoSize="shrink" text=""/>
|
||||
<text id="n21_of6w" name="card_huxi" xy="-17,-96" pivot="0.5,0.5" size="130,101" group="n22_of6w" font="Microsoft YaHei" fontSize="48" color="#43633d" align="center" vAlign="middle" leading="0" autoSize="shrink" text=""/>
|
||||
<text id="n20_of6w" name="card_type" xy="0,325" pivot="0.5,0.5" size="91,86" group="n22_of6w" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#43633d" align="center" vAlign="middle" leading="0" autoSize="shrink" text=""/>
|
||||
<text id="n21_of6w" name="card_huxi" xy="-17,-96" pivot="0.5,0.5" size="130,101" group="n22_of6w" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#43633d" align="center" vAlign="middle" leading="0" autoSize="shrink" text=""/>
|
||||
<group id="n22_of6w" name="n22" xy="-17,-96" size="130,507" advanced="true"/>
|
||||
<image id="n23_of6w" name="n23" src="ufu9u" fileName="component/clearing/image/hu_icon.png" xy="5,38" pivot="0.5,0.5" size="18,18" aspect="true">
|
||||
<gearDisplay controller="hu" pages="1,2,3,4"/>
|
||||
|
|
|
|||
|
|
@ -81,16 +81,16 @@
|
|||
<image id="n35_n1ry" name="n35" pkg="27vd145b" src="e54q3w" fileName="images/head/bank.png" xy="302,216" size="100,100" group="n44_n1ry" scale="0.8,0.8" visible="false">
|
||||
<gearDisplay controller="bank" pages="1"/>
|
||||
</image>
|
||||
<text id="n38_n1ry" name="WinerName" xy="214,386" size="339,64" group="n44_n1ry" font="Microsoft YaHei" fontSize="48" color="#43633d" vAlign="middle" autoSize="none" singleLine="true" text="玩家的名字則麽長~~"/>
|
||||
<text id="n38_n1ry" name="WinerName" xy="214,386" size="339,64" group="n44_n1ry" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#43633d" vAlign="middle" autoSize="none" singleLine="true" text="玩家的名字則麽長~~"/>
|
||||
<image id="n37_n1ry" name="n37" src="ufu928" fileName="font/images/head/owner.png" xy="319,286" size="25,25" group="n44_n1ry" visible="false">
|
||||
<gearDisplay controller="owner" pages="1"/>
|
||||
</image>
|
||||
<text id="n88_rbpg" name="WinerID" xy="219,451" size="47,64" group="n44_n1ry" font="Microsoft YaHei" fontSize="48" color="#43633d" vAlign="middle" singleLine="true" text="id"/>
|
||||
<text id="n88_rbpg" name="WinerID" xy="219,451" size="47,64" group="n44_n1ry" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#43633d" vAlign="middle" singleLine="true" text="id"/>
|
||||
<group id="n44_n1ry" name="n44" xy="214,216" size="339,299" group="n70_dunj"/>
|
||||
<image id="n33_n1ry" name="n33" src="ufu92r" fileName="component/clearing/di.png" xy="1246,495" size="1192,295" group="n45_n1ry" visible="false"/>
|
||||
<text id="n31_n1ry" name="111" xy="212,45" size="134,69" group="n45_n1ry" font="Microsoft YaHei" fontSize="52" color="#43633d" vAlign="middle" autoSize="none" text="底牌:"/>
|
||||
<text id="n31_n1ry" name="111" xy="212,45" size="134,69" group="n45_n1ry" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="52" color="#43633d" vAlign="middle" autoSize="none" text="底牌:"/>
|
||||
<list id="n32_n1ry" name="dipai_list" xy="339,33" size="549,90" group="n45_n1ry" layout="row" selectionMode="none" overflow="scroll" scroll="horizontal" colGap="5" defaultItem="ui://1utjt0r2ufu92s" vAlign="middle"/>
|
||||
<text id="n39_n1ry" name="huxi" xy="1909,448" size="360,74" group="n45_n1ry" font="Microsoft YaHei" fontSize="48" color="#43633d" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="1"/>
|
||||
<text id="n39_n1ry" name="huxi" xy="1909,448" size="360,74" group="n45_n1ry" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#43633d" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="1"/>
|
||||
<list id="n46_n1ry" name="fullname_list" xy="1427,158" size="410,554" group="n45_n1ry" selectionMode="none" lineGap="5" colGap="-10" defaultItem="ui://1utjt0r2ufu92t" autoClearItems="true">
|
||||
<item/>
|
||||
<item/>
|
||||
|
|
@ -103,7 +103,7 @@
|
|||
<item/>
|
||||
<item/>
|
||||
</list>
|
||||
<text id="n42_n1ry" name="score" xy="1907,522" size="364,74" group="n45_n1ry" font="Microsoft YaHei" fontSize="48" color="#43633d" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="1"/>
|
||||
<text id="n42_n1ry" name="score" xy="1907,522" size="364,74" group="n45_n1ry" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#43633d" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="1"/>
|
||||
<text id="n56_fnpw" name="222" xy="1920,615" size="82,37" group="n58_fnpw" fontSize="26" color="#b25116" vAlign="middle" text="弃牌:"/>
|
||||
<list id="n62_fnpw" name="qipai_list" xy="1865,250" size="317,163" group="n58_fnpw" layout="row" colGap="1" defaultItem="ui://1utjt0r2ufu929" vAlign="middle">
|
||||
<item/>
|
||||
|
|
@ -139,9 +139,9 @@
|
|||
<image id="n87_rbpg" name="n87" src="ufu922" fileName="component/clearing/images/dianpao.png" xy="1992,703" size="157,97" group="n70_dunj">
|
||||
<gearDisplay controller="hudianpao" pages="2"/>
|
||||
</image>
|
||||
<text id="n92_uw33" name="huxi_shu" xy="1349,791" size="257,49" group="n70_dunj" visible="false" font="Microsoft YaHei" fontSize="36" color="#43633d" vAlign="middle" autoSize="none" bold="true" singleLine="true" text=""/>
|
||||
<text id="n93_uw33" name="score_shu" xy="1347,857" size="256,57" group="n70_dunj" font="Microsoft YaHei" fontSize="36" color="#43633d" vAlign="middle" autoSize="none" bold="true" singleLine="true" text=""/>
|
||||
<text id="n90_dbve" name="fangpaoscore" xy="1590,714" size="368,72" group="n70_dunj" font="Microsoft YaHei" fontSize="48" color="#43633d" vAlign="middle" autoSize="none" bold="true" text="放炮扣息:-30">
|
||||
<text id="n92_uw33" name="huxi_shu" xy="1349,791" size="257,49" group="n70_dunj" visible="false" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="36" color="#43633d" vAlign="middle" autoSize="none" bold="true" singleLine="true" text=""/>
|
||||
<text id="n93_uw33" name="score_shu" xy="1347,857" size="256,57" group="n70_dunj" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="36" color="#43633d" vAlign="middle" autoSize="none" bold="true" singleLine="true" text=""/>
|
||||
<text id="n90_dbve" name="fangpaoscore" xy="1590,714" size="368,72" group="n70_dunj" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#43633d" vAlign="middle" autoSize="none" bold="true" text="放炮扣息:-30">
|
||||
<gearDisplay controller="hudianpao" pages="2"/>
|
||||
</text>
|
||||
<list id="n52_rx2e" name="card_list_3" xy="4270,-501" size="261,198" group="n55_rx2e" layout="row" colGap="1" defaultItem="ui://1utjt0r2ufu929" vAlign="middle">
|
||||
|
|
@ -184,7 +184,7 @@
|
|||
<gearDisplay controller="over" pages="2"/>
|
||||
</group>
|
||||
<image id="n100_o0c1" name="n100" src="o0c191" fileName="images/over_line.png" xy="114,603" size="1991,8" group="n70_dunj"/>
|
||||
<text id="n91_n7o4" name="n91" xy="1316,496" size="345,91" group="n70_dunj" font="Microsoft YaHei" fontSize="40" color="#43663d" align="center" vAlign="middle" autoSize="none" text="荒庄 : -10 胡息">
|
||||
<text id="n91_n7o4" name="n91" xy="1316,496" size="345,91" group="n70_dunj" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="40" color="#43663d" align="center" vAlign="middle" autoSize="none" text="荒庄 : -10 胡息">
|
||||
<gearDisplay controller="over" pages="2"/>
|
||||
</text>
|
||||
<component id="n71_dunj" name="big_result" src="ufu930" fileName="component/clearing/result_zipai_main.xml" xy="0,5">
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<controller name="owner" pages="0,,1," selected="0"/>
|
||||
<controller name="bank" pages="0,,1," selected="0"/>
|
||||
<displayList>
|
||||
<text id="n31_rbpg" name="tili_id" xy="-36,215" size="77,64" group="n20_n1ry" font="Microsoft YaHei" fontSize="48" color="#43633d" align="right" autoSize="none" text="ID:"/>
|
||||
<text id="n31_rbpg" name="tili_id" xy="-36,215" size="77,64" group="n20_n1ry" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#43633d" align="right" autoSize="none" text="ID:"/>
|
||||
<image id="n21_n1ry" name="n21" src="ufu924" fileName="font/images/head/index_bg_01.png" xy="5,8" size="153,150" group="n20_n1ry" aspect="true" visible="false"/>
|
||||
<image id="n32_o36r" name="n32" src="ufu925" fileName="component/head/image/touxiang_di_img.png" xy="8,8" size="145,144" group="n20_n1ry"/>
|
||||
<component id="n33_o36r" name="btn_head" src="ufu926" fileName="component/head/Head2.xml" xy="10,10" size="142,142" group="n20_n1ry"/>
|
||||
|
|
@ -14,11 +14,11 @@
|
|||
<image id="n14_pt1r" name="n14" src="ufu928" fileName="font/images/head/owner.png" xy="134,129" size="25,25" group="n20_n1ry" visible="false">
|
||||
<gearDisplay controller="owner" pages="1"/>
|
||||
</image>
|
||||
<text id="n5_fux2" name="playerName" xy="-13,155" size="311,64" group="n20_n1ry" font="Microsoft YaHei" fontSize="48" color="#43633d" vAlign="middle" autoSize="none" singleLine="true" text="玩家的名字則麽長~~"/>
|
||||
<text id="n5_fux2" name="playerName" xy="-13,155" size="311,64" group="n20_n1ry" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#43633d" vAlign="middle" autoSize="none" singleLine="true" text="玩家的名字則麽長~~"/>
|
||||
<text id="n23_w06x" name="tili_score" xy="89,352" size="125,49" group="n20_n1ry" visible="false" fontSize="36" color="#43633d" vAlign="middle" autoSize="none" text="-66"/>
|
||||
<text id="n25_w06x" name="tili_title" xy="-44,353" size="131,49" group="n20_n1ry" visible="false" fontSize="36" color="#43633d" align="right" autoSize="none" text="积分:"/>
|
||||
<text id="n26_w06x" name="yidashangxian" xy="0,-57" size="164,58" group="n20_n1ry" fontSize="26" color="#b25116" align="center" vAlign="middle" autoSize="none" bold="true" text="1"/>
|
||||
<text id="n30_rbpg" name="txt_userid" xy="41,216" size="300,64" group="n20_n1ry" font="Microsoft YaHei" fontSize="48" color="#43633d" vAlign="middle" autoSize="none" text="1235656"/>
|
||||
<text id="n30_rbpg" name="txt_userid" xy="41,216" size="300,64" group="n20_n1ry" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#43633d" vAlign="middle" autoSize="none" text="1235656"/>
|
||||
<group id="n20_n1ry" name="n20" xy="-44,-57" size="385,459"/>
|
||||
<list id="n22_ey1o" name="card_list" xy="371,49" pivot="0.5,0.5" size="315,500" layout="row" colGap="1" defaultItem="ui://1utjt0r2o36r96" align="right">
|
||||
<item/>
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
<displayList>
|
||||
<image id="n0_fux2" name="n0" src="g8y26o" xy="0,0" size="661,117" pkg="442j0uep" />
|
||||
<image id="n1_fux2" name="n1" src="g8y26p" xy="-2,-3" size="937,120" pkg="442j0uep" />
|
||||
<text id="n7_fux2" name="score2" xy="641,5" size="256,111" font="Microsoft YaHei" fontSize="48" color="#ffffff" align="center" vAlign="middle" ubb="true" autoSize="none" text="-10000" bold="true" />
|
||||
<text id="n7_fux2" name="score2" xy="641,5" size="256,111" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#ffffff" align="center" vAlign="middle" ubb="true" autoSize="none" text="-10000" bold="true" />
|
||||
<image id="n18_jqcw" name="n18" src="e54q3w" pkg="27vd145b" xy="-13,-13" scale="0.8,0.8" visible="false">
|
||||
<gearDisplay controller="bank" pages="1" />
|
||||
</image>
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
<displayList>
|
||||
<image id="n22_n1ry" name="n22" src="ufu92b" fileName="component/clearing/di(1).png" xy="0,0" size="205,484" />
|
||||
<text id="n2_fux2" name="name" xy="0,114" size="210,39" fontSize="24" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="玩家的名字則麽長~~" bold="true" />
|
||||
<text id="n3_fux2" name="score" xy="-3,162" size="213,78" font="Microsoft YaHei" fontSize="50" color="#f16bc0" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+1223" bold="true">
|
||||
<text id="n3_fux2" name="score" xy="-3,162" size="213,78" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="50" color="#f16bc0" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+1223" bold="true">
|
||||
<gearColor controller="color" pages="0,1" values="#f16bc0,#000000|#5df2a3,#000000" />
|
||||
</text>
|
||||
<component id="n18_nrno" name="btn_head" src="ufu92c" fileName="component/head/Head.xml" xy="65,20" size="80,80" />
|
||||
|
|
@ -25,12 +25,12 @@
|
|||
</image>
|
||||
<text id="n25_kl1l" name="win_count" xy="22,298" size="163,38" fontSize="22" color="#ffffff" align="center" vAlign="middle" autoSize="none" strokeColor="#000000" singleLine="true" text="胡牌次数:3" bold="true" />
|
||||
<text id="n26_kl1l" name="total_huxi" xy="22,330" size="163,38" fontSize="22" color="#ffffff" align="center" vAlign="middle" autoSize="none" strokeColor="#000000" singleLine="true" text="胡牌次数:150胡息" bold="true" />
|
||||
<text id="n32_fc32" name="score1" xy="76,230" size="129,60" group="n36_fc32" font="Microsoft YaHei" fontSize="29" color="#f16bc0" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+12234" bold="true">
|
||||
<text id="n32_fc32" name="score1" xy="76,230" size="129,60" group="n36_fc32" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="29" color="#f16bc0" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+12234" bold="true">
|
||||
<gearColor controller="color" pages="0,1" values="#f16bc0,#000000|#5df2a3,#000000" />
|
||||
</text>
|
||||
<image id="n33_fc32" name="n33" src="ufu92g" fileName="component/result/bd.png" xy="10,242" size="72,30" group="n36_fc32" />
|
||||
<image id="n34_fc32" name="n34" src="ufu92h" fileName="component/result/bsxz.png" xy="54,250" size="25,27" group="n36_fc32" />
|
||||
<text id="n35_fc32" name="sss" xy="0,238" pivot="1,0.5" size="58,52" group="n36_fc32" font="Microsoft YaHei" fontSize="25" align="right" vAlign="middle" autoSize="none" singleLine="true" text="500 " bold="true" />
|
||||
<text id="n35_fc32" name="sss" xy="0,238" pivot="1,0.5" size="58,52" group="n36_fc32" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="25" align="right" vAlign="middle" autoSize="none" singleLine="true" text="500 " bold="true" />
|
||||
<group id="n36_fc32" name="n36" xy="0,230" size="205,60" advanced="true">
|
||||
<gearDisplay controller="bei" pages="1" />
|
||||
</group>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<component size="480,70">
|
||||
<displayList>
|
||||
<image id="n3_lotf" name="n3" src="hr0l7hzk" fileName="font/images/win/9bg_05.png" pkg="27vd145b" xy="0,0" size="480,70"/>
|
||||
<text id="n1_tjnv" name="txt_value" xy="418,31" pivot="1,0.5" anchor="true" size="79,74" font="Microsoft YaHei" fontSize="52" color="#ffffff" align="center" vAlign="middle" leading="1" ubb="true" autoSize="none" text="100"/>
|
||||
<text id="n0_tjnv" name="txt_key" xy="18,35" pivot="0,0.5" anchor="true" size="461,80" font="Microsoft YaHei" fontSize="52" color="#ffffff" vAlign="middle" leading="1" ubb="true" autoSize="none" text="胡牌次数"/>
|
||||
<text id="n1_tjnv" name="txt_value" xy="418,31" pivot="1,0.5" anchor="true" size="79,74" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="52" color="#ffffff" align="center" vAlign="middle" leading="1" ubb="true" autoSize="none" text="100"/>
|
||||
<text id="n0_tjnv" name="txt_key" xy="18,35" pivot="0,0.5" anchor="true" size="461,80" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="52" color="#ffffff" vAlign="middle" leading="1" ubb="true" autoSize="none" text="胡牌次数"/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -12,8 +12,8 @@
|
|||
<loader id="n16_of6w" name="card_2" xy="4,159" pivot="0.5,0.5" size="81,81" group="n19_of6w" fill="scaleFree"/>
|
||||
<loader id="n15_of6w" name="card_1" xy="4,241" pivot="0.5,0.5" size="81,81" group="n19_of6w" fill="scaleFree"/>
|
||||
<group id="n19_of6w" name="n19" xy="4,-5" size="82,327" group="n22_of6w" advanced="true"/>
|
||||
<text id="n20_of6w" name="card_type" xy="0,325" pivot="0.5,0.5" size="91,86" group="n22_of6w" font="Microsoft YaHei" fontSize="48" color="#43633d" align="center" vAlign="middle" leading="0" autoSize="shrink" text=""/>
|
||||
<text id="n21_of6w" name="card_huxi" xy="-17,-96" pivot="0.5,0.5" size="130,101" group="n22_of6w" font="Microsoft YaHei" fontSize="48" color="#43633d" align="center" vAlign="middle" leading="0" autoSize="shrink" text=""/>
|
||||
<text id="n20_of6w" name="card_type" xy="0,325" pivot="0.5,0.5" size="91,86" group="n22_of6w" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#43633d" align="center" vAlign="middle" leading="0" autoSize="shrink" text=""/>
|
||||
<text id="n21_of6w" name="card_huxi" xy="-17,-96" pivot="0.5,0.5" size="130,101" group="n22_of6w" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#43633d" align="center" vAlign="middle" leading="0" autoSize="shrink" text=""/>
|
||||
<group id="n22_of6w" name="n22" xy="-17,-96" size="130,507" advanced="true"/>
|
||||
<image id="n23_of6w" name="n23" src="ufu9u" fileName="component/clearing/image/hu_icon.png" xy="5,38" pivot="0.5,0.5" size="18,18" aspect="true">
|
||||
<gearDisplay controller="hu" pages="1,2,3,4"/>
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
</loader>
|
||||
<loader id="n5_ey1o" name="card_2" xy="4,159" pivot="0.5,0.5" size="81,81" fill="scale" autoSize="true"/>
|
||||
<loader id="n1_ey1o" name="card_1" xy="5,241" pivot="0.5,0.5" size="81,81" fill="scale" autoSize="true"/>
|
||||
<text id="n6_a81d" name="card_type" xy="41,342" pivot="0.5,0.5" size="10,49" font="Microsoft YaHei" fontSize="36" color="#43633d" align="center" vAlign="bottom" leading="0" text=""/>
|
||||
<text id="n7_a81d" name="card_huxi" xy="40,-57" pivot="0.5,0.5" size="10,49" font="Microsoft YaHei" fontSize="36" color="#43633d" align="center" vAlign="middle" leading="0" text=""/>
|
||||
<text id="n6_a81d" name="card_type" xy="41,342" pivot="0.5,0.5" size="10,49" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="36" color="#43633d" align="center" vAlign="bottom" leading="0" text=""/>
|
||||
<text id="n7_a81d" name="card_huxi" xy="40,-57" pivot="0.5,0.5" size="10,49" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="36" color="#43633d" align="center" vAlign="middle" leading="0" text=""/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -41,7 +41,7 @@
|
|||
<relation target="" sidePair="center-center"/>
|
||||
</text>
|
||||
<image id="n58_mofd" name="n58" src="yffn7iq3" fileName="images/bg_game_clearDetail.png" pkg="27vd145b" xy="748,958" group="n60_mofd"/>
|
||||
<text id="n59_mofd" name="txt_play" xy="838,962" size="856,137" group="n60_mofd" font="Microsoft YaHei" fontSize="32" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" bold="true" text="玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明"/>
|
||||
<text id="n59_mofd" name="txt_play" xy="838,962" size="856,137" group="n60_mofd" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="32" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" bold="true" text="玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明玩法说明"/>
|
||||
<group id="n60_mofd" name="player" xy="748,958" size="1035,141" group="n31_aen8" advanced="true">
|
||||
<relation target="" sidePair="center-center,top-top"/>
|
||||
</group>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
<image id="n7" name="n7" src="ufu948" fileName="component/create_room/image/single_btn_s.png" xy="10,5">
|
||||
<gearDisplay controller="button" pages="1,3" />
|
||||
</image>
|
||||
<text id="n8" name="title" xy="49,5" size="265,39" font="Microsoft YaHei" fontSize="28" color="#367256" vAlign="middle" autoSize="none" text="2" bold="true" />
|
||||
<text id="n8" name="title" xy="49,5" size="265,39" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#367256" vAlign="middle" autoSize="none" text="2" bold="true" />
|
||||
</displayList>
|
||||
<Button mode="Radio" />
|
||||
</component>
|
||||
|
|
@ -5,7 +5,7 @@
|
|||
<image id="n7_rpaz" name="n7" src="ufu94a" fileName="component/create_room/image/multiple_btn_n.png" xy="13,8">
|
||||
<gearDisplay controller="button" pages="0" />
|
||||
</image>
|
||||
<text id="n9_rpaz" name="title" xy="59,6" size="212,39" font="Microsoft YaHei" fontSize="20" color="#367256" vAlign="middle" autoSize="shrink" text="123" bold="true" />
|
||||
<text id="n9_rpaz" name="title" xy="59,6" size="212,39" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#367256" vAlign="middle" autoSize="shrink" text="123" bold="true" />
|
||||
<image id="n10_vyn3" name="n10" src="ufu94a" fileName="component/create_room/image/multiple_btn_n.png" xy="13,8">
|
||||
<gearDisplay controller="button" pages="1" />
|
||||
</image>
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@
|
|||
<component id="n309_ozsy" name="btn_round4" src="ufu94x" fileName="component/create_room/Btn_cr_checkbox.xml" xy="453,66" group="n5_mw5l">
|
||||
<Button title="4局" controller="round" page="1" />
|
||||
</component>
|
||||
<text id="n4_mw5l" name="n4" xy="40,73" size="92,29" group="n5_mw5l" font="Microsoft YaHei" fontSize="20" color="#96491f" bold="true" text="局 数" />
|
||||
<text id="n4_mw5l" name="n4" xy="40,73" size="92,29" group="n5_mw5l" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" bold="true" text="局 数" />
|
||||
<text id="n275_se1s" name="tex_price1" xy="345,70" size="30,29" group="n276_se1s" fontSize="20" color="#ffffff" autoSize="none" text="10" bold="true" />
|
||||
<group id="n276_se1s" name="n276" xy="345,70" size="30,29" group="n5_mw5l" advanced="true" />
|
||||
<text id="n278_se1s" name="tex_price2" xy="606,72" size="30,29" group="n279_se1s" fontSize="20" color="#ffffff" autoSize="none" text="20" bold="true" />
|
||||
|
|
@ -69,23 +69,23 @@
|
|||
<group id="n5_mw5l" name="n5" xy="40,66" size="870,47" />
|
||||
<component id="n23_i1r6" name="n23" src="ufu94w" fileName="component/create_room/di01.xml" xy="0,122" size="1050,263" group="n133_r282" />
|
||||
<component id="n116_r282" name="n116" src="ufu94w" fileName="component/create_room/di01.xml" xy="0,400" group="n133_r282" />
|
||||
<text id="n45_g92u" name="n45" xy="40,233" size="92,29" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" bold="true" text="名 堂" />
|
||||
<text id="n45_g92u" name="n45" xy="40,233" size="92,29" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" bold="true" text="名 堂" />
|
||||
<image id="n77_r282" name="n77" src="ufu949" fileName="component/create_room/image/pic10.png" xy="209,139" size="40,33" group="n79_r282" aspect="true" />
|
||||
<text id="n78_r282" name="n78" xy="256,139" size="87,39" group="n79_r282" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="天胡 " />
|
||||
<text id="n78_r282" name="n78" xy="256,139" size="87,39" group="n79_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="天胡 " />
|
||||
<group id="n79_r282" name="n79" xy="209,139" size="134,39" group="n46_g92u" />
|
||||
<text id="n81_r282" name="n81" xy="365,139" size="90,39" group="n82_r282" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="地胡 6" />
|
||||
<text id="n81_r282" name="n81" xy="365,139" size="90,39" group="n82_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="地胡 6" />
|
||||
<group id="n82_r282" name="n82" xy="365,139" size="90,39" group="n46_g92u" />
|
||||
<text id="n84_r282" name="n84" xy="490,139" size="91,37" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="海胡 6" />
|
||||
<text id="n87_r282" name="n87" xy="620,139" size="113,37" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="红胡 3+n" />
|
||||
<text id="n90_r282" name="n90" xy="750,139" size="92,37" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="乌胡 8" />
|
||||
<text id="n84_r282" name="n84" xy="490,139" size="91,37" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="海胡 6" />
|
||||
<text id="n87_r282" name="n87" xy="620,139" size="113,37" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="红胡 3+n" />
|
||||
<text id="n90_r282" name="n90" xy="750,139" size="92,37" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="乌胡 8" />
|
||||
<image id="n92_r282" name="n92" src="ufu949" fileName="component/create_room/image/pic10.png" xy="209,184" size="40,33" group="n94_r282" aspect="true" />
|
||||
<text id="n93_r282" name="n93" xy="252,183" size="88,37" group="n94_r282" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="点胡 6" />
|
||||
<text id="n93_r282" name="n93" xy="252,183" size="88,37" group="n94_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="点胡 6" />
|
||||
<group id="n94_r282" name="n94" xy="209,183" size="131,37" group="n46_g92u" />
|
||||
<text id="n96_r282" name="n96" xy="365,183" size="106,37" group="n97_r282" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="大胡 8+n" />
|
||||
<text id="n96_r282" name="n96" xy="365,183" size="106,37" group="n97_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="大胡 8+n" />
|
||||
<group id="n97_r282" name="n97" xy="365,183" size="106,37" group="n46_g92u" />
|
||||
<text id="n99_r282" name="n99" xy="487,183" size="136,37" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="小胡 10+n" />
|
||||
<text id="n103_r282" name="n103" xy="620,183" size="125,37" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="对子胡 8" />
|
||||
<text id="n106_r282" name="n106" xy="750,183" size="169,38" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="自摸加一囤" />
|
||||
<text id="n99_r282" name="n99" xy="487,183" size="136,37" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="小胡 10+n" />
|
||||
<text id="n103_r282" name="n103" xy="620,183" size="125,37" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="对子胡 8" />
|
||||
<text id="n106_r282" name="n106" xy="750,183" size="169,38" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="自摸加一囤" />
|
||||
<component id="n76_r282" name="n76" src="ufu94y" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="206,283" group="n46_g92u">
|
||||
<Button title="行行息 8" controller="hanghangxi" page="1" />
|
||||
</component>
|
||||
|
|
@ -115,7 +115,7 @@
|
|||
</component>
|
||||
<group id="n46_g92u" name="n46" xy="40,139" size="879,244" group="n133_r282" />
|
||||
<component id="n122_r282" name="n122" src="ufu94w" fileName="component/create_room/di01.xml" xy="0,477" group="n133_r282" />
|
||||
<text id="n117_r282" name="n117" xy="40,411" size="86,29" group="n123_r282" font="Microsoft YaHei" fontSize="20" color="#96491f" bold="true" text="充 囤" />
|
||||
<text id="n117_r282" name="n117" xy="40,411" size="86,29" group="n123_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" bold="true" text="充 囤" />
|
||||
<graph id="n271_se1s" name="n271" xy="251,421" size="93,31" group="n123_r282" type="rect" fillColor="#99000000" />
|
||||
<text id="n120_r282" name="shu" xy="265,417" size="65,38" group="n123_r282" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="0" bold="true">
|
||||
<gearText controller="tun" pages="0,2" values="0|2" default="1" />
|
||||
|
|
@ -123,7 +123,7 @@
|
|||
<component id="n121_r282" name="btn_jian" src="ufu94z" fileName="component/create_room/Button3.xml" xy="197,412" group="n123_r282" />
|
||||
<component id="n118_r282" name="btn_jia" src="ufu950" fileName="component/create_room/Button2.xml" xy="350,412" group="n123_r282" />
|
||||
<group id="n123_r282" name="n123" xy="40,411" size="388,44" group="n133_r282" advanced="true" />
|
||||
<text id="n124_r282" name="n124" xy="40,489" size="84,29" group="n128_r282" font="Microsoft YaHei" fontSize="20" color="#96491f" bold="true" text="封顶设置" />
|
||||
<text id="n124_r282" name="n124" xy="40,489" size="84,29" group="n128_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" bold="true" text="封顶设置" />
|
||||
<component id="n129_r282" name="btn_bufen" src="ufu94x" fileName="component/create_room/Btn_cr_checkbox.xml" xy="203,483" size="227,47" group="n128_r282">
|
||||
<Button checked="true" title="不封顶" controller="fengding" page="0" />
|
||||
</component>
|
||||
|
|
@ -145,7 +145,7 @@
|
|||
</group>
|
||||
<component id="n134_r282" name="n134" src="ufu94w" fileName="component/create_room/di01.xml" xy="0,410" group="n172_r282" />
|
||||
<component id="n135_r282" name="n135" src="ufu94w" fileName="component/create_room/di01.xml" xy="0,340" group="n172_r282" />
|
||||
<text id="n136_r282" name="n1361" xy="40,353" size="116,39" group="n140_r282" font="Microsoft YaHei" fontSize="28" color="#83523a" bold="true" text="充 囤" />
|
||||
<text id="n136_r282" name="n1361" xy="40,353" size="116,39" group="n140_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#83523a" bold="true" text="充 囤" />
|
||||
<graph id="n272_se1s" name="n272" xy="272,354" size="93,31" group="n140_r282" type="rect" fillColor="#99000000" />
|
||||
<text id="n138_r282" name="shu1" xy="286,351" size="65,38" group="n140_r282" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="0" bold="true">
|
||||
<gearText controller="tun" pages="0,2" values="0|2" default="1" />
|
||||
|
|
@ -153,7 +153,7 @@
|
|||
<component id="n137_r282" name="btn_jia1" src="ufu950" fileName="component/create_room/Button2.xml" xy="355,352" group="n140_r282" />
|
||||
<component id="n139_r282" name="btn_jian1" src="ufu94z" fileName="component/create_room/Button3.xml" xy="206,352" group="n140_r282" />
|
||||
<group id="n140_r282" name="n140" xy="40,351" size="393,38" group="n172_r282" />
|
||||
<text id="n141_r282" name="n141" xy="40,422" size="116,39" group="n145_r282" font="Microsoft YaHei" fontSize="28" color="#83523a" bold="true" text="封顶设置" />
|
||||
<text id="n141_r282" name="n141" xy="40,422" size="116,39" group="n145_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#83523a" bold="true" text="封顶设置" />
|
||||
<component id="n142_r282" name="btn_bufen1" src="ufu94x" fileName="component/create_room/Btn_cr_checkbox.xml" xy="209,417" size="227,47" group="n145_r282">
|
||||
<Button checked="true" title="不封顶" controller="fengding" page="0" />
|
||||
</component>
|
||||
|
|
@ -165,7 +165,7 @@
|
|||
</component>
|
||||
<group id="n145_r282" name="n145" xy="40,417" size="858,47" group="n172_r282" />
|
||||
<component id="n146_r282" name="n146" src="ufu94w" fileName="component/create_room/di01.xml" xy="0,200" size="1050,117" group="n172_r282" />
|
||||
<text id="n147_r282" name="n147" xy="40,239" size="128,39" group="n151_r282" font="Microsoft YaHei" fontSize="28" color="#83523a" autoSize="none" bold="true" text="名 堂" />
|
||||
<text id="n147_r282" name="n147" xy="40,239" size="128,39" group="n151_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#83523a" autoSize="none" bold="true" text="名 堂" />
|
||||
<group id="n151_r282" name="n151" xy="40,239" size="128,39" group="n172_r282" />
|
||||
<image id="n155_r282" name="n155" src="ufu949" fileName="component/create_room/image/pic10.png" xy="206,214" size="40,33" group="n157_r282" aspect="true" />
|
||||
<text id="n156_r282" name="n156" xy="254,214" size="100,38" group="n157_r282" fontSize="28" color="#127352" autoSize="none" text="红胡 2" bold="true" />
|
||||
|
|
@ -187,7 +187,7 @@
|
|||
<component id="n176_ey1o" name="n176" src="ufu94w" fileName="component/create_room/di01.xml" xy="-1,254" size="1050,181" group="n231_ey1o" />
|
||||
<component id="n255_os7u" name="n255" src="ufu94w" fileName="component/create_room/di01.xml" xy="-1,455" size="163,60" group="n231_ey1o" />
|
||||
<component id="n261_9rmk" name="n261" src="ufu94w" fileName="component/create_room/di01.xml" xy="-1,533" size="163,60" group="n231_ey1o" />
|
||||
<text id="n250_os7u" name="n250" xy="23,797" size="116,39" group="n254_os7u" visible="false" font="Microsoft YaHei" fontSize="28" color="#83523a" bold="true" text="封顶设置" />
|
||||
<text id="n250_os7u" name="n250" xy="23,797" size="116,39" group="n254_os7u" visible="false" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#83523a" bold="true" text="封顶设置" />
|
||||
<component id="n251_os7u" name="btn_bufen2" src="ufu94x" fileName="component/create_room/Btn_cr_checkbox.xml" xy="188,792" size="227,47" group="n254_os7u" visible="false">
|
||||
<Button checked="true" title="不封顶" controller="fengding" page="0" />
|
||||
</component>
|
||||
|
|
@ -198,7 +198,7 @@
|
|||
<Button title="80封顶" controller="fengding" page="2" />
|
||||
</component>
|
||||
<group id="n254_os7u" name="n254" xy="23,792" size="854,47" group="n231_ey1o" />
|
||||
<text id="n181_ey1o" name="n181" xy="34,639" size="98,29" group="n231_ey1o" font="Microsoft YaHei" fontSize="20" color="#83523a" autoSize="none" bold="true" text="名 堂" />
|
||||
<text id="n181_ey1o" name="n181" xy="34,639" size="98,29" group="n231_ey1o" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#83523a" autoSize="none" bold="true" text="名 堂" />
|
||||
<component id="n257_9rmk" name="n257" src="ufu94y" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="203,606" size="179,47" group="n262_9rmk">
|
||||
<Button checked="true" title="一点红" controller="yidianhu" page="0" />
|
||||
</component>
|
||||
|
|
@ -215,7 +215,7 @@
|
|||
<Button checked="true" title="红黑胡" controller="hongheihu" page="0" />
|
||||
</component>
|
||||
<group id="n262_9rmk" name="n262" xy="203,604" size="669,117" group="n231_ey1o" />
|
||||
<text id="n310_h9ke" name="n310" xy="34,457" size="92,29" group="n314_h9ke" font="Microsoft YaHei" fontSize="20" color="#83523a" bold="true" text="抽 牌" />
|
||||
<text id="n310_h9ke" name="n310" xy="34,457" size="92,29" group="n314_h9ke" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#83523a" bold="true" text="抽 牌" />
|
||||
<component id="n311_h9ke" name="btn_bufen2" src="ufu94x" fileName="component/create_room/Btn_cr_checkbox.xml" xy="204,451" size="227,47" group="n314_h9ke">
|
||||
<Button checked="true" title="不抽牌" titleFontSize="26" controller="qupai" page="0" />
|
||||
</component>
|
||||
|
|
@ -223,7 +223,7 @@
|
|||
<Button title="抽牌20张" titleFontSize="26" controller="qupai" page="1" />
|
||||
</component>
|
||||
<group id="n314_h9ke" name="n314" xy="34,451" size="642,47" group="n231_ey1o" />
|
||||
<text id="n334_usec" name="n334" xy="36,214" size="92,29" group="n337_usec" font="Microsoft YaHei" fontSize="20" color="#83523a" bold="true" text="起 胡" />
|
||||
<text id="n334_usec" name="n334" xy="36,214" size="92,29" group="n337_usec" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#83523a" bold="true" text="起 胡" />
|
||||
<component id="n335_usec" name="btn_bufen2" src="ufu94x" fileName="component/create_room/Btn_cr_checkbox.xml" xy="206,205" size="227,47" group="n337_usec">
|
||||
<Button checked="true" title="15息起胡" titleFontSize="26" controller="qixihu" page="0" />
|
||||
</component>
|
||||
|
|
@ -231,7 +231,7 @@
|
|||
<Button title="10息起胡" titleFontSize="26" controller="qixihu" page="1" />
|
||||
</component>
|
||||
<group id="n337_usec" name="n337" xy="36,205" size="642,47" group="n231_ey1o" />
|
||||
<text id="n342_usec" name="n342" xy="35,298" size="92,29" group="n345_usec" font="Microsoft YaHei" fontSize="20" color="#83523a" bold="true" text="算 囤" />
|
||||
<text id="n342_usec" name="n342" xy="35,298" size="92,29" group="n345_usec" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#83523a" bold="true" text="算 囤" />
|
||||
<component id="n343_usec" name="btn_bufen2" src="ufu94x" fileName="component/create_room/Btn_cr_checkbox.xml" xy="205,289" size="227,47" group="n345_usec">
|
||||
<Button checked="true" title="1息1囤(逢3加3)" titleFontSize="26" controller="tun" page="0" />
|
||||
</component>
|
||||
|
|
@ -242,7 +242,7 @@
|
|||
<Button title="3息1囤" titleFontSize="26" controller="tun" page="2" />
|
||||
</component>
|
||||
<group id="n345_usec" name="n345" xy="35,289" size="861,47" group="n231_ey1o" />
|
||||
<text id="n347_usec" name="n347" xy="34,375" size="92,29" group="n351_usec" font="Microsoft YaHei" fontSize="20" color="#83523a" bold="true" text="偎 牌" />
|
||||
<text id="n347_usec" name="n347" xy="34,375" size="92,29" group="n351_usec" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#83523a" bold="true" text="偎 牌" />
|
||||
<component id="n348_usec" name="btn_bufen2" src="ufu94x" fileName="component/create_room/Btn_cr_checkbox.xml" xy="204,366" size="227,47" group="n351_usec">
|
||||
<Button checked="true" title="明偎" titleFontSize="26" controller="weipai" page="0" />
|
||||
</component>
|
||||
|
|
@ -250,7 +250,7 @@
|
|||
<Button title="暗偎" titleFontSize="26" controller="weipai" page="1" />
|
||||
</component>
|
||||
<group id="n351_usec" name="n351" xy="34,366" size="642,47" group="n231_ey1o" />
|
||||
<text id="n353_usec" name="n353" xy="34,537" size="92,29" group="n356_usec" font="Microsoft YaHei" fontSize="20" color="#83523a" bold="true" text="玩 法" />
|
||||
<text id="n353_usec" name="n353" xy="34,537" size="92,29" group="n356_usec" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#83523a" bold="true" text="玩 法" />
|
||||
<component id="n357_usec" name="n357" src="ufu94y" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="205,525" size="179,47" group="n356_usec">
|
||||
<Button checked="true" title="30胡翻倍" controller="xidouble30" page="0" />
|
||||
</component>
|
||||
|
|
@ -258,12 +258,12 @@
|
|||
<Button checked="true" title="自摸加3胡" controller="zimo" page="0" />
|
||||
</component>
|
||||
<group id="n356_usec" name="n356" xy="34,525" size="594,47" group="n231_ey1o" />
|
||||
<text id="n364_u3z9" name="n364" xy="35,895" size="98,29" group="n231_ey1o" font="Microsoft YaHei" fontSize="20" color="#83523a" autoSize="none" bold="true" text="暗 抽" />
|
||||
<text id="n364_u3z9" name="n364" xy="35,895" size="98,29" group="n231_ey1o" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#83523a" autoSize="none" bold="true" text="暗 抽" />
|
||||
<group id="n231_ey1o" name="n231" xy="-1,205" size="1050,719" advanced="true">
|
||||
<gearDisplay controller="btn_Controller" pages="0" />
|
||||
</group>
|
||||
<component id="n289_fnpw" name="n289" src="ufu94w" fileName="component/create_room/di01.xml" xy="0,125" group="n294_fnpw" />
|
||||
<text id="n290_fnpw" name="n290" xy="40,138" size="92,29" group="n293_fnpw" font="Microsoft YaHei" fontSize="20" color="#96491f" bold="true" text="人 数" />
|
||||
<text id="n290_fnpw" name="n290" xy="40,138" size="92,29" group="n293_fnpw" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" bold="true" text="人 数" />
|
||||
<component id="n291_fnpw" name="n291" src="ufu94x" fileName="component/create_room/Btn_cr_checkbox.xml" xy="206,133" group="n293_fnpw">
|
||||
<Button checked="true" title="两人" controller="renshu" page="0" />
|
||||
</component>
|
||||
|
|
@ -280,7 +280,7 @@
|
|||
<component id="n319_vks0" name="xipai" src="ufu94y" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="201,734" size="157,47" group="n325_vks0">
|
||||
<Button title="洗牌" controller="xipaictr" page="1" />
|
||||
</component>
|
||||
<text id="n320_vks0" name="n320" xy="205,802" size="200,39" group="n324_vks0" font="Microsoft YaHei" fontSize="28" color="#b53e19" bold="true" text="设置洗牌积分:" />
|
||||
<text id="n320_vks0" name="n320" xy="205,802" size="200,39" group="n324_vks0" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#b53e19" bold="true" text="设置洗牌积分:" />
|
||||
<graph id="n321_vks0" name="n321" xy="410,805" size="93,31" group="n324_vks0" type="rect" fillColor="#99000000" />
|
||||
<text id="n322_vks0" name="xipaifen" xy="411,800" size="94,42" group="n324_vks0" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" text="1" bold="true" />
|
||||
<component id="n323_vks0" name="sdsrbtn" src="ufu951" fileName="component/create_room/Btn_Common_Info.xml" xy="515,790" group="n324_vks0" />
|
||||
|
|
@ -288,7 +288,7 @@
|
|||
<gearDisplay controller="xipaictr" pages="1" />
|
||||
</group>
|
||||
<group id="n325_vks0" name="n325" xy="58,724" size="584,129" advanced="true" />
|
||||
<text id="n359_u3z9" name="n359" xy="203,893" size="200,39" group="n363_u3z9" font="Microsoft YaHei" fontSize="28" color="#b53e19" bold="true" text="设置按抽积分:" />
|
||||
<text id="n359_u3z9" name="n359" xy="203,893" size="200,39" group="n363_u3z9" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#b53e19" bold="true" text="设置按抽积分:" />
|
||||
<graph id="n360_u3z9" name="n360" xy="408,896" size="93,31" group="n363_u3z9" type="rect" fillColor="#99000000" />
|
||||
<text id="n361_u3z9" name="anchoufen" xy="409,891" size="94,42" group="n363_u3z9" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" text="0" bold="true" />
|
||||
<component id="n362_u3z9" name="anchoubtn" src="ufu951" fileName="component/create_room/Btn_Common_Info.xml" xy="513,881" group="n363_u3z9" />
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<component size="163,60" extention="Button" designImageAlpha="0">
|
||||
<controller name="type" exported="true" pages="0,,1,,2," selected="0" />
|
||||
<displayList>
|
||||
<text id="n10_qjw9" name="title" xy="0,0" size="163,60" font="Microsoft YaHei" fontSize="28" color="#367256" vAlign="middle" autoSize="shrink" text="" bold="true" />
|
||||
<text id="n10_qjw9" name="title" xy="0,0" size="163,60" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#367256" vAlign="middle" autoSize="shrink" text="" bold="true" />
|
||||
</displayList>
|
||||
<Button />
|
||||
</component>
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -4,6 +4,6 @@
|
|||
<loader id="n0_n1ry" name="n0" xy="0,4" size="77,35" aspect="true" url="ui://ppu1wv76j4mf8g" fill="scale" clearOnPublish="true">
|
||||
<relation target="" sidePair="" />
|
||||
</loader>
|
||||
<text id="n2_ey1o" name="n2" xy="80,-1" size="90,42" font="Microsoft YaHei" fontSize="28" color="#b25116" vAlign="middle" autoSize="shrink" text="100胡息" bold="true" />
|
||||
<text id="n2_ey1o" name="n2" xy="80,-1" size="90,42" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#b25116" vAlign="middle" autoSize="shrink" text="100胡息" bold="true" />
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -12,8 +12,8 @@
|
|||
<loader id="n16_of6w" name="card_2" xy="0,76" pivot="0.5,0.5" size="55,67" group="n19_of6w" aspect="true" rotation="180" fill="scale" />
|
||||
<loader id="n15_of6w" name="card_1" xy="0,31" pivot="0.5,0.5" size="55,67" group="n19_of6w" aspect="true" rotation="180" fill="scale" />
|
||||
<group id="n19_of6w" name="n19" xy="0,31" size="55,202" group="n22_of6w" advanced="true" />
|
||||
<text id="n20_of6w" name="card_type" xy="2,237" pivot="0.5,0.5" size="49,39" group="n22_of6w" rotation="180" font="Microsoft YaHei" fontSize="28" color="#b25116" align="center" vAlign="bottom" leading="0" autoSize="shrink" text=" " bold="true" />
|
||||
<text id="n21_of6w" name="card_huxi" xy="8,-18" pivot="0.5,0.5" size="40,44" group="n22_of6w" rotation="180" font="Microsoft YaHei" fontSize="32" color="#b25116" align="center" vAlign="middle" leading="0" autoSize="shrink" text=" " bold="true" />
|
||||
<text id="n20_of6w" name="card_type" xy="2,237" pivot="0.5,0.5" size="49,39" group="n22_of6w" rotation="180" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#b25116" align="center" vAlign="bottom" leading="0" autoSize="shrink" text=" " bold="true" />
|
||||
<text id="n21_of6w" name="card_huxi" xy="8,-18" pivot="0.5,0.5" size="40,44" group="n22_of6w" rotation="180" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="32" color="#b25116" align="center" vAlign="middle" leading="0" autoSize="shrink" text=" " bold="true" />
|
||||
<group id="n22_of6w" name="n22" xy="0,-18" size="55,294" advanced="true" />
|
||||
<image id="n23_of6w" name="n23" src="j4mf8f" fileName="component/clearing/image/hu_icon.png" xy="5,38" pivot="0.5,0.5" size="18,18" aspect="true" rotation="180">
|
||||
<gearDisplay controller="hu" pages="1,2,3,4" />
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@
|
|||
<text id="n88_rbpg" name="WinerID" xy="51,331" size="151,39" group="n44_n1ry" fontSize="28" color="#b25116" align="center" vAlign="middle" autoSize="none" singleLine="true" text="id" bold="true" />
|
||||
<group id="n44_n1ry" name="n44" xy="51,152" size="153,218" group="n70_dunj" />
|
||||
<image id="n33_n1ry" name="n33" src="j4mf9m" fileName="component/clearing/di.png" xy="93,447" size="1173,289" group="n45_n1ry" visible="false" />
|
||||
<text id="n31_n1ry" name="111" xy="45,66" size="115,53" group="n45_n1ry" font="Microsoft YaHei" fontSize="32" color="#ffffcc" vAlign="middle" autoSize="none" text="底牌:" bold="true" />
|
||||
<text id="n31_n1ry" name="111" xy="45,66" size="115,53" group="n45_n1ry" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="32" color="#ffffcc" vAlign="middle" autoSize="none" text="底牌:" bold="true" />
|
||||
<list id="n32_n1ry" name="dipai_list" xy="171,66" size="1101,64" group="n45_n1ry" layout="row" selectionMode="none" overflow="scroll" scroll="horizontal" colGap="5" defaultItem="ui://v6yvqp7wyfzf1h4" vAlign="middle" />
|
||||
<text id="n39_n1ry" name="huxi" xy="989,319" size="257,41" group="n45_n1ry" fontSize="28" color="#924e00" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="" />
|
||||
<list id="n46_n1ry" name="fullname_list" xy="811,143" size="166,260" group="n45_n1ry" selectionMode="none" lineGap="5" colGap="-10" defaultItem="ui://ppu1wv76j4mf9n" autoClearItems="true">
|
||||
|
|
@ -139,9 +139,9 @@
|
|||
<image id="n87_rbpg" name="n87" src="rbpga3" fileName="component/clearing/images/dianpao.png" xy="1057,464" size="157,97" group="n70_dunj">
|
||||
<gearDisplay controller="hudianpao" pages="2" />
|
||||
</image>
|
||||
<text id="n92_uw33" name="huxi_shu" xy="989,574" size="257,41" group="n70_dunj" visible="false" font="Microsoft YaHei" fontSize="28" color="#ffffff" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="" />
|
||||
<text id="n93_uw33" name="score_shu" xy="954,610" size="256,57" group="n70_dunj" font="Microsoft YaHei" fontSize="30" color="#ffffff" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="" />
|
||||
<text id="n90_dbve" name="fangpaoscore" xy="960,545" size="310,72" group="n70_dunj" font="Microsoft YaHei" fontSize="30" color="#ffffff" vAlign="middle" autoSize="none" text="放炮扣息:-30" bold="true">
|
||||
<text id="n92_uw33" name="huxi_shu" xy="989,574" size="257,41" group="n70_dunj" visible="false" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#ffffff" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="" />
|
||||
<text id="n93_uw33" name="score_shu" xy="954,610" size="256,57" group="n70_dunj" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="30" color="#ffffff" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="" />
|
||||
<text id="n90_dbve" name="fangpaoscore" xy="960,545" size="310,72" group="n70_dunj" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="30" color="#ffffff" vAlign="middle" autoSize="none" text="放炮扣息:-30" bold="true">
|
||||
<gearDisplay controller="hudianpao" pages="2" />
|
||||
</text>
|
||||
<list id="n52_rx2e" name="card_list_3" xy="137,179" size="261,198" group="n55_rx2e" layout="row" colGap="1" defaultItem="ui://ppu1wv76j4mf9e" vAlign="middle">
|
||||
|
|
@ -183,7 +183,7 @@
|
|||
<group id="n55_rx2e" name="n55" xy="113,139" size="1084,238" group="n70_dunj" advanced="true">
|
||||
<gearDisplay controller="over" pages="2" />
|
||||
</group>
|
||||
<text id="n91_n7o4" name="n91" xy="915,291" size="345,91" group="n70_dunj" font="Microsoft YaHei" fontSize="40" color="#000066" align="center" vAlign="middle" autoSize="none" bold="true" text="荒庄 : -10 胡息">
|
||||
<text id="n91_n7o4" name="n91" xy="915,291" size="345,91" group="n70_dunj" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="40" color="#000066" align="center" vAlign="middle" autoSize="none" bold="true" text="荒庄 : -10 胡息">
|
||||
<gearDisplay controller="over" pages="2" />
|
||||
</text>
|
||||
<group id="n70_dunj" name="n70" xy="-5,0" size="1334,1610" advanced="true">
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
<displayList>
|
||||
<image id="n0_fux2" name="n0" src="g8y26o" xy="0,0" size="661,117" pkg="442j0uep" />
|
||||
<image id="n1_fux2" name="n1" src="g8y26p" xy="-2,-3" size="937,120" pkg="442j0uep" />
|
||||
<text id="n7_fux2" name="score2" xy="641,5" size="256,111" font="Microsoft YaHei" fontSize="48" color="#ffffff" align="center" vAlign="middle" ubb="true" autoSize="none" text="-10000" bold="true" />
|
||||
<text id="n7_fux2" name="score2" xy="641,5" size="256,111" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="48" color="#ffffff" align="center" vAlign="middle" ubb="true" autoSize="none" text="-10000" bold="true" />
|
||||
<image id="n18_jqcw" name="n18" src="e54q3w" pkg="27vd145b" xy="-13,-13" scale="0.8,0.8" visible="false">
|
||||
<gearDisplay controller="bank" pages="1" />
|
||||
</image>
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
<displayList>
|
||||
<image id="n22_n1ry" name="n22" src="j4mf9g" fileName="component/clearing/di(1).png" xy="0,0" size="205,484" />
|
||||
<text id="n2_fux2" name="name" xy="0,114" size="210,39" fontSize="24" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="玩家的名字則麽長~~" bold="true" />
|
||||
<text id="n3_fux2" name="score" xy="-3,162" size="213,78" font="Microsoft YaHei" fontSize="50" color="#f16bc0" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+1223" bold="true">
|
||||
<text id="n3_fux2" name="score" xy="-3,162" size="213,78" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="50" color="#f16bc0" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+1223" bold="true">
|
||||
<gearColor controller="color" pages="0,1" values="#f16bc0,#000000|#5df2a3,#000000" />
|
||||
</text>
|
||||
<component id="n18_nrno" name="btn_head" src="kio210" fileName="component/head/Head.xml" pkg="27vd145b" xy="65,20" size="80,80" />
|
||||
|
|
@ -25,12 +25,12 @@
|
|||
</image>
|
||||
<text id="n25_kl1l" name="win_count" xy="22,298" size="163,38" fontSize="22" color="#ffffff" align="center" vAlign="middle" autoSize="none" strokeColor="#000000" singleLine="true" text="胡牌次数:3" bold="true" />
|
||||
<text id="n26_kl1l" name="total_huxi" xy="22,330" size="163,38" fontSize="22" color="#ffffff" align="center" vAlign="middle" autoSize="none" strokeColor="#000000" singleLine="true" text="胡牌次数:150胡息" bold="true" />
|
||||
<text id="n32_fc32" name="score1" xy="76,230" size="129,60" group="n36_fc32" font="Microsoft YaHei" fontSize="29" color="#f16bc0" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+12234" bold="true">
|
||||
<text id="n32_fc32" name="score1" xy="76,230" size="129,60" group="n36_fc32" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="29" color="#f16bc0" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="+12234" bold="true">
|
||||
<gearColor controller="color" pages="0,1" values="#f16bc0,#000000|#5df2a3,#000000" />
|
||||
</text>
|
||||
<image id="n33_fc32" name="n33" src="jkmabp" fileName="component/result/bd.png" pkg="27vd145b" xy="10,242" size="72,30" group="n36_fc32" />
|
||||
<image id="n34_fc32" name="n34" src="e8zlbo" fileName="component/result/bsxz.png" pkg="27vd145b" xy="54,250" size="25,27" group="n36_fc32" />
|
||||
<text id="n35_fc32" name="sss" xy="0,238" pivot="1,0.5" size="58,52" group="n36_fc32" font="Microsoft YaHei" fontSize="25" align="right" vAlign="middle" autoSize="none" singleLine="true" text="500 " bold="true" />
|
||||
<text id="n35_fc32" name="sss" xy="0,238" pivot="1,0.5" size="58,52" group="n36_fc32" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="25" align="right" vAlign="middle" autoSize="none" singleLine="true" text="500 " bold="true" />
|
||||
<group id="n36_fc32" name="n36" xy="0,230" size="205,60" advanced="true">
|
||||
<gearDisplay controller="bei" pages="1" />
|
||||
</group>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
<image id="n7" name="n7" src="99we43" fileName="component/create_room/image/single_btn_s.png" xy="10,5">
|
||||
<gearDisplay controller="button" pages="1,3" />
|
||||
</image>
|
||||
<text id="n8" name="title" xy="49,5" size="265,39" font="Microsoft YaHei" fontSize="28" color="#367256" vAlign="middle" autoSize="none" text="2" bold="true" />
|
||||
<text id="n8" name="title" xy="49,5" size="265,39" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#367256" vAlign="middle" autoSize="none" text="2" bold="true" />
|
||||
</displayList>
|
||||
<Button mode="Radio" />
|
||||
</component>
|
||||
|
|
@ -5,7 +5,7 @@
|
|||
<image id="n7_rpaz" name="n7" src="99we45" fileName="component/create_room/image/multiple_btn_n.png" xy="13,8">
|
||||
<gearDisplay controller="button" pages="0" />
|
||||
</image>
|
||||
<text id="n9_rpaz" name="title" xy="59,6" size="212,39" font="Microsoft YaHei" fontSize="20" color="#367256" vAlign="middle" autoSize="shrink" text="123" bold="true" />
|
||||
<text id="n9_rpaz" name="title" xy="59,6" size="212,39" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#367256" vAlign="middle" autoSize="shrink" text="123" bold="true" />
|
||||
<image id="n10_vyn3" name="n10" src="99we45" fileName="component/create_room/image/multiple_btn_n.png" xy="13,8">
|
||||
<gearDisplay controller="button" pages="1" />
|
||||
</image>
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@
|
|||
<component id="n309_ozsy" name="btn_round4" src="99we4t" fileName="component/create_room/Btn_cr_checkbox.xml" xy="453,66" group="n5_mw5l">
|
||||
<Button title="4局" controller="round" page="1" />
|
||||
</component>
|
||||
<text id="n4_mw5l" name="n4" xy="40,73" size="92,29" group="n5_mw5l" font="Microsoft YaHei" fontSize="20" color="#96491f" bold="true" text="局 数" />
|
||||
<text id="n4_mw5l" name="n4" xy="40,73" size="92,29" group="n5_mw5l" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" bold="true" text="局 数" />
|
||||
<text id="n275_se1s" name="tex_price1" xy="345,70" size="30,29" group="n276_se1s" fontSize="20" color="#ffffff" autoSize="none" text="10" bold="true" />
|
||||
<group id="n276_se1s" name="n276" xy="345,70" size="30,29" group="n5_mw5l" advanced="true" />
|
||||
<text id="n278_se1s" name="tex_price2" xy="606,72" size="30,29" group="n279_se1s" fontSize="20" color="#ffffff" autoSize="none" text="20" bold="true" />
|
||||
|
|
@ -69,23 +69,23 @@
|
|||
<group id="n5_mw5l" name="n5" xy="40,66" size="870,47" />
|
||||
<component id="n23_i1r6" name="n23" src="99we4r" fileName="component/create_room/di01.xml" xy="0,122" size="1050,263" group="n133_r282" />
|
||||
<component id="n116_r282" name="n116" src="99we4r" fileName="component/create_room/di01.xml" xy="0,400" group="n133_r282" />
|
||||
<text id="n45_g92u" name="n45" xy="40,233" size="92,29" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" bold="true" text="名 堂" />
|
||||
<text id="n45_g92u" name="n45" xy="40,233" size="92,29" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" bold="true" text="名 堂" />
|
||||
<image id="n77_r282" name="n77" src="99we44" fileName="component/create_room/image/pic10.png" xy="209,139" size="40,33" group="n79_r282" aspect="true" />
|
||||
<text id="n78_r282" name="n78" xy="256,139" size="87,39" group="n79_r282" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="天胡 " />
|
||||
<text id="n78_r282" name="n78" xy="256,139" size="87,39" group="n79_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="天胡 " />
|
||||
<group id="n79_r282" name="n79" xy="209,139" size="134,39" group="n46_g92u" />
|
||||
<text id="n81_r282" name="n81" xy="365,139" size="90,39" group="n82_r282" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="地胡 6" />
|
||||
<text id="n81_r282" name="n81" xy="365,139" size="90,39" group="n82_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="地胡 6" />
|
||||
<group id="n82_r282" name="n82" xy="365,139" size="90,39" group="n46_g92u" />
|
||||
<text id="n84_r282" name="n84" xy="490,139" size="91,37" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="海胡 6" />
|
||||
<text id="n87_r282" name="n87" xy="620,139" size="113,37" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="红胡 3+n" />
|
||||
<text id="n90_r282" name="n90" xy="750,139" size="92,37" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="乌胡 8" />
|
||||
<text id="n84_r282" name="n84" xy="490,139" size="91,37" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="海胡 6" />
|
||||
<text id="n87_r282" name="n87" xy="620,139" size="113,37" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="红胡 3+n" />
|
||||
<text id="n90_r282" name="n90" xy="750,139" size="92,37" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="乌胡 8" />
|
||||
<image id="n92_r282" name="n92" src="99we44" fileName="component/create_room/image/pic10.png" xy="209,184" size="40,33" group="n94_r282" aspect="true" />
|
||||
<text id="n93_r282" name="n93" xy="252,183" size="88,37" group="n94_r282" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="点胡 6" />
|
||||
<text id="n93_r282" name="n93" xy="252,183" size="88,37" group="n94_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="点胡 6" />
|
||||
<group id="n94_r282" name="n94" xy="209,183" size="131,37" group="n46_g92u" />
|
||||
<text id="n96_r282" name="n96" xy="365,183" size="106,37" group="n97_r282" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="大胡 8+n" />
|
||||
<text id="n96_r282" name="n96" xy="365,183" size="106,37" group="n97_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="大胡 8+n" />
|
||||
<group id="n97_r282" name="n97" xy="365,183" size="106,37" group="n46_g92u" />
|
||||
<text id="n99_r282" name="n99" xy="487,183" size="136,37" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="小胡 10+n" />
|
||||
<text id="n103_r282" name="n103" xy="620,183" size="125,37" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="对子胡 8" />
|
||||
<text id="n106_r282" name="n106" xy="750,183" size="169,38" group="n46_g92u" font="Microsoft YaHei" fontSize="20" color="#96491f" autoSize="none" bold="true" text="自摸加一囤" />
|
||||
<text id="n99_r282" name="n99" xy="487,183" size="136,37" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="小胡 10+n" />
|
||||
<text id="n103_r282" name="n103" xy="620,183" size="125,37" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="对子胡 8" />
|
||||
<text id="n106_r282" name="n106" xy="750,183" size="169,38" group="n46_g92u" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" autoSize="none" bold="true" text="自摸加一囤" />
|
||||
<component id="n76_r282" name="n76" src="99we4u" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="206,283" group="n46_g92u">
|
||||
<Button title="行行息 8" controller="hanghangxi" page="1" />
|
||||
</component>
|
||||
|
|
@ -115,7 +115,7 @@
|
|||
</component>
|
||||
<group id="n46_g92u" name="n46" xy="40,139" size="879,244" group="n133_r282" />
|
||||
<component id="n122_r282" name="n122" src="99we4r" fileName="component/create_room/di01.xml" xy="0,477" group="n133_r282" />
|
||||
<text id="n117_r282" name="n117" xy="40,411" size="86,29" group="n123_r282" font="Microsoft YaHei" fontSize="20" color="#96491f" bold="true" text="充 囤" />
|
||||
<text id="n117_r282" name="n117" xy="40,411" size="86,29" group="n123_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" bold="true" text="充 囤" />
|
||||
<graph id="n271_se1s" name="n271" xy="251,421" size="93,31" group="n123_r282" type="rect" fillColor="#99000000" />
|
||||
<text id="n120_r282" name="shu" xy="265,417" size="65,38" group="n123_r282" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="0" bold="true">
|
||||
<gearText controller="tun" pages="0,2" values="0|2" default="1" />
|
||||
|
|
@ -123,7 +123,7 @@
|
|||
<component id="n121_r282" name="btn_jian" src="99we4v" fileName="component/create_room/Button3.xml" xy="197,412" group="n123_r282" />
|
||||
<component id="n118_r282" name="btn_jia" src="99we4w" fileName="component/create_room/Button2.xml" xy="350,412" group="n123_r282" />
|
||||
<group id="n123_r282" name="n123" xy="40,411" size="388,44" group="n133_r282" advanced="true" />
|
||||
<text id="n124_r282" name="n124" xy="40,489" size="84,29" group="n128_r282" font="Microsoft YaHei" fontSize="20" color="#96491f" bold="true" text="封顶设置" />
|
||||
<text id="n124_r282" name="n124" xy="40,489" size="84,29" group="n128_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" bold="true" text="封顶设置" />
|
||||
<component id="n129_r282" name="btn_bufen" src="99we4t" fileName="component/create_room/Btn_cr_checkbox.xml" xy="203,483" size="227,47" group="n128_r282">
|
||||
<Button checked="true" title="不封顶" controller="fengding" page="0" />
|
||||
</component>
|
||||
|
|
@ -145,7 +145,7 @@
|
|||
</group>
|
||||
<component id="n134_r282" name="n134" src="99we4r" fileName="component/create_room/di01.xml" xy="0,410" group="n172_r282" />
|
||||
<component id="n135_r282" name="n135" src="99we4r" fileName="component/create_room/di01.xml" xy="0,340" group="n172_r282" />
|
||||
<text id="n136_r282" name="n1361" xy="40,353" size="116,39" group="n140_r282" font="Microsoft YaHei" fontSize="28" color="#83523a" bold="true" text="充 囤" />
|
||||
<text id="n136_r282" name="n1361" xy="40,353" size="116,39" group="n140_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#83523a" bold="true" text="充 囤" />
|
||||
<graph id="n272_se1s" name="n272" xy="272,354" size="93,31" group="n140_r282" type="rect" fillColor="#99000000" />
|
||||
<text id="n138_r282" name="shu1" xy="286,351" size="65,38" group="n140_r282" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="0" bold="true">
|
||||
<gearText controller="tun" pages="0,2" values="0|2" default="1" />
|
||||
|
|
@ -153,7 +153,7 @@
|
|||
<component id="n137_r282" name="btn_jia1" src="99we4w" fileName="component/create_room/Button2.xml" xy="355,352" group="n140_r282" />
|
||||
<component id="n139_r282" name="btn_jian1" src="99we4v" fileName="component/create_room/Button3.xml" xy="206,352" group="n140_r282" />
|
||||
<group id="n140_r282" name="n140" xy="40,351" size="393,38" group="n172_r282" />
|
||||
<text id="n141_r282" name="n141" xy="40,422" size="116,39" group="n145_r282" font="Microsoft YaHei" fontSize="28" color="#83523a" bold="true" text="封顶设置" />
|
||||
<text id="n141_r282" name="n141" xy="40,422" size="116,39" group="n145_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#83523a" bold="true" text="封顶设置" />
|
||||
<component id="n142_r282" name="btn_bufen1" src="99we4t" fileName="component/create_room/Btn_cr_checkbox.xml" xy="209,417" size="227,47" group="n145_r282">
|
||||
<Button checked="true" title="不封顶" controller="fengding" page="0" />
|
||||
</component>
|
||||
|
|
@ -165,7 +165,7 @@
|
|||
</component>
|
||||
<group id="n145_r282" name="n145" xy="40,417" size="858,47" group="n172_r282" />
|
||||
<component id="n146_r282" name="n146" src="99we4r" fileName="component/create_room/di01.xml" xy="0,200" size="1050,117" group="n172_r282" />
|
||||
<text id="n147_r282" name="n147" xy="40,239" size="128,39" group="n151_r282" font="Microsoft YaHei" fontSize="28" color="#83523a" autoSize="none" bold="true" text="名 堂" />
|
||||
<text id="n147_r282" name="n147" xy="40,239" size="128,39" group="n151_r282" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#83523a" autoSize="none" bold="true" text="名 堂" />
|
||||
<group id="n151_r282" name="n151" xy="40,239" size="128,39" group="n172_r282" />
|
||||
<image id="n155_r282" name="n155" src="99we44" fileName="component/create_room/image/pic10.png" xy="206,214" size="40,33" group="n157_r282" aspect="true" />
|
||||
<text id="n156_r282" name="n156" xy="254,214" size="100,38" group="n157_r282" fontSize="28" color="#127352" autoSize="none" text="红胡 2" bold="true" />
|
||||
|
|
@ -187,7 +187,7 @@
|
|||
<component id="n176_ey1o" name="n176" src="99we4r" fileName="component/create_room/di01.xml" xy="-1,254" size="1050,181" group="n231_ey1o" />
|
||||
<component id="n255_os7u" name="n255" src="99we4r" fileName="component/create_room/di01.xml" xy="-1,455" size="163,60" group="n231_ey1o" />
|
||||
<component id="n261_9rmk" name="n261" src="99we4r" fileName="component/create_room/di01.xml" xy="-1,533" size="163,60" group="n231_ey1o" />
|
||||
<text id="n250_os7u" name="n250" xy="23,797" size="116,39" group="n254_os7u" visible="false" font="Microsoft YaHei" fontSize="28" color="#83523a" bold="true" text="封顶设置" />
|
||||
<text id="n250_os7u" name="n250" xy="23,797" size="116,39" group="n254_os7u" visible="false" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#83523a" bold="true" text="封顶设置" />
|
||||
<component id="n251_os7u" name="btn_bufen2" src="99we4t" fileName="component/create_room/Btn_cr_checkbox.xml" xy="188,792" size="227,47" group="n254_os7u" visible="false">
|
||||
<Button checked="true" title="不封顶" controller="fengding" page="0" />
|
||||
</component>
|
||||
|
|
@ -198,7 +198,7 @@
|
|||
<Button title="80封顶" controller="fengding" page="2" />
|
||||
</component>
|
||||
<group id="n254_os7u" name="n254" xy="23,792" size="854,47" group="n231_ey1o" />
|
||||
<text id="n181_ey1o" name="n181" xy="34,639" size="98,29" group="n231_ey1o" font="Microsoft YaHei" fontSize="20" color="#83523a" autoSize="none" bold="true" text="名 堂" />
|
||||
<text id="n181_ey1o" name="n181" xy="34,639" size="98,29" group="n231_ey1o" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#83523a" autoSize="none" bold="true" text="名 堂" />
|
||||
<component id="n257_9rmk" name="n257" src="99we4u" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="203,606" size="179,47" group="n262_9rmk">
|
||||
<Button checked="true" title="一点红" controller="yidianhu" page="0" />
|
||||
</component>
|
||||
|
|
@ -215,7 +215,7 @@
|
|||
<Button checked="true" title="红黑胡" controller="hongheihu" page="0" />
|
||||
</component>
|
||||
<group id="n262_9rmk" name="n262" xy="203,604" size="669,117" group="n231_ey1o" />
|
||||
<text id="n310_h9ke" name="n310" xy="34,457" size="92,29" group="n314_h9ke" font="Microsoft YaHei" fontSize="20" color="#83523a" bold="true" text="抽 牌" />
|
||||
<text id="n310_h9ke" name="n310" xy="34,457" size="92,29" group="n314_h9ke" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#83523a" bold="true" text="抽 牌" />
|
||||
<component id="n311_h9ke" name="btn_bufen2" src="99we4t" fileName="component/create_room/Btn_cr_checkbox.xml" xy="204,451" size="227,47" group="n314_h9ke">
|
||||
<Button checked="true" title="不抽牌" titleFontSize="26" controller="qupai" page="0" />
|
||||
</component>
|
||||
|
|
@ -223,7 +223,7 @@
|
|||
<Button title="抽牌20张" titleFontSize="26" controller="qupai" page="1" />
|
||||
</component>
|
||||
<group id="n314_h9ke" name="n314" xy="34,451" size="642,47" group="n231_ey1o" />
|
||||
<text id="n334_usec" name="n334" xy="36,214" size="92,29" group="n337_usec" font="Microsoft YaHei" fontSize="20" color="#83523a" bold="true" text="起 胡" />
|
||||
<text id="n334_usec" name="n334" xy="36,214" size="92,29" group="n337_usec" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#83523a" bold="true" text="起 胡" />
|
||||
<component id="n335_usec" name="btn_bufen2" src="99we4t" fileName="component/create_room/Btn_cr_checkbox.xml" xy="206,205" size="227,47" group="n337_usec">
|
||||
<Button checked="true" title="15息起胡" titleFontSize="26" controller="qixihu" page="0" />
|
||||
</component>
|
||||
|
|
@ -231,7 +231,7 @@
|
|||
<Button title="10息起胡" titleFontSize="26" controller="qixihu" page="1" />
|
||||
</component>
|
||||
<group id="n337_usec" name="n337" xy="36,205" size="642,47" group="n231_ey1o" />
|
||||
<text id="n342_usec" name="n342" xy="35,298" size="92,29" group="n345_usec" font="Microsoft YaHei" fontSize="20" color="#83523a" bold="true" text="算 囤" />
|
||||
<text id="n342_usec" name="n342" xy="35,298" size="92,29" group="n345_usec" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#83523a" bold="true" text="算 囤" />
|
||||
<component id="n343_usec" name="btn_bufen2" src="99we4t" fileName="component/create_room/Btn_cr_checkbox.xml" xy="205,289" size="227,47" group="n345_usec">
|
||||
<Button checked="true" title="1息1囤(逢3加3)" titleFontSize="26" controller="tun" page="0" />
|
||||
</component>
|
||||
|
|
@ -242,7 +242,7 @@
|
|||
<Button title="3息1囤" titleFontSize="26" controller="tun" page="2" />
|
||||
</component>
|
||||
<group id="n345_usec" name="n345" xy="35,289" size="861,47" group="n231_ey1o" />
|
||||
<text id="n347_usec" name="n347" xy="34,375" size="92,29" group="n351_usec" font="Microsoft YaHei" fontSize="20" color="#83523a" bold="true" text="偎 牌" />
|
||||
<text id="n347_usec" name="n347" xy="34,375" size="92,29" group="n351_usec" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#83523a" bold="true" text="偎 牌" />
|
||||
<component id="n348_usec" name="btn_bufen2" src="99we4t" fileName="component/create_room/Btn_cr_checkbox.xml" xy="204,366" size="227,47" group="n351_usec">
|
||||
<Button checked="true" title="明偎" titleFontSize="26" controller="weipai" page="0" />
|
||||
</component>
|
||||
|
|
@ -250,7 +250,7 @@
|
|||
<Button title="暗偎" titleFontSize="26" controller="weipai" page="1" />
|
||||
</component>
|
||||
<group id="n351_usec" name="n351" xy="34,366" size="642,47" group="n231_ey1o" />
|
||||
<text id="n353_usec" name="n353" xy="34,537" size="92,29" group="n356_usec" font="Microsoft YaHei" fontSize="20" color="#83523a" bold="true" text="玩 法" />
|
||||
<text id="n353_usec" name="n353" xy="34,537" size="92,29" group="n356_usec" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#83523a" bold="true" text="玩 法" />
|
||||
<component id="n357_usec" name="n357" src="99we4u" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="205,525" size="179,47" group="n356_usec">
|
||||
<Button checked="true" title="30胡翻倍" controller="xidouble30" page="0" />
|
||||
</component>
|
||||
|
|
@ -258,12 +258,12 @@
|
|||
<Button checked="true" title="自摸加3胡" controller="zimo" page="0" />
|
||||
</component>
|
||||
<group id="n356_usec" name="n356" xy="34,525" size="594,47" group="n231_ey1o" />
|
||||
<text id="n364_u3z9" name="n364" xy="35,895" size="98,29" group="n231_ey1o" font="Microsoft YaHei" fontSize="20" color="#83523a" autoSize="none" bold="true" text="暗 抽" />
|
||||
<text id="n364_u3z9" name="n364" xy="35,895" size="98,29" group="n231_ey1o" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#83523a" autoSize="none" bold="true" text="暗 抽" />
|
||||
<group id="n231_ey1o" name="n231" xy="-1,205" size="1050,719" advanced="true">
|
||||
<gearDisplay controller="btn_Controller" pages="0" />
|
||||
</group>
|
||||
<component id="n289_fnpw" name="n289" src="99we4r" fileName="component/create_room/di01.xml" xy="0,125" group="n294_fnpw" />
|
||||
<text id="n290_fnpw" name="n290" xy="40,138" size="92,29" group="n293_fnpw" font="Microsoft YaHei" fontSize="20" color="#96491f" bold="true" text="人 数" />
|
||||
<text id="n290_fnpw" name="n290" xy="40,138" size="92,29" group="n293_fnpw" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="20" color="#96491f" bold="true" text="人 数" />
|
||||
<component id="n291_fnpw" name="n291" src="99we4t" fileName="component/create_room/Btn_cr_checkbox.xml" xy="206,133" group="n293_fnpw">
|
||||
<Button checked="true" title="两人" controller="renshu" page="0" />
|
||||
</component>
|
||||
|
|
@ -280,7 +280,7 @@
|
|||
<component id="n319_vks0" name="xipai" src="99we4u" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="201,734" size="157,47" group="n325_vks0">
|
||||
<Button title="洗牌" controller="xipaictr" page="1" />
|
||||
</component>
|
||||
<text id="n320_vks0" name="n320" xy="205,802" size="200,39" group="n324_vks0" font="Microsoft YaHei" fontSize="28" color="#b53e19" bold="true" text="设置洗牌积分:" />
|
||||
<text id="n320_vks0" name="n320" xy="205,802" size="200,39" group="n324_vks0" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#b53e19" bold="true" text="设置洗牌积分:" />
|
||||
<graph id="n321_vks0" name="n321" xy="410,805" size="93,31" group="n324_vks0" type="rect" fillColor="#99000000" />
|
||||
<text id="n322_vks0" name="xipaifen" xy="411,800" size="94,42" group="n324_vks0" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" text="1" bold="true" />
|
||||
<component id="n323_vks0" name="sdsrbtn" src="99we4x" fileName="component/create_room/Btn_Common_Info.xml" xy="515,790" group="n324_vks0" />
|
||||
|
|
@ -288,7 +288,7 @@
|
|||
<gearDisplay controller="xipaictr" pages="1" />
|
||||
</group>
|
||||
<group id="n325_vks0" name="n325" xy="58,724" size="584,129" advanced="true" />
|
||||
<text id="n359_u3z9" name="n359" xy="203,893" size="200,39" group="n363_u3z9" font="Microsoft YaHei" fontSize="28" color="#b53e19" bold="true" text="设置按抽积分:" />
|
||||
<text id="n359_u3z9" name="n359" xy="203,893" size="200,39" group="n363_u3z9" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#b53e19" bold="true" text="设置按抽积分:" />
|
||||
<graph id="n360_u3z9" name="n360" xy="408,896" size="93,31" group="n363_u3z9" type="rect" fillColor="#99000000" />
|
||||
<text id="n361_u3z9" name="anchoufen" xy="409,891" size="94,42" group="n363_u3z9" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" text="0" bold="true" />
|
||||
<component id="n362_u3z9" name="anchoubtn" src="99we4x" fileName="component/create_room/Btn_Common_Info.xml" xy="513,881" group="n363_u3z9" />
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<component size="163,60" extention="Button" designImageAlpha="0">
|
||||
<controller name="type" exported="true" pages="0,,1,,2," selected="0" />
|
||||
<displayList>
|
||||
<text id="n10_qjw9" name="title" xy="0,0" size="163,60" font="Microsoft YaHei" fontSize="28" color="#367256" vAlign="middle" autoSize="shrink" text="" bold="true" />
|
||||
<text id="n10_qjw9" name="title" xy="0,0" size="163,60" font="ALIBABAPUHUITI-3-55-REGULAR" fontSize="28" color="#367256" vAlign="middle" autoSize="shrink" text="" bold="true" />
|
||||
</displayList>
|
||||
<Button />
|
||||
</component>
|
||||
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue