Update player item method created in the Penguin class

- To be used in e.g. the plugin system
This commit is contained in:
ro 2019-06-09 20:25:33 +02:00 committed by GitHub
parent 651896c20e
commit bb94b1729a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -164,7 +164,53 @@ class Penguin(Spheniscidae):
async def _client_connected(self):
await super()._client_connected()
async def update_color(self, item_id):
self.logger.info('{} updated their color to \'{}\' '.format(self.data.username, item_id))
await self.data.update(color=item_id).apply()
await self.room.send_xt('upc', self.data.id, item_id)
async def update_head(self, item_id):
self.logger.info('{} updated their head to \'{}\' '.format(self.data.username, item_id))
await self.data.update(head=item_id).apply()
await self.room.send_xt('uph', self.data.id, item_id)
async def update_face(self, item_id):
self.logger.info('{} updated their face to \'{}\' '.format(self.data.username, item_id))
await self.data.update(face=item_id).apply()
await self.room.send_xt('upf', self.data.id, item_id)
async def update_neck(self, item_id):
self.logger.info('{} updated their neck to \'{}\' '.format(self.data.username, item_id))
await self.data.update(neck=item_id).apply()
await self.room.send_xt('upn', self.data.id, item_id)
async def update_body(self, item_id):
self.logger.info('{} updated their body to \'{}\' '.format(self.data.username, item_id))
await self.data.update(body=item_id).apply()
await self.room.send_xt('upb', self.data.id, item_id)
async def update_hand(self, item_id):
self.logger.info('{} updated their hand to \'{}\' '.format(self.data.username, item_id))
await self.data.update(hand=item_id).apply()
await self.room.send_xt('upa', self.data.id, item_id)
async def update_feet(self, item_id):
self.logger.info('{} updated their feet to \'{}\' '.format(self.data.username, item_id))
await self.data.update(feet=item_id).apply()
await self.room.send_xt('upe', self.data.id, item_id)
async def update_flag(self, item_id):
self.logger.info('{} updated their pin to \'{}\' '.format(self.data.username, item_id))
await self.data.update(flag=item_id).apply()
await self.room.send_xt('upl', self.data.id, item_id)
async def update_photo(self, item_id):
self.logger.info('{} updated their background to \'{}\' '.format(self.data.username, item_id))
await self.data.update(photo=item_id).apply()
await self.room.send_xt('upp', self.data.id, item_id)
def __repr__(self):
if self.data is not None:
return '<Penguin ID=\'{}\' Username=\'{}\'>'.format(self.data.id, self.data.username)